zacksleo/yii-client

yii 客户端管理模块

安装: 131

依赖: 0

建议者: 0

安全: 0

星标: 0

关注者: 3

分支: 0

开放问题: 0

类型:yii2-extension

1.0.2 2019-01-15 02:43 UTC

This package is auto-updated.

Last update: 2024-09-15 15:24:22 UTC


README

Latest Stable Version Total Downloads License Build Status StyleCI Scrutinizer Code Quality Code Coverage

yii 客户端模块

迁移

  • 在 Yii 配置文件中配置迁移路径,如下所示
    'controllerMap' => [
        'migrate' => [
            'class' => 'yii\console\controllers\MigrateController',
            'migrationPath' => [
                ...
                '@zacksleo/yii2/client/migrations',
            ],
        ],
    ],

  • 或者通过迁移路径参数运行迁移
  ./yii migrate --migrationPath=@zacksleo/yii2/client/migrations

在 components 部分配置模块

    'rom-release' => [
        'class' => 'zacksleo\yii2\ad\Module',
    ]

使用操作

class AdController extends Controller
{
    public function actions()
    {
        return [
            'index' => [
                'class' => 'zacksleo\yii2\ad\actions\IndexAction'
            ]
        ];
    }
}