首页 > PHP资讯 > PHP培训技术 > yii前台后台分组设置

yii前台后台分组设置

PHP培训技术
进入gii 功能 http://yii.test.com/test1/index.php?r=gii

选择 Module Generator

添加 Module ID  名称  就是文件夹名称,然后会在protected/modules 下生成Module ID 文件夹 默认控制器 视图  模块
生成出的文件保存在protected/modules 下。如果你Module ID 填写的是admin 系统会自动生成文件 protected/modules/admin

那么需要在protected/config/main.php 中增加你的modules分组 这样系统才能自动加载

'modules'=>array(
    // uncomment the following to enable the Gii tool
    'gii'=>array(
      'class'=>'system.gii.GiiModule',
      'password'=>'123456',
      // If removed, Gii defaults to localhost only. Edit carefully to taste.
      'ipFilters'=>array('127.0.0.1','::1'),
    ),
    'admin'=>array(
      'class'=>'application.modules.admin.AdminModule',//admin是你生成出的文件夹,AdminModule是你生成出来的模块类
    ),
  ),

访问方式:http://yii.test.com/test1/index.php?r=admin

PHP培训技术

本文由欣才IT学院整理发布,未经许可,禁止转载。
支持43不支持0