Exception: FLEA_Exception_MissingAction
Message: Controller method "anli::work()" is missing.
Filename: /data/wwwroot/unifythink.com/LIBS/FLEA/FLEA/Dispatcher/Simple.php [77]
#3 FLEA_Dispatcher_Simple::_executeAction('anli', 'work', 'Controller_anli')
ARGS:
Array
(
[0] => anli
[1] => work
[2] => Controller_anli
)
SOURCE CODE:
67 |
|
68 |
/**
|
69 |
* 從請求中分析 Controller、Action 和 Package 名字,然后執行指定的 Action 方法
|
70 |
*
|
71 |
* @return mixed
|
72 |
*/
|
73 |
function dispatching()
|
74 |
{
|
75 |
$controllerName = $this->getControllerName();
|
76 |
$actionName = $this->getActionName();
|
77 |
return $this->_executeAction($controllerName, $actionName, $this->getControllerClass($controllerName));
|
78 |
}
|
79 |
|
80 |
/**
|
81 |
* 執行指定的 Action 方法
|
82 |
*
|
83 |
* @param string $controllerName
|
84 |
* @param string $actionName
|
85 |
* @param string $controllerClass
|
86 |
*
|
87 |
* @return mixed
|
Filename: /data/wwwroot/unifythink.com/LIBS/FLEA/FLEA.php [816]
#2 FLEA_Dispatcher_Simple::dispatching()
ARGS:
Array
(
)
SOURCE CODE:
806 |
require_once($MVCPackageFilename);
|
807 |
}
|
808 |
FLEA::init();
|
809 |
|
810 |
// 載入調度器并轉發請求到控制器
|
811 |
$dispatcherClass = FLEA::getAppInf('dispatcher');
|
812 |
FLEA::loadClass($dispatcherClass);
|
813 |
|
814 |
$dispatcher =& new $dispatcherClass($_GET);
|
815 |
FLEA::register($dispatcher, $dispatcherClass);
|
816 |
$dispatcher->dispatching();
|
817 |
}
|
818 |
|
819 |
/**
|
820 |
* 準備運行環境
|
821 |
*
|
822 |
* @param boolean $loadMVC
|
823 |
*/
|
824 |
function init($loadMVC = false)
|
825 |
{
|
826 |
static $firstTime = true;
|
Filename: /data/wwwroot/unifythink.com/index.php [115]
#1 FLEA::runMVC()
ARGS:
Array
(
)
SOURCE CODE:
105 |
|
106 |
'defaultLanguage' => $Slang,
|
107 |
'autoLoadLanguage' =>array('lang'),
|
108 |
'webControlsExtendsDir'=>ROOT."/LIBS/Webcontrols",
|
109 |
'urlParameterPairStyle' => '/',
|
110 |
);
|
111 |
FLEA::loadAppInf($appinf);
|
112 |
FLEA::setAppInf('autoLoad',array('FLEA_Helper_Array','FLEA_Language'));
|
113 |
$common=&FLEA::getSingleton('Common');
|
114 |
FLEA::setAppInf('displayErrors',true);
|
115 |
FLEA::runMVC();
|
116 |
?> |