本文整理汇总了PHP中Ethna_Controller::getActionClassName方法的典型用法代码示例。如果您正苦于以下问题:PHP Ethna_Controller::getActionClassName方法的具体用法?PHP Ethna_Controller::getActionClassName怎么用?PHP Ethna_Controller::getActionClassName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Ethna_Controller
的用法示例。
在下文中一共展示了Ethna_Controller::getActionClassName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: perform
/**
* バックエンド処理を実行する
*
* @access public
* @param string $action_name 実行するアクションの名称
* @return mixed (string):Forward名(nullならforwardしない) Ethna_Error:エラー
*/
public function perform($action_name)
{
$forward_name = null;
$action_class_name = $this->controller->getActionClassName($action_name);
$this->action_class = new $action_class_name($this);
$this->ac = $this->action_class;
// アクションの実行
$forward_name = $this->ac->authenticate();
if ($forward_name === false) {
return null;
} else {
if ($forward_name !== null) {
return $forward_name;
}
}
$forward_name = $this->ac->prepare();
if ($forward_name === false) {
return null;
} else {
if ($forward_name !== null) {
return $forward_name;
}
}
$forward_name = $this->ac->perform();
return $forward_name;
}
示例2: testPerform
public function testPerform()
{
$this->controller->getActionClassName("test")->willReturn("Ethna_Mock_ActionClass");
$backend = new Ethna_Mock_Backend($this->controller->reveal());
$this->assertEquals("index", $backend->perform("test"), "backend returns correct forward name");
}