*/ class Mage_Eav_Model_Entity_Attribute_Group extends Mage_Core_Model_Abstract { /** * Resource initialization */ protected function _construct() { $this->_init('eav/entity_attribute_group'); } /** * Checks if current attribute group exists * * @return boolean */ public function itemExists() { return $this->_getResource()->itemExists($this); } /** * Delete groups * * @return Mage_Eav_Model_Entity_Attribute_Group */ public function deleteGroups() { return $this->_getResource()->deleteGroups($this); } }