本文整理汇总了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方法的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
/**
* Initialize Department edit page tabs
*
*/
public function __construct()
{
parent::__construct();
$this->setId('category_info_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(Mage::helper('zeon_jobs')->__('Department Information'));
}
示例2: __construct
/**
* Initialize tabs and define tabs block settings
*/
public function __construct()
{
parent::__construct();
$this->setId('page_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(Mage::helper('slider')->__('Slider Item Info'));
}
示例3: __construct
public function __construct()
{
parent::__construct();
$this->setTemplate('widget/tabshoriz.phtml');
$this->setId('support');
$this->setDestElementId('support_tab_container');
}
示例4: __construct
public function __construct()
{
parent::__construct();
$this->setId('sales_order_view_tabs');
$this->setDestElementId('sales_order_view');
$this->setTitle(Mage::helper('sales')->__('Order View'));
}
示例5: __construct
public function __construct()
{
parent::__construct();
$this->setId('diagram_tab');
$this->setDestElementId('diagram_tab_content');
$this->setTemplate('widget/tabshoriz.phtml');
}
示例6: __construct
/**
* Intialize form
*
* @return void
*/
public function __construct()
{
parent::__construct();
$this->setId('enterprise_customersegment_segment_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(Mage::helper('enterprise_customersegment')->__('Segment Information'));
}
示例7: __construct
/**
* Initialize Tabs
*
* @access public
* @author Ultimate Module Creator
*/
public function __construct()
{
parent::__construct();
$this->setId('religion_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(Mage::helper('lionleap_temples')->__('Religion'));
}
示例8: __construct
public function __construct()
{
parent::__construct();
$this->setId('returnpolicy_tabs');
$this->setDestElementId('edit_form');
$this->setTitle($this->__('News Information'));
}
示例9: __construct
/**
* Constructs current object
*
*/
public function __construct()
{
parent::__construct();
$this->setId('faq_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(Mage::helper('hm_faq')->__('FAQ item information'));
}
示例10: __construct
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->setId('role_info_tabs');
$this->setDestElementId('role_edit_form');
$this->setData('title', Mage::helper('api2')->__('Role Information'));
}
示例11: __construct
public function __construct()
{
parent::__construct();
#$this->setTemplate('widget/tabs.phtml');
$this->setId('system_config_dwstree');
$this->setDestElementId('system_config_form');
}
示例12: __construct
public function __construct()
{
parent::__construct();
$this->setId('product_info_tabs');
$this->setDestElementId('product_edit_form');
$this->setTitle(AO::helper('catalog')->__('Product Information'));
}
示例13: __construct
/**
* Setting grid_id, DOM destination element id, Title
*/
public function __construct()
{
parent::__construct();
$this->setId('mobile_app_tabs');
$this->setDestElementId('edit_form');
$this->setTitle($this->__('Manage Mobile App'));
}
示例14: __construct
/**
* Initialize edit tabs
*
*/
public function __construct()
{
parent::__construct();
$this->setId('customer_attribute_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(Mage::helper('enterprise_customer')->__('Attribute Information'));
}