*/ class Mage_Downloadable_Model_Resource_Link_Purchased_Collection extends Mage_Core_Model_Resource_Db_Collection_Abstract { /** * Init resource model * */ protected function _construct() { $this->_init('downloadable/link_purchased'); } /** * Add purchased items to collection * * @return Mage_Downloadable_Model_Resource_Link_Purchased_Collection */ public function addPurchasedItemsToResult() { $this->getSelect() ->join(array('pi'=>$this->getTable('downloadable/link_purchased_item')), 'pi.purchased_id=main_table.purchased_id'); return $this; } }