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


PHP Helper\AbstractHelper類代碼示例

本文整理匯總了PHP中Magento\Framework\App\Helper\AbstractHelper的典型用法代碼示例。如果您正苦於以下問題:PHP AbstractHelper類的具體用法?PHP AbstractHelper怎麽用?PHP AbstractHelper使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: testUrlDecode

 /**
  * @covers \Magento\Framework\App\Helper\AbstractHelper::urlEncode
  * @covers \Magento\Framework\App\Helper\AbstractHelper::urlDecode
  */
 public function testUrlDecode()
 {
     $data = uniqid();
     $result = $this->helper->urlEncode($data);
     $this->urlBuilderMock->expects($this->once())->method('sessionUrlVar')->with($this->equalTo($data))->will($this->returnValue($result));
     $this->assertNotContains('&', $result);
     $this->assertNotContains('%', $result);
     $this->assertNotContains('+', $result);
     $this->assertNotContains('=', $result);
     $this->assertEquals($result, $this->helper->urlDecode($result));
 }
開發者ID:,項目名稱:,代碼行數:15,代碼來源:

示例2: __construct

 /**
  * Initialize dependencies.
  *
  * @param \Magento\Framework\App\Helper\Context $context
  * @param \Magento\Store\Model\StoreManagerInterface $storeManager,
  * @param \Ves\Brand\Model\ResourceModel\Group\Collection $groupCollection
  */
 public function __construct(\Magento\Framework\App\Helper\Context $context, \Magento\Store\Model\StoreManagerInterface $storeManager, \Ves\Brand\Model\Group $groupCollection, \Magento\Cms\Model\Template\FilterProvider $filterProvider)
 {
     parent::__construct($context);
     $this->_filterProvider = $filterProvider;
     $this->_storeManager = $storeManager;
     $this->_groupCollection = $groupCollection;
 }
開發者ID:vasuscoin,項目名稱:brand,代碼行數:14,代碼來源:Data.php

示例3: __construct

 /**
  * @param \Magento\Framework\App\Helper\Context $context
  * @param \Magento\Eav\Model\Config $eavConfig
  * @param Data $catalogData
  * @param \Magento\Framework\Escaper $escaper
  */
 public function __construct(\Magento\Framework\App\Helper\Context $context, \Magento\Eav\Model\Config $eavConfig, Data $catalogData, \Magento\Framework\Escaper $escaper)
 {
     $this->_eavConfig = $eavConfig;
     $this->_catalogData = $catalogData;
     $this->_escaper = $escaper;
     parent::__construct($context);
 }
開發者ID:pradeep-wagento,項目名稱:magento2,代碼行數:13,代碼來源:Output.php

示例4: __construct

 /**
  * @param Context $context
  * @param \Magento\Braintree\Helper\Data $paymentHelper
  * @param BraintreeCustomer $braintreeCustomerAdapter
  * @param \Magento\Backend\Model\Session\Quote $sessionQuote
  */
 public function __construct(Context $context, \Magento\Braintree\Helper\Data $paymentHelper, BraintreeCustomer $braintreeCustomerAdapter, \Magento\Backend\Model\Session\Quote $sessionQuote)
 {
     parent::__construct($context);
     $this->paymentHelper = $paymentHelper;
     $this->braintreeCustomerAdapter = $braintreeCustomerAdapter;
     $this->sessionQuote = $sessionQuote;
 }
開發者ID:pradeep-wagento,項目名稱:magento2,代碼行數:13,代碼來源:Createorder.php

示例5: __construct

 /**
  * @param \Magento\Framework\App\Helper\Context $context
  * @param \Magento\Framework\Registry $coreRegistry
  * @param \Magento\Framework\ObjectManager\ConfigInterface $config
  */
 public function __construct(\Magento\Framework\App\Helper\Context $context, \Magento\Framework\Registry $coreRegistry, \Magento\Framework\ObjectManager\ConfigInterface $config, \Magento\Backend\App\ConfigInterface $backendConfig)
 {
     $this->_coreRegistry = $coreRegistry;
     $this->_preferences = $config->getPreferences();
     $this->addDevToolData($this->preferencesKey, $this->_preferences);
     parent::__construct($context);
 }
開發者ID:dineshmalekar,項目名稱:Magento2-Developer-Debug-Tool,代碼行數:12,代碼來源:Data.php

示例6: __construct

 /**
  * Constructor
  * gi
  * @param ObjectManagerInterface $objectManager
  * @param Config                 $config
  * @param Context                $context
  */
 public function __construct(ObjectManagerInterface $objectManager, Config $config, Context $context)
 {
     $this->objectManager = $objectManager;
     $this->moduleManager = $context->getModuleManager();
     $this->config = $config;
     return parent::__construct($context);
 }
開發者ID:Doability,項目名稱:magento2dev,代碼行數:14,代碼來源:Data.php

示例7: __construct

 /**
  * @param Context $context
  */
 public function __construct(\Magento\Framework\App\Helper\Context $context, \Magento\Framework\Encryption\EncryptorInterface $encryptor, \Magento\Payment\Model\Config $config, \Magento\Framework\Config\DataInterface $dataStorage)
 {
     parent::__construct($context);
     $this->_encryptor = $encryptor;
     $this->_config = $config;
     $this->_dataStorage = $dataStorage;
 }
開發者ID:pivulic,項目名稱:adyen-magento2,代碼行數:10,代碼來源:Data.php

示例8: __construct

 public function __construct(\Magento\Framework\App\Helper\Context $context, \Magento\Catalog\Model\ResourceModel\Category\CollectionFactory $categoryCollectionFactory, \Magento\Backend\Model\UrlInterface $backendUrl, \Magento\Store\Model\StoreManagerInterface $storeManager)
 {
     parent::__construct($context);
     $this->_backendUrl = $backendUrl;
     $this->_storeManager = $storeManager;
     $this->_categoryCollectionFactory = $categoryCollectionFactory;
 }
