コード例 #1
0
 public function actionDelete($id)
 {
     $model = ArticleComment::findOne($id);
     $model->delete();
     return $this->redirect(['index']);
 }
コード例 #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getArticleComments()
 {
     return $this->hasMany(ArticleComment::className(), ['article_item_id' => 'item_id']);
 }