mediabet-concepture/yii2-banner-module

正在开发中的软件包

安装: 637

依赖者: 0

建议者: 0

安全: 0

类型:yii2-extension

v2.0.0 2020-04-22 09:17 UTC

This package is auto-updated.

Last update: 2024-09-22 17:21:03 UTC


README

连接

"require": {

"concepture/yii2-banner-module" : "*"

},

迁移 php yii migrate/up --migrationPath=@concepture/yii2banner/console/migrations

连接后台模块

 'modules' => [
     'banner' => [
         'class' => 'concepture\yii2banner\Module'
     ],
 ],
 

为了覆盖控制器,我们在模块设置中添加

 'modules' => [
     'banner' => [
        'class' => 'concepture\yii2banner\Module',
        'controllerMap' => [
            'banner' => 'backend\controllers\BannerController' 
        ],
     ],
 ],

        

为了覆盖表示的文件夹,我们在模块设置中添加

 'modules' => [
     'banner' => [
         'class' => 'concepture\yii2banner\Module',
         'viewPath' => '@backend/views'
     ],
 ],
 

为了覆盖任何类,可以使用config.php中的依赖注入。例如,用你的模型替换StaticBlock模型

<?php
return [
    'container' => [
        'definitions' => [
            'concepture\yii2banner\models\StaticBlock' => ['class' => 'backend\models\Banner'],
        ],
    ],
]