本文整理匯總了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'));
}