### 让这个模块可见
>1.把opencmf.PHP文件配置好了后台该模块的菜单就能在安装后自动读取(分析好父子关系,否则页面死循环,apache资源占用率100%)
Equip/opencmf.php
~~~
<?php
// 模块信息配置
return array(
// 模块信息
'info' => array(
'name' => 'Equip',
'title' => '设备',
'icon' => 'fa fa-newspaper-o',
'icon_color' => '#9933FF',
'description' => '设备模块',
'developer' => 'See You Again',
'website' => 'http://www.opencmf.cn',
'version' => '1.0.0',
'dependences' => array(
'Admin' => '1.1.0',
),
),
// 用户中心导航
'user_nav' => array(
),
// 模块配置
'config' => array(
),
// 后台菜单及权限节点配置
'admin_menu' => array(
'1' => array(
'pid' => '0',
'title' => '设备',
'icon' => 'fa fa-newspaper-o',
),
'2' => array(
'pid' => '1',
'title' => '设备管理',
'icon' => 'fa fa-newspaper-o',
),
'3' => array(
'pid' => '2',
'title' => '设备配置',
'icon' => 'fa fa-wrench',
'url' => 'Equip/Index/index',
),
),
);
~~~
>2.让页面自动构建表格
>在Equip目录下的Admin目录下建立IndexAdmin.class.php
这个文件继承了AdminController,AdminController实现了登录权限检测,自动读取后台模块左侧导航栏,而AdminController继承了CommonController,CommonController实现了模板显示功能,CommonController继承了Controller
Equip/Admin/IndexAdmin.class.php
~~~
<?php
namespace Equip\Admin;
use Admin\Controller\AdminController;
use Common\Util\Think\Page;
class IndexAdmin extends AdminController{
public function index(){
//使用Builder快速建立列表页面
$builder = new \Common\Builder\ListBuilder();
$builder->setMetaTitle('设备管理') //设置页面标题
->addTableColumn('id', 'ID')
->addTableColumn('create_time', '设备名称', 'time')
->addTableColumn('sort', '排序', 'text')
->addTableColumn('status', '状态', 'status')
->addTableColumn('right_button', '操作', 'btn')
->setExtraHtml('<div class="alert alert-success">请点击左侧的列表树进行操作</div>')
->display();
}
}
~~~
>3.先将之前的这个模块卸载,然后在安装,就能正常显示页面了
![](https://box.kancloud.cn/1c852065a9e8a1db95c4ad1de37c8c8b_1920x557.png)
- 基础介绍
- 框架介绍
- 安装地址
- 环境要求
- 安装教程
- 环境搭建
- Windows系统
- GNU/Linux系统
- Mac OS X系统
- 二次开发
- 基础知识
- 目录结构
- font-awesome字体图标
- Builder
- Builder的来历
- ListBuilder使用
- FormBuilder使用
- 模块开发教程
- (一)根据已有模块推测目录结构
- (二)让这个模块可安装
- (三)让这个模块可见
- (四)让这个模块跑起来
- (五)开启这个模块的配置
- (六)让这个模块在前台显示
- (七)模块数据库脚本
- (八)净化后台首页的系统信息
- (九)移除前台的注册登录按钮
- (十)前台显示公告列表
- (十一)后台查询数据列表
- (十二)后台添加自定义按钮
- (十三)后台删除按钮
- (十四)后台编辑按钮
- (十五)后台新增按钮
- (十六)后台搜索功能
- (十七)opencmf.php 配置文件
- (十八)前台页面插入jit前端数据可视化库
- 主题开发教程
- APP集成
- API接口