在CmsTop的程序框架中提供了3种框架初始化模式:admin, frontend, wap 用于动态访问入口。动态应用入口现在共有5个,并可根据你的需要自行扩展。扩展方法参考系统自带的入口文件。
§ 后台管理入口
整个网站平台业务管理的访问入口,访问地址为:http://admin.cmstop.dev,该域名在部署时根据客户需求设定的,每个客户均不相同。
入口程序文件为:public/admin/index.php
<?php
define('CMSTOP_START_TIME', microtime(true));
define('RUN_CMSTOP', true);
define('IN_ADMIN', 1);
require '../../cmstop.php';
$cmstop = new cmstop('admin');
$cmstop->execute();
§ 前台应用入口
前台应用的访问入口,访问地址为:http://app.cmstop.dev,该域名在部署时根据客户需求设定的。一般形式为 app.domain.com。
在前面提到过,每个应用都分为后台和前台两种访问模式,后台用于管理,前台用于客户浏览。
入口程序文件为:public/app/index.php
<?php
define('CMSTOP_START_TIME', microtime(true));
define('RUN_CMSTOP', true);
require '../../cmstop.php';
$cmstop = new cmstop('frontend');
$cmstop->execute();
§ WAP访问入口
CmsTop同样提供了WAP手机访问模式,访问域名一般为:http://wap.cmstop.dev,该域名在部署时根据客户需求设定的。一般形式为 wap.domain.com。
入口程序文件为:public/wap/index.php
<?php
define('CMSTOP_START_TIME', microtime(true));
define('RUN_CMSTOP', true);
require '../../cmstop.php';
$action = isset($_GET['action'])?$_GET['action']:'';
if(empty($action) || !in_array($action,array('index','category','comment','image','show')))
{
$action = 'index';
}
$cmstop = new cmstop('wap');
$cmstop->execute('wap','wap',$action);
§ 个人空间入口
系统中提供了专栏作家的快速访问通道,个人空间入口。访问地址为:http://space.cmstop.dev,该域名在部署时根据客户需求设定的。一般形式为 space.domain.com。
入口程序文件为:public/space/index.php
<?php
define('CMSTOP_START_TIME', microtime(true));
define('RUN_CMSTOP', true);
require '../../cmstop.php';
$cmstop = new cmstop('frontend');
$action = 'index';
if(isset($_GET['action']) && in_array($_GET['action'],array('homepage', 'page','rss','listing')))
$action = $_GET['action'];
$cmstop->execute('space','index',$action);
§ 计划任务执行入口
计划任务入口是系统中一个特别的入口,用于根据系统设定自动计划一系统业务流程,减少人工操作量。
入口程序文件为:cron/crontab.php
<?php
define('CMSTOP_START_TIME', microtime(true));
define('RUN_CMSTOP', true);
define('IN_ADMIN', 1);
define('INTERNAL', 1);
require '../cmstop.php';
$cmstop = new cmstop('admin');
$cmstop->execute('system', 'cron', 'interval');
请注意:计划任务模式运行时,主要依据为 define('INTERNAL', 1); 程序中加入了对该参数的特别处理。使其可以模拟指定的用户身份(在config配置中设定)进行业务自动处理。