當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Tabs::_construct方法代碼示例

本文整理匯總了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'));
 }
開發者ID:emizentech,項目名稱:magento2-storelocator,代碼行數:10,代碼來源:Tabs.php

示例2: _construct

 /**
  * Constructor
  *
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('lapisbard_storelocator_locations_edit_tabs');
     $this->setDestElementId('edit_form');
     $this->setTitle(__('Location'));
 }
開發者ID:amitshree,項目名稱:magento2-store-locator,代碼行數:12,代碼來源:Tabs.php

示例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'));
 }
開發者ID:shabbirvividads,項目名稱:magento2,代碼行數:12,代碼來源:Tabs.php

示例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'));
 }
開發者ID:pradeep-wagento,項目名稱:magento2,代碼行數:12,代碼來源:Tabs.php

示例5: _construct

 protected function _construct()
 {
     parent::_construct();
     $this->setId('banners_edit_tabs');
     $this->setDestElementId('edit_form');
     $this->setTitle(__('Banner Information'));
 }
開發者ID:hientruongbluecom,項目名稱:cemagento2,代碼行數:7,代碼來源:Tabs.php

示例6: _construct

 /**
  * Class constructor
  *
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('post_edit_tabs');
     $this->setDestElementId('edit_form');
     $this->setTitle(__('Category Information'));
 }
開發者ID:osmansorkar,項目名稱:magento2-blog-module,代碼行數:12,代碼來源:Tabs.php

示例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'));
 }
開發者ID:kidaa30,項目名稱:magento2-platformsh,代碼行數:12,代碼來源:Tabs.php

示例8: _construct

 /**
  * Initialize tab
  *
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('theme_selector_tabs');
     $this->setDestElementId('theme_selector');
     $this->setIsHoriz(true);
 }
開發者ID:Atlis,項目名稱:docker-magento2,代碼行數:12,代碼來源:Tabs.php

示例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'));
 }
開發者ID:aiesh,項目名稱:magento2,代碼行數:12,代碼來源:Tabs.php

示例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);
 }
開發者ID:pradeeprcs,項目名稱:TestModule,代碼行數:12,代碼來源:Gridlists.php

示例11: _construct

 /**
  * Internal constructor
  *
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('widget_instace_tabs');
     $this->setDestElementId('edit_form');
     $this->setTitle(__('Widget'));
 }
開發者ID:pradeep-wagento,項目名稱:magento2,代碼行數:12,代碼來源:Tabs.php

示例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'));
 }
開發者ID:artmouse,項目名稱:Umc_Base,代碼行數:12,代碼來源:Tabs.php

示例13: _construct

 /**
  * Constructor.
  */
 public function _construct()
 {
     parent::_construct();
     $this->setId('ddg_rules_tabs');
     $this->setDestElementId('edit_form');
     $this->setTitle(__('Exclusion Rule'));
 }
開發者ID:dotmailer,項目名稱:dotmailer-magento2-extension,代碼行數:10,代碼來源:Tabs.php


注:本文中的Magento\Backend\Block\Widget\Tabs::_construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。