本文整理汇总了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);
}
示例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);
}
示例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);
}
示例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;
}
示例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;
}