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


PHP AbstractElement::getLabelHtml方法代碼示例

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


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

示例1: render

 /**
  * Output the region element and javasctipt that makes it dependent from country element
  *
  * @param \Magento\Framework\Data\Form\Element\AbstractElement $element
  * @return string
  *
  * @SuppressWarnings(PHPMD.UnusedLocalVariable)
  */
 public function render(\Magento\Framework\Data\Form\Element\AbstractElement $element)
 {
     if ($country = $element->getForm()->getElement('country_id')) {
         $countryId = $country->getValue();
     } else {
         return $element->getDefaultHtml();
     }
     $regionId = $element->getForm()->getElement('region_id')->getValue();
     $html = '<div class="field field-state required">';
     $element->setClass('input-text');
     $element->setRequired(true);
     $html .= $element->getLabelHtml() . '<div class="control">';
     $html .= $element->getElementHtml();
     $selectName = str_replace('region', 'region_id', $element->getName());
     $selectId = $element->getHtmlId() . '_id';
     $html .= '<select id="' . $selectId . '" name="' . $selectName . '" class="select required-entry" style="display:none">';
     $html .= '<option value="">' . __('Please select') . '</option>';
     $html .= '</select>';
     $html .= '<script>' . "\n";
     $html .= 'require(["prototype", "mage/adminhtml/form"], function(){';
     $html .= '$("' . $selectId . '").setAttribute("defaultValue", "' . $regionId . '");' . "\n";
     $html .= 'new regionUpdater("' . $country->getHtmlId() . '", "' . $element->getHtmlId() . '", "' . $selectId . '", ' . $this->_directoryHelper->getRegionJson() . ');' . "\n";
     $html .= '});';
     $html .= '</script>' . "\n";
     $html .= '</div></div>' . "\n";
     return $html;
 }
開發者ID:shabbirvividads,項目名稱:magento2,代碼行數:35,代碼來源:Region.php

示例2: testGetLabelHtml

 /**
  * @param array $initialData
  * @param string $expectedValue
  * @dataProvider getLabelHtmlDataProvider
  * @covers \Magento\Framework\Data\Form\Element\AbstractElement::getLabelHtml()
  */
 public function testGetLabelHtml(array $initialData, $expectedValue)
 {
     $idSuffix = isset($initialData['id_suffix']) ? $initialData['id_suffix'] : null;
     $this->_model->setData($initialData);
     $this->_model->setForm($this->getMock('Magento\\Framework\\Data\\Form\\AbstractForm', [], [], '', false));
     $this->assertEquals($expectedValue, $this->_model->getLabelHtml($idSuffix));
 }
開發者ID:,項目名稱:,代碼行數:13,代碼來源:

示例3: render

 /**
  * @param AbstractElement $element
  * @return string
  */
 public function render(AbstractElement $element)
 {
     $html = '<div class="field field-' . $element->getHtmlId() . '">';
     $html .= $element->getLabelHtml();
     $html .= '<div class="control">' . $element->getElementHtml();
     $html .= '<div class="nested">';
     $html .= '<div class="field choice">';
     $html .= '<label for="account-send-pass" class="addbefore"><span>' . __('or ') . '</span></label>';
     $html .= '<input type="checkbox" id="account-send-pass" name="' . $element->getName() . '" value="auto" onclick="setElementDisable(\'' . $element->getHtmlId() . '\', this.checked)" />';
     $html .= '<label class="label" for="account-send-pass"><span>' . __(' Send auto-generated password') . '</span></label>';
     $html .= '</div>' . "\n";
     $html .= '</div>' . "\n";
     $html .= '</div>' . "\n";
     $html .= '</div>' . "\n";
     return $html;
 }
開發者ID:aiesh,項目名稱:magento2,代碼行數:20,代碼來源:Newpass.php

示例4: getLabelHtml

 /**
  * @param int $suffix
  * @return string
  */
 public function getLabelHtml($suffix = 0)
 {
     return parent::getLabelHtml($suffix);
 }
開發者ID:pradeep-wagento,項目名稱:magento2,代碼行數:8,代碼來源:Multiline.php

示例5: getLabelHtml

 /**
  * @param int $suffix
  * @param string $scopeLabel
  * @return string
  */
 public function getLabelHtml($suffix = 0, $scopeLabel = '')
 {
     return parent::getLabelHtml($suffix, $scopeLabel);
 }
開發者ID:BlackIkeEagle,項目名稱:magento2-continuousphp,代碼行數:9,代碼來源:Multiline.php


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