*/ class Mage_Downloadable_Block_Adminhtml_Sales_Items_Column_Downloadable_Name extends Mage_Adminhtml_Block_Sales_Items_Column_Name { protected $_purchased = null; public function getLinks() { $this->_purchased = Mage::getModel('downloadable/link_purchased') ->load($this->getItem()->getOrder()->getId(), 'order_id'); $purchasedItem = Mage::getModel('downloadable/link_purchased_item')->getCollection() ->addFieldToFilter('order_item_id', $this->getItem()->getId()); $this->_purchased->setPurchasedItems($purchasedItem); return $this->_purchased; } public function getLinksTitle() { if ($this->_purchased && $this->_purchased->getLinkSectionTitle()) { return $this->_purchased->getLinkSectionTitle(); } return Mage::getStoreConfig(Mage_Downloadable_Model_Link::XML_PATH_LINKS_TITLE); } } ?>