開發者ID:mrtuvn,項目名稱:m2ce.dev,代碼行數:7,代碼來源:Data.php

示例9: __construct

 /**
  * @param \Magento\Framework\App\Helper\Context $context
  * @param \Magento\Core\Helper\Data $coreData
  * @param \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig
  * @param \Magento\Store\Model\StoreManagerInterface $storeManager
  */
 public function __construct(\Magento\Framework\App\Helper\Context $context, \Magento\Core\Helper\Data $coreData, \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig, \Magento\Store\Model\StoreManagerInterface $storeManager)
 {
     $this->_coreData = $coreData;
     $this->_scopeConfig = $scopeConfig;
     $this->_storeManager = $storeManager;
     parent::__construct($context);
 }
開發者ID:aiesh,項目名稱:magento2,代碼行數:13,代碼來源:Data.php

示例10: __construct

 /**
  * Constructor
  *
  * @param \Magento\Framework\App\Helper\Context $context
  * @param \Magento\Framework\View\DesignInterface $design
  * @param \Magento\Framework\Stdlib\DateTime\TimezoneInterface $localeDate
  * @param \Magento\Framework\View\Result\PageFactory $resultPageFactory
  */
 public function __construct(\Magento\Framework\App\Helper\Context $context, \Magento\Framework\View\DesignInterface $design, \Magento\Framework\Stdlib\DateTime\TimezoneInterface $localeDate, \Magento\Framework\View\Result\PageFactory $resultPageFactory)
 {
     $this->_design = $design;
     $this->_localeDate = $localeDate;
     $this->resultPageFactory = $resultPageFactory;
     parent::__construct($context);
 }
開發者ID:magefan,項目名稱:module-blog,代碼行數:15,代碼來源:Page.php

示例11: __construct

 /**
  * @param \Magento\Framework\App\Helper\Context $context
  * @param \Magento\Store\Model\StoreManagerInterface $storeManager
  * @param \Ebizmarts\MageMonkey\Model\Logger\Magemonkey $logger
  * @param \Magento\Customer\Api\GroupRepositoryInterface $groupRepositoryInterface
  */
 public function __construct(\Magento\Framework\App\Helper\Context $context, \Magento\Store\Model\StoreManagerInterface $storeManager, \Ebizmarts\MageMonkey\Model\Logger\Magemonkey $logger, \Magento\Customer\Api\GroupRepositoryInterface $groupRepositoryInterface)
 {
     $this->_storeManager = $storeManager;
     $this->_mlogger = $logger;
     $this->_groupRepositoryInterface = $groupRepositoryInterface;
     parent::__construct($context);
 }
開發者ID:kost08,項目名稱:magento2-magemonkey,代碼行數:13,代碼來源:Data.php

示例12: __construct

 /**
  * @param \Magento\Framework\App\Helper\Context $context
  * @param \Magento\MediaStorage\Model\File\Storage\DatabaseFactory $dbStorageFactory
  * @param \Magento\MediaStorage\Model\File\Storage\File $fileStorage
  * @param Filesystem $filesystem
  */
 public function __construct(\Magento\Framework\App\Helper\Context $context, \Magento\MediaStorage\Model\File\Storage\DatabaseFactory $dbStorageFactory, \Magento\MediaStorage\Model\File\Storage\File $fileStorage, Filesystem $filesystem)
 {
     $this->_filesystem = $filesystem;
     $this->_dbStorageFactory = $dbStorageFactory;
     $this->_fileStorage = $fileStorage;
     parent::__construct($context);
 }
開發者ID:shabbirvividads,項目名稱:magento2,代碼行數:13,代碼來源:Database.php

示例13: __construct

 /**
  * @param Context $context
  * @param StoreManagerInterface $storeManager
  * @param Filesystem $filesystem
  * @param string $imageDir
  */
 public function __construct(Context $context, StoreManagerInterface $storeManager, Filesystem $filesystem, $imageDir = 'design/image')
 {
     parent::__construct($context);
     $this->storeManager = $storeManager;
     $this->mediaDirectory = $filesystem->getDirectoryWrite(DirectoryList::MEDIA);
     $this->imageDir = $imageDir;
 }
開發者ID:BlackIkeEagle,項目名稱:magento2-continuousphp,代碼行數:13,代碼來源:Config.php

示例14: __construct

 /**
  * @param \Magento\Framework\App\Helper\Context $context
  * @param \Magento\Store\Model\StoreManagerInterface $storeManager
  * @param Filesystem $filesystem
  * @param \Magento\Captcha\Model\CaptchaFactory $factory
  */
 public function __construct(\Magento\Framework\App\Helper\Context $context, \Magento\Store\Model\StoreManagerInterface $storeManager, Filesystem $filesystem, \Magento\Captcha\Model\CaptchaFactory $factory)
 {
     $this->_storeManager = $storeManager;
     $this->_filesystem = $filesystem;
     $this->_factory = $factory;
     parent::__construct($context);
 }
開發者ID:shabbirvividads,項目名稱:magento2,代碼行數:13,代碼來源:Data.php

示例15: __construct

 public function __construct(Context $context, \Magento\Checkout\Model\Session $session, \Magento\Quote\Model\Quote $quote, \Magento\Quote\Model\QuoteManagement $quoteManagement)
 {
     $this->session = $session;
     $this->quote = $quote;
     $this->quoteManagement = $quoteManagement;
     parent::__construct($context);
 }
開發者ID:craigchristenson,項目名稱:magento2-2checkout,代碼行數:7,代碼來源:Checkout.php


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