本文整理汇总了PHP中app\models\Authors类的典型用法代码示例。如果您正苦于以下问题:PHP Authors类的具体用法?PHP Authors怎么用?PHP Authors使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Authors类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getAuthorsForDropDownList
/**
* @return array(['id' => 'fullname])
*/
public static function getAuthorsForDropDownList()
{
$authorsModels = Authors::find()->all();
$authors = ArrayHelper::toArray($authorsModels, ['app\\models\\Authors' => ['id', 'fullname' => function ($model) {
return "{$model->firstname} {$model->lastname}";
}]]);
return ArrayHelper::map($authors, 'id', 'fullname');
}
示例2: getAuthorsName
public static function getAuthorsName($id = null)
{
$results = ['' => 'Не указан'];
foreach (Authors::find()->all() as $data) {
$results[$data->id] = $data->lastname . ' ' . $data->firstname;
}
return !empty($id) ? $results[$id] : $results;
}
示例3: getAuthors
public static function getAuthors()
{
$result = ['' => ''];
$x = Authors::find()->all();
foreach ($x as $author) {
$result[$author->id] = "{$author->firstname} {$author->lastname}";
}
return $result;
}
示例4: map
public static function map()
{
$authors = Authors::find()->all();
$map = array();
array_walk($authors, function ($val) use(&$map) {
$map[$val->id] = $val->firstname . ' ' . $val->lastname;
});
return $map;
}
示例5: getList
public static function getList()
{
$list = [];
$authors = Authors::find()->all();
foreach ($authors as $author) {
$list[$author->id] = $author->firstname . ' ' . $author->lastname;
}
return $list;
}
示例6: actionUpdate
/**
* Updates an existing Books model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param integer $id
* @return mixed
*/
public function actionUpdate($id)
{
$model = $this->findModel($id);
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect(['view', 'id' => $model->id]);
} else {
return $this->render('update', ['model' => $model, 'authors' => $this->getAuthorsArray(Authors::find()->all())]);
}
}
示例7: getAuthors
public function getAuthors()
{
$authors = Authors::find()->orderBy('firstname')->all();
$lastname = ArrayHelper::map($authors, 'id', 'lastname');
$firstname = ArrayHelper::map($authors, 'id', 'firstname');
foreach ($lastname as $key => $value) {
$fullName[$key] = $firstname[$key] . ' ' . $lastname[$key];
}
return $fullName;
}
示例8: getAuthorList
public static function getAuthorList()
{
$list = array();
$authors = Authors::find()->all();
//Все авторы
foreach ($authors as $value) {
$list[$value->id] = $value->firstname . " " . $value->lastname;
}
return $list;
}
示例9: search
/**
* Creates data provider instance with search query applied
*
* @param array $params
*
* @return ActiveDataProvider
*/
public function search($params)
{
$query = Authors::find();
$dataProvider = new ActiveDataProvider(['query' => $query]);
if (!($this->load($params) && $this->validate())) {
return $dataProvider;
}
$query->andFilterWhere(['id' => $this->id]);
$query->andFilterWhere(['like', 'firstname', $this->firstname])->andFilterWhere(['like', 'lastname', $this->lastname]);
return $dataProvider;
}
示例10: getNameAuthor
public static function getNameAuthor($id = NULL)
{
if ($id == NULL) {
return NULL;
}
$author = Authors::find()->where(['id' => $id])->asArray()->one();
if (!empty($author)) {
return $author['firstname'] . ' ' . $author['lastname'];
} else {
return NULL;
}
}
示例11: actionUpdate
/**
* Updates an existing Books model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param integer $id
* @return mixed
*/
public function actionUpdate($id)
{
$model = $this->findModel($id);
$model_b_a_rel = BookAuthorRel::findOne(['b_id' => $id]);
$authorsArr = Authors::authorArr();
if ($model->load(Yii::$app->request->post()) && $model_b_a_rel->load(Yii::$app->request->post())) {
$model->save();
$model_b_a_rel->saveMultiple(1);
return $this->redirect(['view', 'id' => $model->id]);
} else {
return $this->render('update', ['model' => $model, 'model_b_a_rel' => $model_b_a_rel, 'authorsArr' => $authorsArr]);
}
}
示例12: search
/**
* Creates data provider instance with search query applied
*
* @param array $params
*
* @return ActiveDataProvider
*/
public function search($params)
{
$query = Authors::find();
$dataProvider = new ActiveDataProvider(['query' => $query]);
$this->load($params);
if (!$this->validate()) {
// uncomment the following line if you do not want to return any records when validation fails
// $query->where('0=1');
return $dataProvider;
}
$query->andFilterWhere(['id' => $this->id, 'date_create' => $this->date_create, 'date_update' => $this->date_update]);
$query->andFilterWhere(['like', 'name', $this->name]);
return $dataProvider;
}
示例13: search
/**
* Creates data provider instance with search query applied
*
* @param array $params
*
* @return ActiveDataProvider
*/
public function search($params)
{
$query = Authors::find();
$dataProvider = new ActiveDataProvider(['query' => $query]);
$dataProvider->setSort(['attributes' => ['id', 'fullName' => ['asc' => ['first_name' => SORT_ASC, 'last_name' => SORT_ASC], 'desc' => ['first_name' => SORT_DESC, 'last_name' => SORT_DESC], 'label' => 'Full Name', 'default' => SORT_ASC]]]);
$this->load($params);
if (!$this->validate()) {
// uncomment the following line if you do not want to return any records when validation fails
// $query->where('0=1');
return $dataProvider;
}
$query->andFilterWhere(['id' => $this->id]);
$query->andFilterWhere(['like', 'firstname', $this->firstname])->andFilterWhere(['like', 'lastname', $this->lastname])->andWhere('first_name LIKE "%' . $this->fullName . '%" ' . 'OR last_name LIKE "%' . $this->fullName . '%"');
return $dataProvider;
}
示例14: search
public function search($params)
{
$query = Authors::find();
$dataProvider = new ActiveDataProvider(['query' => $query]);
$dataProvider->setSort(['attributes' => ['id', 'fullName' => ['asc' => ['firstname' => SORT_ASC, 'lastname' => SORT_ASC], 'desc' => ['firstname' => SORT_DESC, 'lastname' => SORT_DESC], 'default' => SORT_ASC], 'firstname', 'lastname']]);
$this->load($params);
if (!$this->validate()) {
return $dataProvider;
}
$query->andFilterWhere(['id' => $this->id]);
$query->andFilterWhere(['like', 'firstname', $this->firstname]);
$query->andFilterWhere(['like', 'lastname', $this->lastname]);
$query->andWhere('firstname LIKE "%' . $this->fullName . '%" ' . 'OR lastname LIKE "%' . $this->fullName . '%"');
return $dataProvider;
}
示例15: actionUpdate
/**
* Updates an existing Books model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param integer $id
* @return mixed
*/
public function actionUpdate($id)
{
$authors = Authors::getAuthorsForDropDownList();
$model = $this->findModel($id);
//Request from form
if (Yii::$app->request->isPost) {
$model->load(Yii::$app->request->post());
$model->cover = UploadedFile::getInstance($model, 'cover');
if ($model->save()) {
$absoluteUrl = Yii::$app->session->has('absoluteUrl') ? Yii::$app->session->get('absoluteUrl') : Yii::$app->urlManager->createUrl("books");
return $this->redirect($absoluteUrl);
}
}
//Render update form
return $this->render('update', ['model' => $model, 'authors' => $authors]);
}