Public Member Functions | |
isShow () | |
Protected Member Functions | |
_construct () |
Definition at line 35 of file Method.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 Method.php.
00038 { 00039 $this->getCheckout()->setStepData('shipping_method', array( 00040 'label' => Mage::helper('checkout')->__('Shipping Method'), 00041 'is_show' => $this->isShow() 00042 )); 00043 parent::_construct(); 00044 }
isShow | ( | ) |
Retrieve is allow and show block
Reimplemented from Mage_Checkout_Block_Onepage_Abstract.
Definition at line 51 of file Method.php.
00052 { 00053 return !$this->getQuote()->isVirtual(); 00054 }