當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Element::getLabel方法代碼示例

本文整理匯總了PHP中Zend\Form\Element::getLabel方法的典型用法代碼示例。如果您正苦於以下問題:PHP Element::getLabel方法的具體用法?PHP Element::getLabel怎麽用?PHP Element::getLabel使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend\Form\Element的用法示例。


在下文中一共展示了Element::getLabel方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __invoke

 /**
  * Outputs message depending on flag
  *
  * @return string
  */
 public function __invoke(Element $element)
 {
     $element->setLabelAttributes(array('class' => 'control-label'));
     $element->setAttribute('data-placement', 'bottom')->setAttribute('data-content', $element->getOption('description'));
     if (!$element->getLabel()) {
         $element->setLabel('öö');
     }
     $output = '<div class="control-group">';
     $output .= $this->getView()->formLabel($element);
     $output .= '<div class="controls">';
     $output .= $this->getView()->formElement($element);
     if ($element->getOption('description')) {
         $output .= '<div class="description">' . $element->getOption('description') . '</div>';
     }
     if ($element->getMessages()) {
         $output .= '<div class="alert alert-error">' . $this->getView()->formElementErrors($element) . '</div>';
     }
     $output .= '</div>';
     $output .= '</div>';
     return $output;
 }
開發者ID:krsreenatha,項目名稱:php.ug,代碼行數:26,代碼來源:TBElement.php

示例2: renderLabel

 /**
  * Render element label
  *
  * @param  \Zend\Form\Element $element
  * @param  \Zend\View\Renderer $view
  * @return string
  */
 public function renderLabel(Form\Element $element, View $view)
 {
     $label = $element->getLabel();
     if (empty($label)) {
         $label = $element->getName();
     }
     return $this->getMarkupElementLabelStart() . $view->vars()->escape($label) . $this->getMarkupElementLabelEnd();
 }
開發者ID:rafalwrzeszcz,項目名稱:zf2,代碼行數:15,代碼來源:FormErrors.php

示例3: getValue

 /**
  * Get value
  *
  * If element type is one of the button types, returns the label.
  *
  * @param  \Zend\Form\Element $element
  * @return string|null
  */
 public function getValue($element)
 {
     if (!$element instanceof Element) {
         return null;
     }
     foreach ($this->_buttonTypes as $type) {
         if ($element instanceof $type) {
             if (stristr($type, 'button')) {
                 $element->content = $element->getLabel();
                 return null;
             }
             return $element->getLabel();
         }
     }
     return $element->getValue();
 }
開發者ID:bradley-holt,項目名稱:zf2,代碼行數:24,代碼來源:ViewHelper.php

示例4: testPassingConfigObjectToConstructorSetsObjectState

 public function testPassingConfigObjectToConstructorSetsObjectState()
 {
     $config = new Config($this->getOptions());
     $element = new Element($config);
     $this->assertEquals('changed', $element->getName());
     $this->assertEquals('foo', $element->getValue());
     $this->assertEquals('bar', $element->getLabel());
     $this->assertEquals(50, $element->getOrder());
     $this->assertFalse($element->isRequired());
     $this->assertEquals('bar', $element->foo);
     $this->assertEquals('bat', $element->baz);
 }
開發者ID:bradley-holt,項目名稱:zf2,代碼行數:12,代碼來源:ElementTest.php

示例5: getLabel

 /**
  * @inheritdoc
  */
 public function getLabel()
 {
     return $this->element->getLabel();
 }
開發者ID:adacap,項目名稱:3agest-prototype,代碼行數:7,代碼來源:Element.php

示例6: getElement

 /**
  * @param Zend\Form\Element $element
  *
  * @return string
  */
 protected function getElement(Element $element)
 {
     $element->setLabelAttributes(array('class' => 'control-label col-sm-2'));
     $element->setAttribute('data-placement', 'bottom')->setAttribute('class', 'form-control')->setAttribute('data-content', $element->getOption('description'))->setAttribute('data-trigger', 'focus');
     if (!$element->getLabel()) {
         $element->setLabel('öö');
     }
     $output = sprintf('<div class="form-group%1$s">', $element->getMEssages() && !$element instanceof \Zend\Form\Element\Collection ? ' has-error' : '');
     $output .= $this->getView()->formLabel($element);
     $output .= '<div class="col-sm-10">';
     if ($element->getMessages() && !$element instanceof \Zend\Form\Element\Collection) {
         $output .= sprintf('<div class="input-group"><span data-toggle="tooltip" data-placement="bottom" class="input-group-addon" data-html="true" title="%1$s"><i class="fa-warning fa"></i></span>', $this->getView()->formElementErrors($element));
     }
     if ($element instanceof \Zend\Form\Element\Collection) {
         $output .= $this->getView()->formCollection($element);
     } else {
         $output .= $this->getView()->formElement($element);
     }
     if ($element->getMessages()) {
         $output .= '</div>';
     }
     $output .= '</div>';
     $output .= '</div>';
     return $output;
 }
開發者ID:krsreenatha,項目名稱:php.ug,代碼行數:30,代碼來源:ShowForm.php

示例7: createLabel

 public function createLabel(Element $form, $attr = array())
 {
     return '<legend>' . $form->getLabel() . '</legend>';
 }
開發者ID:siad007,項目名稱:ctrllib,代碼行數:4,代碼來源:CtrlForm.php


注:本文中的Zend\Form\Element::getLabel方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。