File: /www/wwwroot/www.vcbgq.com/core/library/think/behavior/admin/CoreProgramBehavior.php
<?php
namespace think\behavior\admin;
/**
* 系统行为扩展:
*/
class CoreProgramBehavior {
protected static $actionName;
protected static $controllerName;
protected static $moduleName;
/**
* 构造方法
* @param Request $request Request对象
* @access public
*/
public function __construct()
{
}
// 行为扩展的执行入口必须是run
public function run(&$params){
self::$actionName = request()->action();
self::$controllerName = request()->controller();
self::$moduleName = request()->module();
$this->_initialize();
}
protected function _initialize() {
}
}