本文整理汇总了PHP中Cake\Controller\Controller::invokeAction方法的典型用法代码示例。如果您正苦于以下问题:PHP Controller::invokeAction方法的具体用法?PHP Controller::invokeAction怎么用?PHP Controller::invokeAction使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cake\Controller\Controller
的用法示例。
在下文中一共展示了Controller::invokeAction方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _invoke
protected function _invoke(Controller $controller)
{
$result = $controller->startupProcess();
if ($result instanceof Response) {
return $result;
}
$response = $controller->invokeAction();
if ($response !== null && !$response instanceof Response) {
throw new LogicException('Controller actions can only Cake\\Network\\Response instances');
}
if (!$response && $controller->autoRender) {
$response = $controller->render();
} elseif (!$response) {
$response = $controller->response;
}
$result = $controller->shutdownProcess();
if ($result instanceof Response) {
return $result;
}
return $response;
}
示例2: _invoke
/**
* Invoke a controller's action and wrapping methods.
*
* @param \Cake\Controller\Controller $controller The controller to invoke.
* @return \Cake\Network\Response The response
* @throws \LogicException If the controller action returns a non-response value.
*/
protected function _invoke(Controller $controller)
{
$this->dispatchEvent('Dispatcher.invokeController', ['controller' => $controller]);
$result = $controller->startupProcess();
if ($result instanceof Response) {
return $result;
}
$response = $controller->invokeAction();
if ($response !== null && !$response instanceof Response) {
throw new LogicException('Controller actions can only return Cake\\Network\\Response or null.');
}
if (!$response && $controller->autoRender) {
$response = $controller->render();
} elseif (!$response) {
$response = $controller->response;
}
$result = $controller->shutdownProcess();
if ($result instanceof Response) {
return $result;
}
return $response;
}
示例3: _invoke
/**
* Initializes the components and models a controller will be using.
* Triggers the controller action and invokes the rendering if Controller::$autoRender
* is true. If a response object is returned by controller action that is returned
* else controller's $response property is returned.
*
* @param Controller $controller Controller to invoke
* @return \Cake\Network\Response The resulting response object
* @throws \Cake\Error\Exception If data returned by controller action is not an
* instance of Response
*/
protected function _invoke(Controller $controller)
{
$controller->constructClasses();
$result = $controller->startupProcess();
if ($result instanceof Response) {
return $result;
}
$response = $controller->invokeAction();
if ($response !== null && !$response instanceof Response) {
throw new Exception('Controller action can only return an instance of Response');
}
if (!$response && $controller->autoRender) {
$response = $controller->render();
} elseif (!$response) {
$response = $controller->response;
}
$result = $controller->shutdownProcess();
if ($result instanceof Response) {
return $result;
}
return $response;
}