Public Attributes | |
const | MODULE_NAME = 'Mage_Catalog' |
Protected Member Functions | |
_beforeSave () | |
_afterSave () | |
Protected Attributes | |
$_eventPrefix = 'catalog_entity_attribute' | |
$_eventObject = 'attribute' |
Definition at line 32 of file Attribute.php.
_afterSave | ( | ) | [protected] |
Processing object after save data
Fix saving attribute in admin
Reimplemented from Mage_Eav_Model_Entity_Attribute.
Definition at line 54 of file Attribute.php.
00055 { 00056 /** 00057 * Fix saving attribute in admin 00058 */ 00059 Mage::getSingleton('eav/config')->clear(); 00060 return parent::_afterSave(); 00061 }
_beforeSave | ( | ) | [protected] |
Processing object before save data
Reimplemented from Mage_Eav_Model_Entity_Attribute.
Definition at line 43 of file Attribute.php.
00044 { 00045 $this->setData('modulePrefix', self::MODULE_NAME); 00046 return parent::_beforeSave(); 00047 }
$_eventObject = 'attribute' [protected] |
$_eventPrefix = 'catalog_entity_attribute' [protected] |
const MODULE_NAME = 'Mage_Catalog' |
Definition at line 36 of file Attribute.php.