Exemplo n.º 1
0
 public function actionDelete($id)
 {
     if (($model = Menu::findOne($id)) !== null) {
         $model->delete();
     } else {
         throw new NotFoundHttpException(Yii::t('maddoger/website', 'The requested menu does not exist.'));
     }
 }