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


PHP AbstractElement::setValues方法代碼示例

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


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

示例1: testAddElementValues

 /**
  * @param array $initialData
  * @param string $expectedValue
  * @dataProvider addElementValuesDataProvider
  * @covers \Magento\Framework\Data\Form\Element\AbstractElement::addElementValues()
  */
 public function testAddElementValues(array $initialData, $expectedValue)
 {
     $this->_escaperMock->expects($this->any())->method('escapeHtml')->will($this->returnArgument(0));
     $this->_model->setValues($initialData['initial_values']);
     $this->_model->addElementValues($initialData['add_values'], $initialData['overwrite']);
     $this->assertEquals($expectedValue, $this->_model->getValues());
 }
開發者ID:,項目名稱:,代碼行數:13,代碼來源:

示例2: _getElementHtml

 protected function _getElementHtml(\Magento\Framework\Data\Form\Element\AbstractElement $element)
 {
     $element->setValue(0);
     $element->setDisabled('disabled');
     $element->setValues([['label' => __('Disabled - Coming Soon...'), 'value' => '0']]);
     return $element->getElementHtml();
 }
開發者ID:Doability,項目名稱:magento2dev,代碼行數:7,代碼來源:Field.php

示例3: _applyTypeSpecificConfigCustomer

 /**
  * Apply configuration specific for different element type
  *
  * @param string $inputType
  * @param \Magento\Framework\Data\Form\Element\AbstractElement $element
  * @param AttributeMetadataInterface $attribute
  * @return void
  */
 protected function _applyTypeSpecificConfigCustomer($inputType, $element, AttributeMetadataInterface $attribute)
 {
     switch ($inputType) {
         case 'select':
             $element->setValues($this->_getAttributeOptionsArray($attribute));
             break;
         case 'multiselect':
             $element->setValues($this->_getAttributeOptionsArray($attribute));
             $element->setCanBeEmpty(true);
             break;
         case 'date':
             $element->setDateFormat($this->_localeDate->getDateFormatWithLongYear());
             break;
         case 'multiline':
             $element->setLineCount($attribute->getMultilineCount());
             break;
         default:
             break;
     }
 }
開發者ID:kidaa30,項目名稱:magento2-platformsh,代碼行數:28,代碼來源:GenericMetadata.php

示例4: _applyTypeSpecificConfigCustomer

 /**
  * Apply configuration specific for different element type
  *
  * @param string $inputType
  * @param \Magento\Framework\Data\Form\Element\AbstractElement $element
  * @param \Magento\Customer\Service\V1\Data\Eav\AttributeMetadata $attribute
  * @return void
  */
 protected function _applyTypeSpecificConfigCustomer($inputType, $element, \Magento\Customer\Service\V1\Data\Eav\AttributeMetadata $attribute)
 {
     switch ($inputType) {
         case 'select':
             $element->setValues($this->_getAttributeOptionsArray($attribute));
             break;
         case 'multiselect':
             $element->setValues($this->_getAttributeOptionsArray($attribute));
             $element->setCanBeEmpty(true);
             break;
         case 'date':
             $element->setImage($this->getViewFileUrl('images/grid-cal.gif'));
             $element->setDateFormat($this->_localeDate->getDateFormatWithLongYear());
             break;
         case 'multiline':
             $element->setLineCount($attribute->getMultilineCount());
             break;
         default:
             break;
     }
 }
開發者ID:aiesh,項目名稱:magento2,代碼行數:29,代碼來源:GenericMetadata.php

示例5: _getElementHtml

 /**
  * @param AbstractElement $element
  * @return string
  * @SuppressWarnings(PHPMD.NPathComplexity)
  */
 protected function _getElementHtml(AbstractElement $element)
 {
     $_options = ['d' => __('Day'), 'm' => __('Month'), 'y' => __('Year')];
     $element->setValues($_options)->setClass('select-date')->setName($element->getName() . '[]');
     if ($element->getValue()) {
         $values = explode(',', $element->getValue());
     } else {
         $values = [];
     }
     $_parts = [];
     $_parts[] = $element->setValue(isset($values[0]) ? $values[0] : null)->getElementHtml();
     $_parts[] = $element->setValue(isset($values[1]) ? $values[1] : null)->getElementHtml();
     $_parts[] = $element->setValue(isset($values[2]) ? $values[2] : null)->getElementHtml();
     return implode(' <span>/</span> ', $_parts);
 }
開發者ID:kidaa30,項目名稱:magento2-platformsh,代碼行數:20,代碼來源:DateFieldsOrder.php

示例6: _applyTypeSpecificConfig

 /**
  * Apply configuration specific for different element type
  *
  * @param string $inputType
  * @param \Magento\Framework\Data\Form\Element\AbstractElement $element
  * @param \Magento\Eav\Model\Entity\Attribute $attribute
  * @return void
  */
 protected function _applyTypeSpecificConfig($inputType, $element, \Magento\Eav\Model\Entity\Attribute $attribute)
 {
     switch ($inputType) {
         case 'select':
             $element->setValues($attribute->getSource()->getAllOptions(true, true));
             break;
         case 'multiselect':
             $element->setValues($attribute->getSource()->getAllOptions(false, true));
             $element->setCanBeEmpty(true);
             break;
         case 'date':
             $element->setDateFormat($this->_localeDate->getDateFormatWithLongYear());
             break;
         case 'multiline':
             $element->setLineCount($attribute->getMultilineCount());
             break;
         default:
             break;
     }
 }
開發者ID:kidaa30,項目名稱:magento2-platformsh,代碼行數:28,代碼來源:Form.php


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