本文整理汇总了PHP中Magento\Backend\Block\Widget\Tabs::_construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Tabs::_construct方法的具体用法?PHP Tabs::_construct怎么用?PHP Tabs::_construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Magento\Backend\Block\Widget\Tabs
的用法示例。
在下文中一共展示了Tabs::_construct方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _construct
/**
* @return void
*/
protected function _construct()
{
parent::_construct();
$this->setId('storelocator_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(__('Store Information'));
}
示例2: _construct
/**
* Constructor
*
* @return void
*/
protected function _construct()
{
parent::_construct();
$this->setId('lapisbard_storelocator_locations_edit_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(__('Location'));
}
示例3: _construct
/**
* Initialize integration edit page tabs
*
* @return void
*/
protected function _construct()
{
parent::_construct();
$this->setId('integration_edit_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(__('Basic Settings'));
}
示例4: _construct
/**
* Initialize Tabs
*
* @return void
*/
protected function _construct()
{
parent::_construct();
$this->setId('category_info_tabs');
$this->setDestElementId('category_tab_content');
$this->setTitle(__('Category Data'));
}
示例5: _construct
protected function _construct()
{
parent::_construct();
$this->setId('banners_edit_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(__('Banner Information'));
}
示例6: _construct
/**
* Class constructor
*
* @return void
*/
protected function _construct()
{
parent::_construct();
$this->setId('post_edit_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(__('Category Information'));
}
示例7: _construct
/**
* Initialize tab
*
* @return void
*/
protected function _construct()
{
parent::_construct();
$this->setId('billing_agreement_view_tabs');
$this->setDestElementId('billing_agreement_view');
$this->setTitle(__('Billing Agreement View'));
}
示例8: _construct
/**
* Initialize tab
*
* @return void
*/
protected function _construct()
{
parent::_construct();
$this->setId('theme_selector_tabs');
$this->setDestElementId('theme_selector');
$this->setIsHoriz(true);
}
示例9: _construct
/**
* Initialize tabs and define tabs block settings
*
* @return void
*/
public function _construct()
{
parent::_construct();
$this->setId('theme_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(__('Theme'));
}
示例10: _construct
/**
* Class constructor
*
* @return void
*/
protected function _construct()
{
parent::_construct();
$id = $this->getRequest()->getParam('id', false);
// $this->setTemplate('lists/lists.phtml')->assign('alists', [1]);
//$this->assign('alists', $this->getAlists())->assign('id', $id);
}
示例11: _construct
/**
* Internal constructor
*
* @return void
*/
protected function _construct()
{
parent::_construct();
$this->setId('widget_instace_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(__('Widget'));
}
示例12: _construct
/**
* set form data
*
* @return void
*/
protected function _construct()
{
parent::_construct();
$this->setId('umc_base_module_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(__('Module Creator'));
}
示例13: _construct
/**
* Constructor.
*/
public function _construct()
{
parent::_construct();
$this->setId('ddg_rules_tabs');
$this->setDestElementId('edit_form');
$this->setTitle(__('Exclusion Rule'));
}