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


PHP Ethna_Controller::checkViewName方法代码示例

本文整理汇总了PHP中Ethna_Controller::checkViewName方法的典型用法代码示例。如果您正苦于以下问题:PHP Ethna_Controller::checkViewName方法的具体用法?PHP Ethna_Controller::checkViewName怎么用?PHP Ethna_Controller::checkViewName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Ethna_Controller的用法示例。


在下文中一共展示了Ethna_Controller::checkViewName方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: perform

 /**
  *  add view
  *
  *  @access public
  */
 function perform()
 {
     $r =& $this->_getopt(array('basedir=', 'skelfile=', 'template'));
     if (Ethna::isError($r)) {
         return $r;
     }
     list($opt_list, $arg_list) = $r;
     // view_name
     $view_name = array_shift($arg_list);
     if ($view_name == null) {
         return Ethna::raiseError('view name isn\'t set.', 'usage');
     }
     $r =& Ethna_Controller::checkViewName($view_name);
     if (Ethna::isError($r)) {
         return $r;
     }
     // add view
     $ret =& $this->_perform('View', $view_name, $opt_list);
     if (Ethna::isError($ret) || $ret === false) {
         return $ret;
     }
     // add template
     if (isset($opt_list['template'])) {
         $ret =& $this->_perform('Template', $view_name, $opt_list);
         if (Ethna::isError($ret) || $ret === false) {
             return $ret;
         }
     }
     return true;
 }
开发者ID:hiroki-namekawa,项目名称:test-upr,代码行数:35,代码来源:Ethna_Plugin_Handle_AddView.php

示例2: perform

 /**
  *  add view test
  *
  *  @access public
  */
 function perform()
 {
     $r =& $this->_getopt(array('basedir=', 'skelfile='));
     if (Ethna::isError($r)) {
         return $r;
     }
     list($opt_list, $arg_list) = $r;
     // view_name
     $view_name = array_shift($arg_list);
     if ($view_name == null) {
         return Ethna::raiseError('view name isn\'t set.', 'usage');
     }
     $r =& Ethna_Controller::checkViewName($view_name);
     if (Ethna::isError($r)) {
         return $r;
     }
     $ret =& $this->_perform('ViewTest', $view_name, $opt_list);
     return $ret;
 }
开发者ID:weiweiabc109,项目名称:test_project1,代码行数:24,代码来源:Ethna_Plugin_Handle_AddViewTest.php

示例3: perform

 /**
  *  add template 
  *
  *  @access public
  */
 function perform()
 {
     $r =& $this->_getopt(array('basedir=', 'skelfile='));
     if (Ethna::isError($r)) {
         return $r;
     }
     list($opt_list, $arg_list) = $r;
     // template
     $template = array_shift($arg_list);
     if ($template == null) {
         return Ethna::raiseError('template name isn\'t set.', 'usage');
     }
     $r =& Ethna_Controller::checkViewName($template);
     // XXX: use checkViewName().
     if (Ethna::isError($r)) {
         return $r;
     }
     // add template
     $ret =& $this->_perform('Template', $template, $opt_list);
     return $ret;
 }
开发者ID:hiroki-namekawa,项目名称:test-upr,代码行数:26,代码来源:Ethna_Plugin_Handle_AddTemplate.php

示例4: perform

 /**
  *  add view
  *
  *  @access public
  */
 function perform()
 {
     //
     //  '-w[with-unittest]' and '-u[unittestskel]' option
     //  are not intuisive, but I dare to define them because
     //  -t and -s option are reserved by add-[action|view] handle
     //  and Ethna_Getopt cannot interpret two-character option.
     //
     $r = $this->_getopt(array('basedir=', 'skelfile=', 'with-unittest', 'unittestskel=', 'template', 'locale=', 'encoding='));
     if (Ethna::isError($r)) {
         return $r;
     }
     list($opt_list, $arg_list) = $r;
     // view_name
     $view_name = array_shift($arg_list);
     if ($view_name == null) {
         return Ethna::raiseError('view name isn\'t set.', 'usage');
     }
     $r = Ethna_Controller::checkViewName($view_name);
     if (Ethna::isError($r)) {
         return $r;
     }
     // add view(invoke parent class method)
     $ret = $this->_perform('View', $view_name, $opt_list);
     if (Ethna::isError($ret) || $ret === false) {
         return $ret;
     }
     // add template
     if (isset($opt_list['template'])) {
         $ret = $this->_performTemplate($view_name, $opt_list);
         if (Ethna::isError($ret) || $ret === false) {
             return $ret;
         }
     }
     return true;
 }
开发者ID:hiroki-ta,项目名称:my.project,代码行数:41,代码来源:AddView.php


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