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


PHP Zend_View_Interface::h方法代码示例

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


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

示例1: stringifyCall

 /**
  * Returns a readable version of a call in a stack trace (returned by Exception->getTrace())
  *
  * @param  Array single call in the call stack
  * @return string
  */
 public function stringifyCall($call)
 {
     $string = "{$this->relativizePath($call['file'])}({$call['line']}): ";
     if (isset($call['class'])) {
         $string .= "{$call['class']}{$call['type']}";
     }
     $string .= "{$call['function']}({$this->stringifyParameters($call)})";
     return $this->view->h($string);
 }
开发者ID:humansky,项目名称:qframe,代码行数:15,代码来源:ErrorHelpers.php

示例2: cryptoSelect

 /**
  * Generates a drop down box listing all crypto profiles
  *
  * @param  integer current crypto profile (or null if no current profile)
  * @param string element name
  * @return string
  */
 public function cryptoSelect($cryptoID, $name = 'cryptoID')
 {
     $options[0] = 'none';
     $cryptos = CryptoModel::getAllProfiles();
     foreach ($cryptos as $crypto) {
         $profileName = $this->view->h($crypto->name);
         if (!isset($options[$crypto->cryptoID])) {
             $options[$crypto->cryptoID] = $profileName;
         }
     }
     return $this->view->formSelect($name, $cryptoID, null, $options);
 }
开发者ID:humansky,项目名称:qframe,代码行数:19,代码来源:QuestionnairedataHelpers.php

示例3: instanceSelect

 /**
  * Generates a drop down box listing all instances that belong to the chosen instance
  *
  * @param  Array   list of all instances to which this user has access
  * @param  integer id of questionnaire that has been selected
  * @return string
  */
 public function instanceSelect($instances, $questionnaire, $name = 'instance', $instanceID = null)
 {
     if ($questionnaire === null) {
         $options[0] = 'Select a questionnaire';
     } else {
         $options[0] = ' ';
         foreach ($instances as $instance) {
             $questionnaireName = $this->view->h($instance->questionnaireName);
             $instanceName = $this->view->h($instance->instanceName);
             if ($instance->questionnaireID == $questionnaire) {
                 $options[$instance->instanceID] = $instanceName;
             }
         }
     }
     return $this->view->formSelect($name, $instanceID, null, $options);
 }
开发者ID:humansky,项目名称:qframe,代码行数:23,代码来源:RoleHelpers.php

示例4: remediationInfo

 /**
  * Return HTML for the remediation info box
  *
  * @param  ModelQuestionModel
  * @return string
  */
 public function remediationInfo(ModelQuestionModel $modelQuestion)
 {
     $class = 'remediationInfo';
     if ($modelQuestion->hasRemediationInfo()) {
         $class .= ' hasContent';
         $content = $this->view->h($modelQuestion->remediationInfo());
         $style = '';
         $mod = 1;
     } else {
         $style = 'display: none;';
         $content = 'Enter remediation information here';
         $mod = 0;
     }
     $remediationInfo = $this->view->formTextarea("response[{$modelQuestion->questionID}][remediationInfo]", $content, array('class' => $class, 'style' => $style));
     $remediationInfoMod = $this->view->formHidden("response[{$modelQuestion->questionID}][remediationInfoMod]", $mod);
     return $remediationInfo . $remediationInfoMod;
 }
开发者ID:humansky,项目名称:qframe,代码行数:23,代码来源:CompareHelpers.php

示例5: privateNote

 /**
  * Return HTML for the private notes box
  *
  * @param  ResponseModel response in queston
  * @return string
  */
 public function privateNote(ResponseModel $response)
 {
     $builder = new Tag_Builder();
     $class = 'privateNote';
     if ($response->hasPrivateNote()) {
         $class .= ' hasContent';
         $content = $this->view->h($response->privateNote);
         $style = '';
     } else {
         $style = 'display: none;';
         $content = 'Enter private notes here';
     }
     $privNote = "<br/>private notes:<br/>\n";
     $privNote .= $this->view->formTextarea("q{$response->parent->questionID}_privateNote", $content, array('class' => $class, 'style' => $style));
     $privNote = $builder->span(array('class' => 'privateNote_main', 'style' => $style), $privNote);
     $privNoteMod = $this->view->formHidden("q{$response->parent->questionID}_privateNote_mod", 0);
     return $privNote . $privNoteMod;
 }
开发者ID:humansky,项目名称:qframe,代码行数:24,代码来源:PageHelpers.php


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