* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
abstract class Creativestyle_Core_Block_Adminhtml_Info_Abstract extends Mage_Adminhtml_Block_System_Config_Form_Fieldset {
protected
$_extensionName = 'Creativestyle_Abstract';
abstract protected function _getInfo();
public function getExtensionVersion() {
return (string)Mage::getConfig()->getNode('modules/' . $this->_extensionName . '/version');
}
public function render(Varien_Data_Form_Element_Abstract $element) {
return $this->_getInfo();
}
/**
* @deprecated after 1.0.0
*/
protected function _getStyle() {
$content = '';
return $content;
}
/**
* @deprecated after 1.0.0
*/
protected function _getFooter() {
$content = '--------------------------------------------------------
';
$content .= '
' . $this->helper('creativestyle')->__('Visit %s to get more information.', 'http://www.creativestyle.de/magento-agentur.html', 'http://www.creativestyle.de/magento-agentur.html') . '
'; return $content; } /** * @deprecated after 1.0.0 */ protected function _getLogo() { return ''; } }