[ 'class' => Index::className(), 'columns' => [ 'title' => [ 'type' => Index::ACTION_COL, 'columnConfig' => [ 'buttonsTemplate' => '{edit}{delete}', ], ], 'sort' => [ 'type' => Index::POSITION_COL, ], 'status' => [ 'type' => Index::STATUS_COL, ], ], 'model' => Delivery::className(), 'hasLanguage' => true, 'enableMassDelete' => true, 'modelPrimaryKey' => 'id', ], 'create' => array_merge([ 'class' => Create::className() ], self::fieldsConfig()), 'update' => array_merge([ 'class' => Update::className() ], self::fieldsConfig()), 'view' => [ 'class' => View::className(), 'model' => Delivery::className(), 'hasAlias' => false, 'hasGallery' => false, 'languageFields' => [ [ 'name' => 'title', 'type' => Form::STRING, ], [ 'name' => 'description', 'type' => Form::WYSIWYG, ], ], 'fields' => [ [ 'name' => 'status', 'type' => Form::BOOL, ], [ 'name' => 'sort', 'type' => Form::NUMBER, ], [ 'name' => 'value', 'type' => Form::NUMBER, ], [ 'name' => 'color', 'type' => Form::STRING, ], [ 'name' => 'default', 'type' => Form::BOOL, ], ], ], 'delete' => [ 'class' => Delete::className(), ], ]; } public function findModel($id) { $model = Delivery::find() ->with('languages') ->where([ 'id' => $id ]) ->one(); if ($model !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } } public function newModel() { return new Delivery(); } public function deleteModel($id) { $page = Delivery::find() ->with('languages') ->where( [ 'id' => $id, ] ) ->one(); $langs = call_user_func( [ $page, 'getVariationModels', ] ); foreach ($langs as $lang) { if ($lang->alias !== null) { $lang->alias->delete(); } } return $page->delete(); } protected static function fieldsConfig() { return [ 'model' => Delivery::className(), 'hasAlias' => false, 'hasGallery' => false, 'languageFields' => [ [ 'name' => 'title', 'type' => Form::STRING, ], [ 'name' => 'description', 'type' => Form::WYSIWYG, ], ], 'fields' => [ [ 'name' => 'status', 'type' => Form::BOOL, ], [ 'name' => 'default', 'type' => Form::BOOL, ], [ 'name' => 'sort', 'type' => Form::NUMBER, ], [ 'name' => 'value', 'type' => Form::NUMBER, ], ], ]; } }