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


PHP HTML_QuickForm_element::getLabelFor方法代码示例

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


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

示例1: _prepareTemplate

 /**
  * Helper method for renderElement
  *
  * @param    HTML_QuickForm_element $element
  * @param    bool        Whether an element is required
  * @param    string      $required Error message associated with the element
  * @param    string      $error Label for ID
  * @access   private
  * @see      renderElement()
  * @return   string      Html for element
  */
 private function _prepareTemplate(HTML_QuickForm_element $element, $required, $error)
 {
     $name = $element->getName();
     $label = $element->getLabel();
     $labelForId = $element->getLabelFor();
     $icon = $element->getIconToHtml();
     if (is_array($label)) {
         $nameLabel = array_shift($label);
     } else {
         $nameLabel = $label;
     }
     $labelFor = !empty($labelForId) ? 'for="' . $labelForId . '"' : '';
     if (isset($this->_templates[$name])) {
         // Custom template
         $html = str_replace('{label}', $nameLabel, $this->_templates[$name]);
     } else {
         $customElementTemplate = $this->getCustomElementTemplate();
         if (empty($customElementTemplate)) {
             if (method_exists($element, 'getTemplate')) {
                 $template = $element->getTemplate($this->getForm()->getLayout());
             } else {
                 $template = $this->getForm()->getDefaultElementTemplate();
             }
         } else {
             $template = $customElementTemplate;
         }
         $html = str_replace('{label}', $nameLabel, $template);
     }
     $html = str_replace('{label-for}', $labelFor, $html);
     $html = str_replace('{icon}', $icon, $html);
     if ($required) {
         $html = str_replace('<!-- BEGIN required -->', '', $html);
         $html = str_replace('<!-- END required -->', '', $html);
     } else {
         $html = preg_replace("/([ \t\n\r]*)?<!-- BEGIN required -->.*<!-- END required -->([ \t\n\r]*)?/isU", '', $html);
     }
     if (isset($error)) {
         $html = str_replace('{error}', $error, $html);
         $html = str_replace('{error_class}', 'error has-error', $html);
         $html = str_replace('<!-- BEGIN error -->', '', $html);
         $html = str_replace('<!-- END error -->', '', $html);
     } else {
         $html = str_replace('{error_class}', '', $html);
         $html = preg_replace("/([ \t\n\r]*)?<!-- BEGIN error -->.*<!-- END error -->([ \t\n\r]*)?/isU", '', $html);
     }
     if (is_array($label)) {
         foreach ($label as $key => $text) {
             $key = is_int($key) ? $key + 2 : $key;
             $html = str_replace("{label_{$key}}", $text, $html);
             $html = str_replace("<!-- BEGIN label_{$key} -->", '', $html);
             $html = str_replace("<!-- END label_{$key} -->", '', $html);
         }
     }
     if (strpos($html, '{label_')) {
         $html = preg_replace('/\\s*<!-- BEGIN label_(\\S+) -->.*<!-- END label_\\1 -->\\s*/is', '', $html);
     }
     return $html;
 }
开发者ID:KRCM13,项目名称:chamilo-lms,代码行数:69,代码来源:Default.php


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