本文整理汇总了PHP中app\models\Categories::attachBehavior方法的典型用法代码示例。如果您正苦于以下问题:PHP Categories::attachBehavior方法的具体用法?PHP Categories::attachBehavior怎么用?PHP Categories::attachBehavior使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\models\Categories
的用法示例。
在下文中一共展示了Categories::attachBehavior方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionCreate
/** Создание нового раздела
*/
public function actionCreate($cat_id = 0)
{
$model = new Categories();
$model->attachBehavior('createStoreDir', ['class' => StoreDirBehavior::className(), 'handlerName' => 'gallery']);
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect([$model->handler . '/list', 'id' => $model->id]);
} else {
$model->parent_id = $cat_id;
return $this->render('create', ['model' => $model]);
}
}
示例2: actionCreate
/**
* Creates a new Resources model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionCreate($id)
{
if ($id == 0) {
throw new \yii\web\BadRequestHttpException("Неправильный запрос");
}
$model = new Categories();
$model->parent_id = $id;
$model->handler = $this->id;
$model->attachBehavior('createStoreDir', ['class' => StoreDirBehavior::className(), 'handlerName' => $this->id]);
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect(['list', 'id' => $model->parent_id]);
} else {
return $this->render('create', ['model' => $model]);
}
}