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


PHP AbstractAttribute::isStatic方法代碼示例

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


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

示例1: addAttribute

 /**
  * Adding attribute to entity
  *
  * @param AbstractAttribute $attribute
  * @return $this
  */
 public function addAttribute(AbstractAttribute $attribute)
 {
     $attribute->setEntity($this);
     $attributeCode = $attribute->getAttributeCode();
     $this->_attributesByCode[$attributeCode] = $attribute;
     if ($attribute->isStatic()) {
         $this->_staticAttributes[$attributeCode] = $attribute;
     } else {
         $this->_attributesByTable[$attribute->getBackendTable()][$attributeCode] = $attribute;
     }
     return $this;
 }
開發者ID:aiesh,項目名稱:magento2,代碼行數:18,代碼來源:AbstractEntity.php

示例2: getAttributeType

 /**
  * Get attribute type for upcoming validation.
  *
  * @param \Magento\Eav\Model\Entity\Attribute\AbstractAttribute|\Magento\Eav\Model\Entity\Attribute $attribute
  * @return string
  */
 public static function getAttributeType(\Magento\Eav\Model\Entity\Attribute\AbstractAttribute $attribute)
 {
     $frontendInput = $attribute->getFrontendInput();
     if ($attribute->usesSource() && in_array($frontendInput, ['select', 'multiselect', 'boolean'])) {
         return $frontendInput;
     } elseif ($attribute->isStatic()) {
         return $frontendInput == 'date' ? 'datetime' : 'varchar';
     } else {
         return $attribute->getBackendType();
     }
 }
開發者ID:pradeep-wagento,項目名稱:magento2,代碼行數:17,代碼來源:Import.php

示例3: getAttributeType

 /**
  * Get attribute type for upcoming validation.
  *
  * @param \Magento\Eav\Model\Entity\Attribute\AbstractAttribute|\Magento\Eav\Model\Entity\Attribute $attribute
  * @return string
  */
 public static function getAttributeType(\Magento\Eav\Model\Entity\Attribute\AbstractAttribute $attribute)
 {
     if ($attribute->usesSource()) {
         return $attribute->getFrontendInput() == 'multiselect' ? 'multiselect' : 'select';
     } elseif ($attribute->isStatic()) {
         return $attribute->getFrontendInput() == 'date' ? 'datetime' : 'varchar';
     } else {
         return $attribute->getBackendType();
     }
 }
開發者ID:opexsw,項目名稱:magento2,代碼行數:16,代碼來源:Import.php


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