Created
January 25, 2014 15:40
-
-
Save xcommerce-gists/8618206 to your computer and use it in GitHub Desktop.
Sample Magento administrative form tab page
This file contains 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 | |
/** | |
* News List admin edit form tabs block | |
* | |
* @author Magento | |
*/ | |
class Magentostudy_News_Block_Adminhtml_News_Edit_Tabs extends Mage_Adminhtml_Block_Widget_Tabs | |
{ | |
/** | |
* Initialize tabs and define tabs block settings | |
* | |
*/ | |
public function __construct() | |
{ | |
parent::__construct(); | |
$this->setId('page_tabs'); | |
$this->setDestElementId('edit_form'); | |
$this->setTitle(Mage::helper('magentostudy_news')->__('News Item Info')); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment