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


PHP Template::_construct方法代碼示例

本文整理匯總了PHP中Magento\Backend\Block\Template::_construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP Template::_construct方法的具體用法?PHP Template::_construct怎麽用?PHP Template::_construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Magento\Backend\Block\Template的用法示例。


在下文中一共展示了Template::_construct方法的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: _construct

 /**
  * Initialize review data
  *
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     if ($this->_coreRegistry->registry('review_data')) {
         $this->setReviewId($this->_coreRegistry->registry('review_data')->getReviewId());
     }
 }
開發者ID:kidaa30,項目名稱:magento2-platformsh,代碼行數:12,代碼來源:Detailed.php

示例2: _construct

 /**
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     $templateId = $this->getRequest()->getParam('template_id');
     if ($templateId) {
         $this->setTemplateId($templateId);
     }
 }
開發者ID:Doability,項目名稱:magento2dev,代碼行數:11,代碼來源:Edit.php

示例3: _construct

 /**
  * Initialize "controller" and "header text"
  *
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     if ($this->hasData(self::PARAM_CONTROLLER)) {
         $this->_controller = $this->_getData(self::PARAM_CONTROLLER);
     }
     if ($this->hasData(self::PARAM_HEADER_TEXT)) {
         $this->_headerText = $this->_getData(self::PARAM_HEADER_TEXT);
     }
 }
開發者ID:kidaa30,項目名稱:magento2-platformsh,代碼行數:15,代碼來源:Container.php

示例4: _construct

 /**
  * Initialize template and cache settings
  *
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setCacheTags([self::CACHE_TAGS]);
 }
開發者ID:kidaa30,項目名稱:magento2-platformsh,代碼行數:10,代碼來源:Menu.php

示例5: _construct

 /**
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     $this->assign('createUrl', $this->getUrl('tax/rate/save'));
 }
開發者ID:kidaa30,項目名稱:magento2-platformsh,代碼行數:8,代碼來源:Save.php

示例6: _construct

 /**
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setUseConfirm(true);
     $this->setUseAjax(true);
     $this->setShowManageStoresLink(0);
     if (!$this->hasData('switch_websites')) {
         $this->setSwitchWebsites(false);
     }
     if (!$this->hasData('switch_store_groups')) {
         $this->setSwitchStoreGroups(false);
     }
     if (!$this->hasData('switch_store_views')) {
         $this->setSwitchStoreViews(true);
     }
     $this->setDefaultSelectionName(__('All Store Views'));
 }
開發者ID:koliaGI,項目名稱:magento2,代碼行數:20,代碼來源:Switcher.php

示例7: _construct

 /**
  * Class constructor
  *
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     $this->pageConfig->addBodyClass($this->_request->getFullActionName('-'));
 }
開發者ID:pradeep-wagento,項目名稱:magento2,代碼行數:10,代碼來源:Page.php

示例8: _construct

 /**
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     $collection = $this->_problemCollection->addSubscriberInfo()->addQueueInfo();
 }
開發者ID:aiesh,項目名稱:magento2,代碼行數:8,代碼來源:Problem.php

示例9: _construct

 /**
  * Initialize the sales grid.
  *
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('customer_view_sales_grid');
 }
開發者ID:pradeep-wagento,項目名稱:magento2,代碼行數:10,代碼來源:Sales.php

示例10: _construct

 /**
  * Class constructor
  *
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setCanEditPrice(true);
     $this->setCanReadPrice(true);
 }
開發者ID:tingyeeh,項目名稱:magento2,代碼行數:11,代碼來源:Links.php

示例11: _construct

 /**
  * Constructor
  *
  * @return void
  */
 protected function _construct()
 {
     parent::_construct();
     $this->setId('sales_order_create_totals_table');
 }
開發者ID:pradeep-wagento,項目名稱:magento2,代碼行數:10,代碼來源:Table.php


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