* 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_Adminhtml_Info extends Creativestyle_Core_Block_Adminhtml_Info_Abstract { protected function _getInfo() { $output = $this->_getStyle(); $output .= '
'; $output .= $this->_getLogo(); $output .= '

' . $this->__('Checkout by Amazon') . ' (v. ' . (string)Mage::getConfig()->getNode('modules/Creativestyle_CheckoutByAmazon/version') . ')' . '

'; $output .= '

'; $output .= $this->__('This extension integrates easily your Magento shop with Checkout by Amazon payment service.'); $output .= '

'; $output .= $this->_getFooter(); $output .= '
'; return $output; } protected function _getFooter() { $content = '--------------------------------------------------------
'; $content .= '

' . $this->helper('creativestyle')->__('Visit %s to get more information.', 'http://www.creativestyle.de/amazon-extension.html', 'http://www.creativestyle.de/amazon-extension.html') . '

'; return $content; } }