Public Member Functions | |
__construct () | |
canDisplay () | |
canRemoveItems () | |
getHeaderText () |
Definition at line 34 of file Viewed.php.
__construct | ( | ) |
Constructor
By default is looking for first argument as array and assignes it as object attributes This behaviour may change in child classes
Reimplemented from Varien_Object.
Definition at line 37 of file Viewed.php.
00038 { 00039 parent::__construct(); 00040 $this->setId('sales_order_create_sidebar_viewed'); 00041 $this->setDataId('viewed'); 00042 }
canDisplay | ( | ) |
Retrieve display block availability
Reimplemented from Mage_Adminhtml_Block_Sales_Order_Create_Sidebar_Abstract.
Definition at line 49 of file Viewed.php.
canRemoveItems | ( | ) |
Retrieve availability removing items in block
Reimplemented from Mage_Adminhtml_Block_Sales_Order_Create_Sidebar_Abstract.
Definition at line 59 of file Viewed.php.
getHeaderText | ( | ) |
Definition at line 64 of file Viewed.php.
00065 { 00066 return Mage::helper('sales')->__('Recently Viewed'); 00067 }