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


PHP misc::setTemplate方法代码示例

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


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

示例1: setViewSubpart

 /**
  * Sets the template of the view.
  *
  * @param int The current step
  * @return void
  */
 protected function setViewSubpart($step)
 {
     $this->finished = FALSE;
     if (intval($this->utilityFuncs->getSingle($this->settings, 'skipView')) === 1) {
         $this->finished = TRUE;
     } elseif (strstr($this->templateFile, '###TEMPLATE_FORM' . $step . $this->settings['templateSuffix'] . '###')) {
         // search for ###TEMPLATE_FORM[step][suffix]###
         $this->utilityFuncs->debugMessage('using_subpart', array('###TEMPLATE_FORM' . $step . $this->settings['templateSuffix'] . '###'));
         $this->view->setTemplate($this->templateFile, 'FORM' . $step . $this->settings['templateSuffix']);
     } elseif (!isset($this->settings['templateSuffix']) && strstr($this->templateFile, '###TEMPLATE_FORM' . $step . '###')) {
         //search for ###TEMPLATE_FORM[step]###
         $this->utilityFuncs->debugMessage('using_subpart', array('###TEMPLATE_FORM' . $step . '###'));
         $this->view->setTemplate($this->templateFile, 'FORM' . $step);
     } elseif (intval($step) === intval($this->globals->getSession()->get('lastStep')) + 1) {
         $this->finished = TRUE;
     }
 }
开发者ID:woehrlag,项目名称:new.woehrl.de,代码行数:23,代码来源:Tx_Formhandler_Controller_Form.php

示例2: setViewSubpart

 /**
  * Sets the template of the view.
  *
  * @return void
  * @author	Reinhard Führicht <rf@typoheads.at>
  */
 protected function setViewSubpart($step)
 {
     $this->finished = FALSE;
     if (intval($this->settings['skipView']) === 1) {
         $this->finished = TRUE;
     } elseif (strstr($this->templateFile, '###TEMPLATE_FORM' . $step . $this->settings['templateSuffix'] . '###')) {
         // search for ###TEMPLATE_FORM[step][suffix]###
         Tx_Formhandler_StaticFuncs::debugMessage('using_subpart', array('###TEMPLATE_FORM' . $step . $this->settings['templateSuffix'] . '###'));
         $this->view->setTemplate($this->templateFile, 'FORM' . $step . $this->settings['templateSuffix']);
     } elseif (!isset($this->settings['templateSuffix']) && strstr($this->templateFile, '###TEMPLATE_FORM' . $step . '###')) {
         //search for ###TEMPLATE_FORM[step]###
         Tx_Formhandler_StaticFuncs::debugMessage('using_subpart', array('###TEMPLATE_FORM' . $step . '###'));
         $this->view->setTemplate($this->templateFile, 'FORM' . $step);
     } elseif (intval($step) === intval(Tx_Formhandler_Globals::$session->get('lastStep')) + 1) {
         $this->finished = TRUE;
     }
 }
开发者ID:NaveedWebdeveloper,项目名称:Test,代码行数:23,代码来源:Tx_Formhandler_Controller_Form.php


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