本文整理汇总了PHP中Mage_Adminhtml_Block_Widget_Tabs::_construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Adminhtml_Block_Widget_Tabs::_construct方法的具体用法?PHP Mage_Adminhtml_Block_Widget_Tabs::_construct怎么用?PHP Mage_Adminhtml_Block_Widget_Tabs::_construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Adminhtml_Block_Widget_Tabs
的用法示例。
在下文中一共展示了Mage_Adminhtml_Block_Widget_Tabs::_construct方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _construct
protected function _construct()
{
parent::_construct();
$this->setId('sales_order_view_tabs');
$this->setDestElementId('sales_order_view');
$this->setTitle(Mage::helper('Mage_Sales_Helper_Data')->__('Order View'));
}
示例2: _construct
public function _construct()
{
parent::_construct();
$this->setId('showcase_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(Mage::helper('edge_showcase')->__('Showcase'));
}
示例3: _construct
/**
* Prepare title and id for main tabs container.
*
* @return void
*/
protected function _construct()
{
parent::_construct();
$this->setId('attribute_info_tabs');
//$this->setDestElementId('attribute_form');
$this->setTitle($this->__('Attribute Mapping Information'));
}
示例4: _construct
/**
* Initializa the tab system
*/
public function _construct()
{
parent::_construct();
$this->setId('pdfgenerator_tabs');
$this->setDestElementId('pdf_template_new_form');
$this->setTitle(Mage::helper('pdfgenerator')->__('PDF Settings'));
}
示例5: _construct
/**
* Constructor
*/
protected function _construct()
{
parent::_construct();
$this->setId('connect_extension_edit_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(Mage::helper('Mage_Connect_Helper_Data')->__('Create Extension Package'));
}
示例6: _construct
/**
* construct
*
* @access public
* @return void
* @author Marius Strajeru <ultimate.module.creator@gmail.com>
*/
public function _construct()
{
parent::_construct();
$this->setId('modulecreator_info_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(Mage::helper('modulecreator')->__('Module information'));
}
示例7: _construct
/**
* Initialize edit tabs
*
*/
public function _construct()
{
parent::_construct();
$this->setId('rma_item_attribute_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(Mage::helper('enterprise_rma')->__('Attribute Information'));
}
示例8: _construct
/**
* Internal constructor
*
*/
protected function _construct()
{
parent::_construct();
$this->setId('widget_instace_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(Mage::helper('Mage_Widget_Helper_Data')->__('Widget Instance'));
}
示例9: _construct
/**
* Internal constructor
*
*/
protected function _construct()
{
parent::_construct();
$this->setId('job_tabs');
$this->setDestElementId('edit_form');
$this->setTitle($this->__('Job'));
}
示例10: _construct
/**
* Initialize Tabs
*
*/
protected function _construct()
{
parent::_construct();
$this->setId('category_info_tabs');
$this->setDestElementId('category_tab_content');
$this->setTitle(Mage::helper('Mage_Catalog_Helper_Data')->__('Category Data'));
}
示例11: _construct
/**
* Magento's class contructor
*/
protected function _construct()
{
parent::_construct();
$this->_helper = Mage::helper('ash_slideshow');
$this->setId('slideshow_tabs');
$this->setDestElementId('edit_form');
$this->setTitle($this->_helper->__('Slide Asset'));
}
示例12: _construct
protected function _construct()
{
parent::_construct();
$this->setId('grid_tab');
$this->setDestElementId('grid_tab_content');
}