*/ class Mage_Sales_Block_Guest_Links extends Mage_Page_Block_Template_Links_Block { /** * Set link title, label and url */ public function __construct() { if (!Mage::getSingleton('customer/session')->isLoggedIn()) { parent::__construct(); $this->_label = $this->__('Orders and Returns'); $this->_title = $this->__('Orders and Returns'); $this->_url = $this->getUrl('sales/guest/form'); } } }