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


PHP Context::getScopeConfig方法代碼示例

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


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

示例1: __construct

 /**
  * Constructor
  *
  * @param TemplateContext $context
  * @param Context $renderContext
  * @param ContentTypeFactory $contentTypeFactory
  * @param ConfigFactory $configFactory
  * @param ConfigBuilderInterface $configBuilder
  * @param DataProviderFactory $dataProviderFactory
  * @param Manager $dataProviderManager
  * @param FilterPool $filterPool
  * @param ResolverInterface $localeResolver
  * @param array $data
  * @SuppressWarnings(PHPMD.ExcessiveParameterList)
  */
 public function __construct(TemplateContext $context, Context $renderContext, ContentTypeFactory $contentTypeFactory, ConfigFactory $configFactory, ConfigBuilderInterface $configBuilder, DataProviderFactory $dataProviderFactory, Manager $dataProviderManager, FilterPool $filterPool, ResolverInterface $localeResolver, array $data = [])
 {
     $this->localeDate = $context->getLocaleDate();
     $this->scopeConfig = $context->getScopeConfig();
     $this->localeResolver = $localeResolver;
     parent::__construct($context, $renderContext, $contentTypeFactory, $configFactory, $configBuilder, $dataProviderFactory, $dataProviderManager, $filterPool, $data);
 }
開發者ID:shabbirvividads,項目名稱:magento2,代碼行數:22,代碼來源:Date.php

示例2: __construct

 public function __construct(\Magento\Framework\View\Element\Template\Context $context, $data = array())
 {
     $this->scopeConfig = $context->getScopeConfig();
     parent::__construct($context, $data);
 }
開發者ID:opsway,項目名稱:magento2-facebookpopup-module,代碼行數:5,代碼來源:Popup.php

示例3: __construct

 /**
  * @param Context $context
  * @param SpringbotHelper $springbotHelper
  */
 public function __construct(Context $context, SpringbotHelper $springbotHelper)
 {
     $this->scopeConfig = $context->getScopeConfig();
     $this->springbotHelper = $springbotHelper;
     parent::__construct($context);
 }
開發者ID:springbot,項目名稱:magento2-plugin,代碼行數:10,代碼來源:Async.php

示例4: __construct

 public function __construct(\Magento\Framework\Module\Manager $moduleManager, \Magento\Framework\View\Element\Template\Context $context, array $data = [])
 {
     $this->_scopeConfig = $context->getScopeConfig();
     $this->_moduleManager = $moduleManager;
     parent::__construct($context, $data);
 }
開發者ID:vmasciotta,項目名稱:magento2-privacy-policy,代碼行數:6,代碼來源:PrivacyPolicy.php

示例5: __construct

 /**
  * Head constructor.
  * @param Context $context
  * @param array $data
  */
 public function __construct(Context $context, array $data)
 {
     $this->scopeConfig = $context->getScopeConfig();
     parent::__construct($context, $data);
 }
開發者ID:balrbv,項目名稱:magento2-module-visual-website-optimizer,代碼行數:10,代碼來源:Head.php


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