PHP code example of qingbing / yii2-permission

1. Go to this page and download the library: Download qingbing/yii2-permission library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

qingbing / yii2-permission example snippets


'params' => [
    'defaultAccountType' => 'email',
]

'permissionMenuTypes' => [
    'menu'   => '菜单',
    'help'   => '帮助中心',
    'top'    => '顶端菜单',
    'footer' => '底部菜单',
    'button' => '按钮',
    'custom' => '自定义',
]

'controllerMap' => [
    // 权限管理
    'api-path'  => \YiiPermission\controllers\ApiPathController::class,
    'menu-path' => \YiiPermission\controllers\MenuPathController::class,
    'role'      => \YiiPermission\controllers\RoleController::class,
]