Protected Member Functions | |
_construct () | |
_prepareLayout () |
Definition at line 35 of file Form.php.
_construct | ( | ) | [protected] |
Internal constructor, that is called from real constructor
Please override this one instead of overriding real __construct constructor
Please override this one instead of overriding real __construct constructor
Reimplemented from Mage_Core_Block_Abstract.
Definition at line 37 of file Form.php.
00038 { 00039 parent::_construct(); 00040 $this->setTemplate('sales/order/view/form.phtml'); 00041 }
_prepareLayout | ( | ) | [protected] |
Preparing global layout
You can redefine this method in child classes for changin layout
Reimplemented from Mage_Core_Block_Abstract.
Definition at line 43 of file Form.php.
00044 { 00045 $this->getLayout()->getBlock('head') 00046 ->addJs('mage/adminhtml/giftmessage.js'); 00047 00048 parent::_prepareLayout(); 00049 }