示例#1
0
 /**
  * Check whether the attribute is Applicable to the object
  *
  * @param Varien_Object $object
  * @param Mage_Catalog_Model_Resource_Eav_Attribute $attribute
  * @return boolean
  */
 protected function _isApplicableAttribute($object, $attribute)
 {
     $applyTo = $attribute->getApplyTo();
     return (count($applyTo) == 0 || in_array($object->getTypeId(), $applyTo)) && $attribute->isInSet($object->getAttributeSetId());
 }