コード例 #1
0
ファイル: PostController.php プロジェクト: bysobi/blog
 /**
  * Updates an existing Post 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, 'category' => Category::find()->all()]);
     }
 }
コード例 #2
0
 /**
  * Updates an existing Post model.
  * If update is successful, the browser will be redirected to the 'view' page.
  * @param integer $id
  * @return mixed
  */
 public function actionUpdate($id)
 {
     // $post = $this->findModel($id);
     $model = $this->findModel($id);
     if (Yii::$app->user->can('updatePost', ['post' => $model])) {
         if ($model->load(Yii::$app->request->post()) && $model->save()) {
             return $this->redirect(['view', 'id' => $model->id]);
         } else {
             return $this->render('update', ['model' => $model, 'category' => Category::find()->all()]);
         }
     } else {
         echo 'ddd';
     }
 }
コード例 #3
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Category::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]);
     $query->andFilterWhere(['like', 'name', $this->name])->andFilterWhere(['like', 'description', $this->description]);
     return $dataProvider;
 }
コード例 #4
0
ファイル: Category.php プロジェクト: Dominus77/blog
 /**
  * Возвращает список категорий
  * @return ActiveDataProvider
  */
 public function getCategories()
 {
     return new ActiveDataProvider(['query' => Category::find()]);
 }
コード例 #5
0
ファイル: Post.php プロジェクト: Dominus77/blog
 /**
  * Category List
  * @return array
  */
 public static function getCategoryList()
 {
     $category = Category::find()->all();
     return ArrayHelper::map($category, 'id', 'title');
 }