控制器(controller)

控制器存放路径:./__project__/class/controller

参见pc端的index控制器:./__project__/class/controller/foreground/Index.class.php

namespace controller\foreground;

class Index extends super\Superforeground
{
	function index()
	{

		htmlecho_page_title(\Prjconfig::project_config['project_name'],1);

		_skel();

	}

}

移动端控制器

因为框架同时有移动端的代码,会涉及到一个控制器(controller)和方法(action)的优先级问题

比如移动端访问:http://m.xxx.com/xxx/yyy

优先访问移动端的xxx控制器的yyy方法,如果没有,会访问pc端的xxx控制的yyy方法,如果都没有,会报错

移动端的index控制器参见:./__mobile__/class/controller/foreground/Index.class.php

控制器超类:

\controller\foreground\super\Superforeground 普通的控制器超类
\controller\foreground\super\Superforeground_clu 约定了必须用户登录才能访问
\controller\admin\super\Superadmin 后台的控制器超类