* All rights reserved * * Reuse or modification of this source code is not allowed * without written permission from creativestyle GmbH * * @category Creativestyle * @package Creativestyle_CheckoutByAmazon * @copyright Copyright (c) 2012 creativestyle GmbH (http://www.creativestyle.de) * @author Marek Zabrowarny / creativestyle GmbH */ class Creativestyle_CheckoutByAmazon_Block_Checkout_Shipping extends Creativestyle_CheckoutByAmazon_Block_Abstract { protected function _construct() { $this->getCheckout()->setStepData('shipping', array( 'label' => Mage::helper('checkout')->__('Shipping Information'), 'is_show' => $this->isShow(), 'allow' => true )); parent::_construct(); } public function getWidgetWidth() { return Mage::getStoreConfig(self::XML_PATH_ADDRESS_WIDGET_WIDTH); } public function getWidgetHeight() { return Mage::getStoreConfig(self::XML_PATH_ADDRESS_WIDGET_HEIGHT); } }