nullref / yii2-full-admin
Installs: 476
Dependents: 1
Suggesters: 0
Security: 0
Stars: 3
Watchers: 5
Forks: 1
Open Issues: 0
Type:yii2-extension
Requires
- php: >=5.4.0
- dektrium/yii2-user: 0.9.*@dev
- kartik-v/yii2-widget-datepicker: ^1.4
- nullref/yii2-core: >=0.0.4
- nullref/yii2-sb-admin-2: >=0.0.2
- nullref/yii2-useful: >=0.0.4
- yiisoft/yii2: >=2.0.4
Requires (Dev)
This package is auto-updated.
Last update: 2024-12-07 22:24:31 UTC
README
Module for administration with user management
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist nullref/yii2-full-admin "*"
or add
"nullref/yii2-full-admin": "*"
to the require section of your composer.json
file.
Then You have run console command for install this module and run migrations:
php yii module/install nullref/yii2-full-admin
Also, you have to add \nullref\fulladmin\Bootstrap
class to bootstrap:
//config 'bootstrap' => [ //.. \nullref\fulladmin\Bootstrap::class, //... ],
Pay attention that if you don't use our application template it needs to change config files structure to have ability run commands that show above.
Please check this documentation section
Admin Menu
For adding items to admin menu you have to implement IAdminModule interface, e.g.:
public static function getAdminMenu() { return [ 'label' => \Yii::t('admin', 'Subscription'), 'icon' => 'envelope', 'order' => 0, 'items' => [ 'emails' => ['label' => \Yii::t('app', 'Subscribers'), 'icon' => 'envelope-o', 'url' => ['/subscription/email/index']], 'messages' => ['label' => \Yii::t('app', 'Messages'), 'icon' => 'envelope-o', 'url' => ['/subscription/message/index']], ] ]; }
Admin Controller
If you use IAdminController
interface in controller, admin layout and default access rule will be set in controller before action.
Modules system
This module integrated in system which contain other useful components. View details
Overriding
Example:
/** module config **/ 'admin' => [ 'class' => 'nullref\admin\Module', 'controllerMap' => [ //controllers 'main' => 'app\modules\admin\controllers\MainController', ], 'components' => [ //menu builder 'menuBuilder' => 'app\\components\\MenuBuilder', ], ],
And translations