yii2-crud-toolkit

Build your controllers as LEGO!

  • 所有者: voskobovich/yii2-crud-toolkit
  • 平台:
  • 许可证:
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

Yii2 CRUD Toolkit

It is a framework to quickly build controllers for your Yii2 application.

Example

Your controller can look like this

<?php

namespace app\controllers;

use voskobovich\alert\helpers\AlertHelper;
use voskobovich\crud\actions\UpdateAction;
use voskobovich\crud\actions\ViewAction;
use Yii;
// and more namespases ...

/**
 * Class ProfileController.
 */
class ProfileController extends Controller
{
    /**
     * {@inheritdoc}
     */
    public function actions()
    {
        $successCallback = function () {
            Yii::$app->session->setFlash('success', 'Saved successfully!');
        };

        $errorCallback = function () {
            Yii::$app->session->setFlash('error', 'Error saving!');
        };

        $webUser = Yii::$app->user;

        return [
            'update' => [
                'class' => UpdateAction::className(),
                'modelClass' => ProfileUpdateForm::className(),
                'primaryKey' => $webUser->id,
                'redirectUrl' => false,
                'successCallback' => $successCallback,
                'errorCallback' => $errorCallback,
            ],
            'password' => [
                'class' => UpdateAction::className(),
                'modelClass' => ProfilePasswordForm::className(),
                'primaryKey' => $webUser->id,
                'redirectUrl' => ['password'],
                'viewFile' => 'password',
                'successCallback' => function () {
                    Yii::$app->session->setFlash('success', 'Password changed');
                },
                'errorCallback' => $errorCallback,
            ],
            'photo' => [
                'class' => UploadAction::className(),
                'modelClass' => ProfilePhotoForm::className(),
                'primaryKey' => $webUser->id,
                'viewFile' => 'photo',
                'redirectUrl' => false,
                'successCallback' => false,
                'errorCallback' => false,
            ],
            'photo-delete' => [
                'class' => UpdateAction::className(),
                'modelClass' => ProfilePhotoDeleteForm::className(),
                'primaryKey' => $webUser->id,
                'viewFile' => false,
                'redirectUrl' => ['update'],
                'successCallback' => false,
                'errorCallback' => false,
            ],
            'contacts' => [
                'class' => ViewAction::className(),
                'modelClass' => User::className(),
                'loadedModel' => $webUser->identity,
                'viewFile' => 'contacts',
            ],
        ];
    }
}

Action Params
---, Param name, Description, ---------------, ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------, modelClass, Class name of your ActiveRecord model or form which extend voskobovich\base\forms\FindableFormAbstract from yii2-base-toolkit., viewFile, The name of view file., viewParams, The view additional params., redirectUrl, The route which will be redirected after the user action., scenario, The scenario to be assigned to the model before it is validated and updated., primaryKeyParam, The name of the GET parameter that stores the primary key of the model., successCallback, Is called when a successful result., errorCallback, Is called when a failed result., beforeRun, This method is called right before run() is executed. You may override this method to do preparation work for the action run. If the method returns false, it will cancel the action., afterRun, This method is called right after run() is executed. You may override this method to do post-processing work for the action run., loadedModel, The previously loaded object of modelClass., > This is only the basic parameters of the action.
For details see the source code.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist voskobovich/yii2-crud-toolkit "^3"

or add

"voskobovich/yii2-crud-toolkit": "^3"

to the require section of your composer.json file.

CODE ECOLOGY

To auto fix the code format:

./vendor/bin/php-cs-fixer fix

主要指标

概览
名称与所有者voskobovich/yii2-crud-toolkit
主编程语言PHP
编程语言PHP (语言数: 1)
平台
许可证
所有者活动
创建于2015-07-24 12:16:50
推送于2017-04-08 17:06:02
最后一次提交2017-04-08 20:05:56
发布数4
最新版本名称v2.0.1 (发布于 2016-02-13 18:13:40)
第一版名称v1.0.0 (发布于 2015-07-24 18:00:49)
用户参与
星数11
关注者数3
派生数2
提交数104
已启用问题?
问题数0
打开的问题数0
拉请求数1
打开的拉请求数0
关闭的拉请求数0
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?