Skip to content

Instantly share code, notes, and snippets.

@xcommerce-gists
Created January 25, 2014 15:40
Show Gist options
  • Save xcommerce-gists/8618206 to your computer and use it in GitHub Desktop.
Save xcommerce-gists/8618206 to your computer and use it in GitHub Desktop.
Sample Magento administrative form tab page
<?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