strongsquirrel / yii2-crud
CRUD extension for Yii2
Installs: 63
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 5
Forks: 1
Open Issues: 2
Type:yii2-extension
Requires
- php: >=5.4
- yiisoft/yii2: ~2.0
This package is not auto-updated.
Last update: 2024-11-09 19:45:23 UTC
README
CRUD extension for Yii2.
Installation
Run the Composer command to install the latest stable version:
composer require strongsquirrel/yii2-crud @stable
The extension has a base functional for creating CRUD with the following actions:
index
: list of modelscreate
: create a modelupdate
: update a modeldelete
: delete a modelview
: view a modelsearch
: search models
Usage
Simple way
Just create controller:
use strongsquirrel\crud\CrudController; class AwesomeController extends CrudController { public $modelClass = Model::class; }
or use a special trait:
class AwesomeController extends YourController { use strongsquirrel\crud\CrudTrait; public $modelClass = Model::class; }
IndexAction
Declare the following in your controller:
use strongsquirrel\crud\IndexAction; public function actions() { return [ 'index' => [ 'class' => IndexAction::className(), 'modelClass' => MyModel::className(), 'view' => 'index', // by default // 'prepareDataProvider' => [$this, 'prepareDataProvider'], // 'checkAccess' => [$this, 'checkAccess'], ], ]; }
View file index.php
:
echo GridView::widget([ 'dataProvider' => $dataProvider, ]);
CreateAction
Declare the following in your controller:
use strongsquirrel\crud\CreateAction public function actions() { return [ 'create' => [ 'class' => CreateAction::className(), 'modelClass' => MyModel::className(), 'scenario' => MyModel::SCENARIO_DEFAULT, // by default 'view' => 'create', // by default // 'findModel' => [$this, 'findModel'], // 'checkAccess' => [$this, 'checkAccess'], // 'afterSave' => [$this, 'onAfterSave'], ], ]; }
View file create.php
:
$form = ActiveForm::begin(); echo $form->field($model, 'title'); ActiveForm::end();
UpdateAction
Declare the following in your controller:
use strongsquirrel\crud\UpdateAction public function actions() { return [ 'update' => [ 'class' => UpdateAction::className(), 'modelClass' => MyModel::className(), 'scenario' => MyModel::SCENARIO_DEFAULT, // by default 'view' => 'update', // by default // 'findModel' => [$this, 'findModel'], // 'checkAccess' => [$this, 'checkAccess'], // 'afterUpdate' => [$this, 'onAfterSave'], ], ]; }
View file update.php
:
$form = ActiveForm::begin(); echo $form->field($model, 'title'); ActiveForm::end();
DeleteAction
Declare the following in your controller:
use strongsquirrel\crud\DeleteAction public function actions() { return [ 'delete' => [ 'class' => DeleteAction::className(), 'modelClass' => MyModel::className(), // 'findModel' => [$this, 'findModel'], // 'checkAccess' => [$this, 'checkAccess'], // 'afterDelete' => [$this, 'onAfterDelete'], ], ]; }
ViewAction
Declare the following in your controller:
use strongsquirrel\crud\ViewAction public function actions() { return [ 'view' => [ 'class' => ViewAction::className(), 'modelClass' => MyModel::className(), 'view' => 'view', // by default // 'findModel' => [$this, 'findModel'], // 'checkAccess' => [$this, 'checkAccess'], ], ]; }
View file view.php
:
echo DetailView::widget([ 'model' => $model, ]);
SearchAction
Declare the following in your controller:
use strongsquirrel\crud\SearchAction public function actions() { return [ 'index' => [ 'class' => SearchAction::className(), 'modelClass' => MySearchModel::className(), 'scenario' => MySearchModel::SCENARIO_DEFAULT, // by default 'view' => 'search', // by default 'formMethod' => SearchAction::FORM_METHOD_GET, // by default 'searchMethod' => 'search', // by default 'searchOptions' => [], // by default // 'checkAccess' => [$this, 'checkAccess'], ], ]; }
Add search method to your class model:
class MySearchModel extends Model { // ... /** * The search method. * Should return an instance of [[DataProviderInterface]]. * * @param array $options your search options * * @return ActiveDataProvider */ public function search(array $options = []) { $query = MyModel::find(); if ($this->validate()) { $query->filterWhere($this->getAttributes()); } if (!empty($options['active'])) { $query->andWhere(['status' => MyModel::STATUS_ACTIVE]); } return new ActiveDataProvider(['query' => $query]); } }
View file search.php
:
echo GridView::widget([ 'dataProvider' => $dataProvider, 'filterModel' => $filterModel, ]);
Recipes
Changing CrudTrait actions
namespace app\controllers; use app\models\News; use strongsquirrel\crud\CrudTrait; class NewsController extends Controller { use CrudTrait { actions as traitActions; } public $modelClass = News::class; public function actions() { $actions = $this->traitActions(); unset($actions['view']); unset($actions['update']); unset($actions['delete']); unset($actions['search']); $actions['create']['afterSave'] = function () { return $this->redirect('index'); }; return $actions; } }
Additional parameters in view
namespace app\controllers; use app\models\City; use app\models\User; use strongsquirrel\crud\UpdateAction; use strongsquirrel\crud\ViewAction; class UsersController extends Controller { /** * @inheritdoc */ public function actions() { return [ 'update' => [ 'class' => UpdateAction::className(), 'modelClass' => User::className(), 'params' => [ 'cities' => [$this, 'getCities'], 'title' => 'Update User', ], ], 'view' => [ 'class' => ViewAction::className(), 'modelClass' => User::className(), 'params' => function (User $model) { return [ 'posts' => function (User $model) { return $model->posts; }, 'city' => $model->city, 'cities' => [$this, 'getCities'], ]; }, ], ]; } /** * @return City[] */ public function getCities() { return City::findAll(); } }
License
The MIT License (MIT). See LICENSE.md for more information.