首先,模块开发需要了解五指cms的目录结构:

然后,我们需要新增加一个模块目录:

再app下面创建

如:content

下面包含文件:

前台文件的创建:

看下 index.php 的内容:

<?php
// +----------------------------------------------------------------------
// | wuzhicms [ 五指互联网站内容管理系统 ]
// | Copyright (c) 2014-2015 http://www.wuzhicms.com All rights reserved.
// | Licensed ( http://www.wuzhicms.com/licenses/ )
// | Author: wangcanjia
// +----------------------------------------------------------------------
defined('IN_WZ') or exit('No direct script access allowed');
load_function('content','content');
/**
* 网站首页
*/
class index{
   private $siteconfigs;
  public function __construct() {
       $this->siteconfigs = get_cache('siteconfigs');
       $this->db = load_class('db');
  }    /**
    * 网站首页
    */
   public function index() {
       $isindex = 1;
       $siteconfigs = $this->siteconfigs;
       $seo_title = $siteconfigs['sitename'];
       $seo_keywords = $siteconfigs['seo_keywords'];
       $seo_description = $siteconfigs['seo_description'];
       $categorys = get_cache('category','content');
       include T('content','index',TPLID);
  }    /**
    * 内容页面
    * url规则 /index.php?v=show&cid=24&id=79
    */
   public function show() {
       $siteconfigs = $this->siteconfigs;
       $id = isset($GLOBALS['id']) ? intval($GLOBALS['id']) : MSG(L('parameter_error'));
       $cid = isset($GLOBALS['cid']) ? intval($GLOBALS['cid']) : MSG(L('parameter_error'));
       $categorys = get_cache('category','content');
       //查询数据
       $category = get_cache('category_'.$cid,'content');
       $models = get_cache('model_content','model');        $model_r = $models[$category['modelid']];
       $master_table = $model_r['master_table'];
       $data = $this->db->get_one($master_table,array('id'=>$id));
       if(!$data || $data['status']!=9) MSG('信息不存在或者未通过审核!');
       if($model_r['attr_table']) {
           $attr_table = $model_r['attr_table'];
           if($data['modelid']) {
               $modelid = $data['modelid'];
               $attr_table = $models[$modelid]['attr_table'];
           }
           $attrdata = $this->db->get_one($attr_table,array('id'=>$id));
           $data = array_merge($data,$attrdata);
       }        require get_cache_path('content_format','model');
       $form_format = new form_format($model_r['modelid']);
       $data = $form_format->execute($data);
       foreach($data as $_key=>$_value) {
           $$_key = $_value['data'];
       }
       if($template) {
           $_template = $template;
       } elseif($category['show_template']) {
           $_template = $category['show_template'];
       } elseif($model_r['template']) {
           $_template = TPLID.':'.$model_r['template'];
       } else {
           $_template = TPLID.':show';
       }
       $styles = explode(':',$_template);
       $project_css = isset($styles[0]) ? $styles[0] : 'default';
       $_template = isset($styles[1]) ? $styles[1] : 'show';
       $elasticid = elasticid($cid);
       $seo_title = $title.'_'.$category['name'].'_'.$siteconfigs['sitename'];
       $seo_keywords = !empty($keywords) ? implode(',',$keywords) : '';
       $seo_description = $remark;
       //上一页
       $previous_page = $this->db->get_one($master_table,"`cid`= '$cid' AND `id`>'$id' AND `status`=9",'*',0,'id ASC');
       //下一页
       $next_page = $this->db->get_one($master_table,"`cid` = '$cid' AND `id`<'$id' AND `status`=9",'*',0,'id DESC');
       include T('content',$_template,$project_css);
   }    /**
    * 栏目列表
    */
   public function listing() {
       $cid = isset($GLOBALS['cid']) ? intval($GLOBALS['cid']) : MSG(L('parameter_error'));
       //站点信息
       $siteconfigs = $this->siteconfigs;
       //栏目信息
       $categorys = get_cache('category','content');
       $category = get_cache('category_'.$cid,'content');
       //分页初始化
       $page = max(intval($GLOBALS['page']),1);
       //分页规则
       $urlrule = '';        if($category['child']) {
           $_template = $category['category_template'];
       } else {
           $_template = $category['list_template'];
       }
       if(empty($_template))  $_template = TPLID.':list';
       $styles = explode(':',$_template);
       $project_css = isset($styles[0]) ? $styles[0] : 'default';
       $_template = isset($styles[1]) ? $styles[1] : 'show';
       $seo_title = $category['name'].'_'.$siteconfigs['sitename'];
       $seo_keywords = $category['seo_keywords'];
       $seo_description = $category['seo_description'];
       $elasticid = elasticid($cid);
       $model_r = get_cache('model_content','model');
       $master_table = $model_r[$category['modelid']]['master_table'];
       if($category['type']==1) {
           $r = $this->db->get_one($master_table,array('cid'=>$cid));
           if($r) {
               extract($r,EXTR_SKIP);
               if($attr_table = $model_r[$category['modelid']]['attr_table']) {
                   $r = $this->db->get_one($attr_table,array('id'=>$id));
                   extract($r,EXTR_SKIP);
               }
           }
       }
       include T('content',$_template,$project_css);
   }
}
?>

完整的访问路径:
http://www.wuzhicms.com/index.php?m=content&f=index&v=listing&cid=2

通过参数:m=content //模块名
f=index //文件名(控制器)
v=方法名(视图)

这个就是MCV架构。

后台文件的创建:

首先登录后台,添加后台菜单:

路径:维护界面>后台菜单管理>

在扩展模块栏目:添加子菜单。

添加完成后,就会在对应的菜单下面找到。

后台文件的编写:

