コード例 #1
0
ファイル: Product.php プロジェクト: cewolf2002/magento
 /**
  *  Check whether attribute reserved or not
  *
  *  @param Mage_Catalog_Model_Entity_Attribute $attribute Attribute model object
  *  @return boolean
  */
 public function isReservedAttribute($attribute)
 {
     return $attribute->getIsUserDefined() && in_array($attribute->getAttributeCode(), $this->getReservedAttributes());
 }