当前位置: 首页>>代码示例>>PHP>>正文


PHP Ethna_Controller::getActionClassName方法代码示例

本文整理汇总了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;
 }
开发者ID:t-f-m,项目名称:ethna,代码行数:33,代码来源:Backend.php

示例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");
 }
开发者ID:t-f-m,项目名称:ethna,代码行数:6,代码来源:BackendTest.php


注:本文中的Ethna_Controller::getActionClassName方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。