*/ class Mage_Eav_Model_Entity_Store extends Mage_Core_Model_Abstract { /** * Resource initialization */ protected function _construct() { $this->_init('eav/entity_store'); } /** * Load entity by store * * @param int $entityTypeId * @param int $storeId * @return Mage_Eav_Model_Entity_Store */ public function loadByEntityStore($entityTypeId, $storeId) { $this->_getResource()->loadByEntityStore($this, $entityTypeId, $storeId); return $this; } }