Created
June 8, 2010 04:48
-
-
Save amacgregor/429627 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<config> | |
<modules> | |
<Expertmagento_Adminhtml> | |
<version>0.1.0</version> | |
</Expertmagento_Adminhtml> | |
</modules> | |
<global> | |
<blocks> | |
<adminhtml> | |
<rewrite> | |
<catalog_product_edit_tabs>Expertmagento_Adminhtml_Block_Tabs</catalog_product_edit_tabs> | |
</rewrite> | |
</adminhtml> | |
</blocks> | |
</global> | |
</config> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Expertmagento_Adminhtml_Block_Tabs extends Mage_Adminhtml_Block_Catalog_Product_Edit_Tabs | |
{ | |
protected function _prepareLayout() | |
{ | |
parent::_prepareLayout(); | |
$this->addTab('knowledgebase', array( | |
'label' => Mage::helper('catalog')->__('Knowledge Base Articles'), | |
'content' => 'Success', | |
)); | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment