定制 echo-ooxx/yii2-admin 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

echo-ooxx/yii2-admin

Composer 安装命令:

composer require echo-ooxx/yii2-admin

包简介

RBAC Auth manager for Yii2

README 文档

README

需要依赖这个项目来安装Admin, 详情请查阅 https://github.com/liulipeng/Yii2-Project-Admin

Latest Stable Version Total Downloads License Daily Downloads

功能

  1. 基础功能:登录,登出,密码修改等常见的功能

  2. 菜单配置:可视化配置菜单,可以根据配置用户的权限显示隐藏菜单

  3. 权限机制:角色、权限增删改查,以及给用户赋予角色权限

  4. 规则机制:除了权限角色之外有规则机制,即可以给对应的权限配置规则

  5. 二次开发:完全可以基于该系统做二次开发,开发一套适合自己的后台管理系统,节约权限控制以及部分基础功能开发的时间成本,后台系统开发的不二之选

  6. 持续更新:新的功能模块会持续更新,请关注

安装

最简单的安装,请访问这里查看

预览

登录

首页

权限管理

角色管理

路由管理

菜单管理

Install With Composer

The preferred way to install this extension is through composer.

Either run

php composer.phar require echoooxx/yii2-admin "*"

or for the dev-master

php composer.phar require echoooxx/yii2-admin "dev"

Or, you may add

"echoooxx/yii2-admin": "*"

to the require section of your composer.json file and execute php composer.phar update.

Install From the Archive

Download the latest release from here releases, then extract it to your project. In your application config, add the path alias for this extension.

return [
    ...
    'aliases' => [
        '@echoooxx/admin' => 'path/to/your/extracted',
        // for example: '@echoooxx/admin' => '@app/extensions/mdm/yii2-admin-2.0.0',
        ...
    ]
];

Usage

Once the extension is installed, simply modify your application configuration as follows:

return [
    'modules' => [
        'admin' => [
            'class' => 'echoooxx\admin\Module',
            ...
        ]
        ...
    ],
    ...
    'components' => [
        ...
        'authManager' => [
            'class' => 'yii\rbac\PhpManager', // or use 'yii\rbac\DbManager'
        ]
    ],
    'as access' => [
        'class' => 'echoooxx\admin\components\AccessControl',
        'allowActions' => [
            'site/*',
            'admin/*',
            'some-controller/some-action',
            // The actions listed here will be allowed to everyone including guests.
            // So, 'admin/*' should not appear here in the production, of course.
            // But in the earlier stages of your development, you may probably want to
            // add a lot of actions here until you finally completed setting up rbac,
            // otherwise you may not even take a first step.
        ]
    ],
];

See Yii RBAC for more detail. You can then access Auth manager through the following URL:

http://localhost/path/to/index.php?r=admin
http://localhost/path/to/index.php?r=admin/route
http://localhost/path/to/index.php?r=admin/permission
http://localhost/path/to/index.php?r=admin/menu
http://localhost/path/to/index.php?r=admin/role
http://localhost/path/to/index.php?r=admin/assignment

To use the menu manager (optional), execute the migration here:

yii migrate --migrationPath=@echoooxx/admin/migrations

If you use database (class 'yii\rbac\DbManager') to save rbac data, execute the migration here:

yii migrate --migrationPath=@yii/rbac/migrations

Customizing Assignment Controller

Assignment controller properties may need to be adjusted to the User model of your app. To do that, change them via controllerMap property. For example:

    'modules' => [
        'admin' => [
            ...
            'controllerMap' => [
                 'assignment' => [
                    'class' => 'echoooxx\admin\controllers\AssignmentController',
                    /* 'userClassName' => 'app\models\User', */
                    'idField' => 'user_id',
                    'usernameField' => 'username',
                    'fullnameField' => 'profile.full_name',
                    'extraColumns' => [
                        [
                            'attribute' => 'full_name',
                            'label' => 'Full Name',
                            'value' => function($model, $key, $index, $column) {
                                return $model->profile->full_name;
                            },
                        ],
                        [
                            'attribute' => 'dept_name',
                            'label' => 'Department',
                            'value' => function($model, $key, $index, $column) {
                                return $model->profile->dept->name;
                            },
                        ],
                        [
                            'attribute' => 'post_name',
                            'label' => 'Post',
                            'value' => function($model, $key, $index, $column) {
                                return $model->profile->post->name;
                            },
                        ],
                    ],
                    'searchClass' => 'app\models\UserSearch'
                ],
            ],
            ...
        ]
        ...
    ],
  • Required properties
    • userClassName Fully qualified class name of your User model
      Usually you don't need to specify it explicitly, since the module will detect it automatically
    • idField ID field of your User model
      The field that corresponds to Yii::$app->user->id.
      The default value is 'id'.
    • usernameField User name field of your User model
      The default value is 'username'.
  • Optional properties
    • fullnameField The field that specifies the full name of the user used in "view" page.
      This can either be a field of the user model or of a related model (e.g. profile model).
      When the field is of a related model, the name should be specified with a dot-separated notation (e.g. 'profile.full_name').
      The default value is null.
    • extraColumns The definition of the extra columns used in the "index" page
      This should be an array of the definitions of the grid view columns.
      You may include the attributes of the related models as you see in the example above.
      The default value is an empty array.
    • searchClass Fully qualified class name of your model for searching the user model
      You have to supply the proper search model in order to enable the filtering and the sorting by the extra columns.
      The default value is null.

Customizing Layout

By default, the admin module will use the layout specified in the application level. In that case you have to write the menu for this module on your own.

By specifying the layout property, you can use one of the built-in layouts of the module: 'left-menu', 'right-menu' or 'top-menu', all equipped with the menu for this module.

    'modules' => [
        'admin' => [
            ...
            'layout' => 'left-menu', // defaults to null, using the application's layout without the menu
                                     // other avaliable values are 'right-menu' and 'top-menu'
        ],
        ...
    ],

If you use one of them, you can also customize the menu. You can change menu label or disable it.

    'modules' => [
        'admin' => [
            ...
            'layout' => 'left-menu',
            'menus' => [
                'assignment' => [
                    'label' => 'Grant Access' // change label
                ],
                'route' => null, // disable menu
            ],
        ],
        ...
    ],

While using a dedicated layout of the module, you may still want to have it wrapped in your application's main layout that has your application's nav bar and your brand logo on it. You can do it by specifying the mainLayout property with the application's main layout. For example:

    'modules' => [
        'admin' => [
            ...
            'layout' => 'left-menu',
            'mainLayout' => '@app/views/layouts/main.php',
            ...
        ],
        ...
    ],

screenshots

echo-ooxx/yii2-admin 适用场景与选型建议

echo-ooxx/yii2-admin 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 84 次下载、GitHub Stars 达 1, 最近一次更新时间为 2018 年 01 月 02 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「admin」 「auth」 「yii」 「rbac」 「yii2-admin」 「echoooxx」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 echo-ooxx/yii2-admin 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 echo-ooxx/yii2-admin 我们能提供哪些服务?
定制开发 / 二次开发

基于 echo-ooxx/yii2-admin 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 84
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 7
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2018-01-02