当前位置:首页 > 搜索和 文件 相关的文章

【phpcms-v9】专题模块后台控制器special.php文件分析-添加专题

添加日期:2014-10-23 15:05:33 发布:smiling 
1 添加专题: ***添加专题* publicfunctionadd(){ 添加专题if(isset($_POST[& 39;dosubmit& 39;])&&!emptyempty($_POST[& 39;dosubmit& 39;])){ 添加专题页面表单数组$special=$this->check($_POS ...

【phpcms-v9】会员模块index.php控制器文件分析:

添加日期:2014-10-23 15:03:01 发布:smiling 
<?php ***会员前台管理中心、账号管理、收藏操作类* defined(& 39;IN_PHPCMS& 39;)orexit(& 39;Nopermissionresources & 39;);pc_base::load_app_class(& 39;foreground& 39;); index控制器extend ...

【phpcms-v9】专题模块前端控制器index.php文件分析

添加日期:2014-10-23 14:03:32 发布:smiling 
<?phpdefined(& 39;IN_PHPCMS& 39;)orexit(& 39;Nopermissionresources & 39;);pc_base::load_app_func(& 39;global& 39;,& 39;special& 39;); 加载global func php文件classindex{private$db;fun ...

【phpcms-v9】模型字段文件夹下各个文件的作用

添加日期:2014-10-23 09:49:07 发布:smiling 
比如:文章模型下的时间和日期模型字段-datatime,与当前datetime模型字段相关的文件都在phpcms content fields datetime 文件夹下 1 phpcms content fields datetime field_add_form inc php:在后台 ...

【phpcms-v9】后台content模块的content.php控制器文件分析-后台添

添加日期:2014-10-23 09:26:15 发布:smiling 
【phpcms-v9】后台content模块的content php控制器文件分析-后台添加内容代码分析 第一步,路径:phpcms modules content content php: 构造方法publicfunction__construct(){parent::__construct() ...

【phpcms-v9】前台模板文件中{pc}标签的执行流程

添加日期:2014-10-23 09:18:58 发布:smiling 
前台pc标签的使用:{pc:content 参数名="参数值" 参数名="参数值" 参数名="参数值"}如:{pc:content action="lists" catid="9" cache="3600" num="20" page="$page"}{ pc}执行流程如下:①模 ...

【phpcms-v9】缓存目录caches下的各个文件的作用

添加日期:2014-10-23 09:07:36 发布:smiling 
第一:caches caches_commons目录下缓存文件:1 caches caches_commons caches_data category_content cache php: 所有栏目对应的站点ID 2 caches caches_commons caches_data category_content_1 ...

【phpcms-v9】header.html文件编译前后对比

添加日期:2014-10-23 08:58:25 发布:smiling 
编译前:<head><metahttp-equiv="Content-Type"content="text html;charset=utf-8" ><metahttp-equiv="X-UA-Compatible"content="IE=7" ><title>{ifisset($SEO[& 39;title& 39;])&&!empty($SEO[& 39 ...

【phpcms-v9】前台content模块控制器index.php文件分析-内容详情页

添加日期:2014-10-23 08:55:52 发布:smiling 
【phpcms-v9】前台content模块控制器index php文件分析-内容详情页代码分析 内容页:文章内容详情页、图片详情页、下载详情页走的都是show()方法 路径:phpcms modules content index php控制器 ...

【phpcms-v9】content_output.class.php文件分析-前台内容详情页显示

添加日期:2014-10-23 08:54:00 发布:smiling 
【phpcms-v9】content_output class php文件分析-前台内容详情页显示数据的过滤<?php 路径:caches caches_model caches_data content_output class php 在phpcms modules content index php控制 ...

【phpcms-v9】index.php文件分析-前台列表页代码分析

添加日期:2014-10-23 08:52:01 发布:smiling 
路径:phpcms modules content index php控制器 列表页:文章列表页、图片列表页、下载列表页执行的都是这段程序publicfunctionlists(){$catid=intval($_GET[& 39;catid& 39;]); 栏目id$_priv_d ...

【phpcms-v9】index.php文件分析-前台首页模板文件的解析过程

添加日期:2014-10-22 17:05:29 发布:smiling 
第一步:前台首页默认执行的是:index php?m=content&c=index&a=init: 首页publicfunctioninit(){if(isset($_GET[& 39;siteid& 39;])){$siteid=intval($_GET[& 39;siteid& 39;]); 当前站点ID}else ...