文件路径:
./apps/应用名称/controller/abstract.php
CmsTop框架规定每一个App应用中都必须有一个公共的abstract类,该App下的所有控制器都应继承自该abstract类。
abstract类用于初始化系统信息和设置,获取内置变量,向该App的控制器提供公共的方法。
§ abstract类的命名
abstract类命名形式为:
abstract class 应用名称_controller_abstract extends controller{ }
如:新建一个App应用,名称为test,那么他的abstract类的命名为:
abstract class test_controller_abstract extends controller{ }
§ abstract类的编写
默认情况下,abstract类提供了1个构造函数和1个公开方法和1个内部方法。
构造函数用来获取信息系统和内置方法及变量。
一个默认的abstract类应该是这样的:
<?php
abstract class test_controller_abstract extends controller
{
protected $app, $json, $template, $view, $config, $setting, $system, $_userid, $_username, $_groupid, $_roleid;
function __construct(& $app)
{
parent::__construct();
$this->app = $app;
$this->_userid = & $app->userid;
$this->_username = & $app->username;
$this->_groupid = & $app->groupid;
$this->_roleid = & $app->roleid;
$this->config = config::get('config');
$this->setting = setting::get($app->app);
$this->system = setting::get('system');
$this->json = & factory::json();
$array = array('_userid'=>$this->_userid, '_username'=>$this->_username, '_groupid'=>$this->_groupid, '_roleid'=>$this->_roleid);
if ($app->client === 'admin')
{
$this->view = & factory::view($app->app);
$this->view->assign('CONFIG', & $this->config);
$this->view->assign('SETTING', & $this->setting);
$this->view->assign('SYSTEM', & $this->system);
$this->view->assign($array);
}
$this->template = & factory::template($app->app);
$this->template->assign('CONFIG', & $this->config);
$this->template->assign('SETTING', & $this->setting);
$this->template->assign('SYSTEM', & $this->system);
$this->template->assign($array);
}
public function execute()
{
if ($this->action_exists($this->app->action))
{
$response = call_user_func_array(array($this, $this->app->action), $this->app->args);
}
else
{
$this->_action_not_defined($this->app->action);
}
return $response;
}
protected function _action_not_defined($action)
{
$this->showmessage("<font color='red'>$action</font> 动作不存在");
}
}
新建应用时,可以直接复制该代码保存为abstract.php,注意将其中的命名改为新应用的命名。
注:abstract类中至少应包含以上方法,可在该类中增加新的方法,但不能删除原有方法。
§ abstract类的使用
在App中编写控制器时,无论是前台控制器还是后台控制器都应继承自该类,如下:
class controller_index extends test_controller_abstract { }