當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。