后台文件一定要放置到 admin目录。

在:模块目录下:coreframe/app/link/admin/下面添加文件。

具体可以参考下:

defined('IN_WZ') or exit('No direct script access allowed');
/**
 * 友情链接
 */
load_class('admin');
class index extends WUZHI_admin {
   private $db;    function __construct() {
      $this->db = load_class('db');
   }
    /**
     * 友情链接列表
     */
    public function listing() {
        $page = isset($GLOBALS['page']) ? intval($GLOBALS['page']) : 1;
        $page = max($page,1);
        $result = $this->db->get_list('link', '', '*', 0, 20,$page,'sort ASC');
        $pages = $this->db->pages;
        $total = $this->db->number;
        include $this->template('listing');
    }

wuzhicms 模块开发的更多相关文章

  1. AngularJS多模块开发

    angularJS中的多模块开发是指多个module模块开发,步骤为: 1. 确定主模块    var app=angular.module('myApp',[]); 2. 其他的子模块添加到主模块后 ...

  2. js模块开发(一)

    现在嵌入页面里面的javascript代码越来越复杂,于是可能依赖也越来越严重,使用别人开发的js也越来越多,于是在理想情况下,我们只需要实现核心的业务逻辑,其他都可以加载别人已经写好的模块. 于是j ...

  3. seajs实现JavaScript 的 模块开发及按模块加载

    seajs实现了JavaScript 的 模块开发及按模块加载.用来解决繁琐的js命名冲突,文件依赖等问题,其主要目的是令JavaScript开发模块化并可以轻松愉悦进行加载. 官方文档:http:/ ...

  4. Asp.net Mvc模块化开发之“开启模块开发、调试的简单愉快之旅”

    整个世界林林种种,把所有的事情都划分为对立的两个面. 每个人都渴望的财富划分为富有和贫穷,身高被划分为高和矮,身材被划分为胖和瘦,等等. 我们总是感叹,有钱人的生活我不懂;有钱人又何尝能懂我们每天起早 ...

  5. 基于ASP.NET MVC的热插拔模块式开发框架(OrchardNoCMS)--模块开发

    之前文章中给大家说明了下我这个小小的想法,发现还是有不少人的支持和关注.你们的鼓励是对我最大的支持. 我总结了了大家的评论,有以下几个问题: 1.希望有更多的文档说明. 2.希望介绍下Orchard的 ...

  6. js 模块开发之一(模块开发价值)

    首先引用我们的今天的主角 ----<前端模块化开发的价值> 1,前端开发最常见的两个问题 ---命名冲突和文件依赖 2,对于命名冲突的基本解决办法就是学习其他语言的习惯,添加命名空间 va ...

  7. nginx模块开发篇 (阿里著作)

    背景介绍 nginx历史 使用简介 nginx特点介绍 nginx平台初探(100%) 初探nginx架构(100%) nginx基础概念(100%) connection request 基本数据结 ...

  8. Drupal8开发教程:模块开发——创建新页面

    之前我们已经通过<Drupal8开发教程:认识.info.yml文件>对模块的YAML文件有了了解,今天我们来看如何通过模块开发的方式添加一个新的页面. 在 Drupal 7 中,通过模块 ...

  9. SpringMvc+jquery easyui模块开发7步骤

    搞了一段java的开发,总结出模块开发经验: SpringMvc+jquery easyui模块开发7步骤:1) 数据表(table):                定义表结构并创建数据表t_use ...

随机推荐

  1. hibernate添加数据,默认字段为null的问题解决

    数据库中的一个字段默认为0,但是在用hibernate的添加之后,默认字段竟然不是0,为NULL. 查了一下.发现想要让默认字段生效.需要在*.hbm.xml添加一些参数,如下.(红色部分) dyna ...

  2. tomcat启动报错:Unsupported major.minor version 51.0

    myeclipse中添加项目后,发现项目启动时报错:Unsupported major.minor version 51.0 因为tomcat使用的jdk版本不支持你项目的jdk版本,需要你在myec ...

  3. uva 437 hdu 1069

    dp  将石块按三个面存入队列  按底面积排序  dp就最大高度  按嵌套矩形最长路做做法 #include <iostream> #include <cstdio> #inc ...

  4. CSU1327+贪心+模拟

    题意简单,中文题目 方法:对于一个数 从左往右找相同的数 ,有就改变靠右的,同时把该数的右边全置0 注意!!!!n<0!!! /* */ #include<algorithm> #i ...

  5. adobe 蛋疼的套装, 想安装一个Flash Professional CS6,标准版还没有...

    产品比较 查看内容 查看各 Creative Suite 6 版本的组件. Design Standard Design & Web Premium Production Premium Ma ...

  6. H264码流解析及NALU

    ffmpeg 从mp4上提取H264的nalu http://blog.csdn.net/gavinr/article/details/7183499 639     /* bitstream fil ...

  7. P99、面试题13:在o(1)时间删除链表结点

    题目:给定单向链表的头指针和一个结点指针,定义一个函数在o(1)时间删除该结点.链表结点与函数的定义如下:struct ListNode{       int m_nValue;       List ...

  8. 跨域使用jsonp 获取天气预报

    <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">    ...

  9. python中的commands模块,执行出错:'{' 不是内部或外部命令,也不是可运行的程序 或批处理文件。

    最近发现了python的commands模块,查看了下源码,使用的popen封装的,形成三个函数getstatus(), getoutput(), getstatusoutput() 源码如下: de ...

  10. 在SQLite中使用索引优化查询速度

    在进行多个表联合查询的时候,使用索引可以显著的提高速度,刚才用SQLite做了一下测试. 建立三个表: create table t1 (id integer primary key,num inte ...