当前位置: 首页>>代码示例>>PHP>>正文


PHP Column::__construct方法代码示例

本文整理汇总了PHP中Magento\Ui\Component\Listing\Columns\Column::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Column::__construct方法的具体用法?PHP Column::__construct怎么用?PHP Column::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Magento\Ui\Component\Listing\Columns\Column的用法示例。


在下文中一共展示了Column::__construct方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 /**
  * @param ContextInterface $context
  * @param UiComponentFactory $uiComponentFactory
  * @param SystemStore $systemStore
  * @param Escaper $escaper
  * @param array $components
  * @param array $data
  * @param string $storeKey
  */
 public function __construct(ContextInterface $context, UiComponentFactory $uiComponentFactory, SystemStore $systemStore, Escaper $escaper, array $components = [], array $data = [], $storeKey = 'store_id')
 {
     $this->systemStore = $systemStore;
     $this->escaper = $escaper;
     $this->storeKey = $storeKey;
     parent::__construct($context, $uiComponentFactory, $components, $data);
 }
开发者ID:BlackIkeEagle,项目名称:magento2-continuousphp,代码行数:16,代码来源:Store.php

示例2: __construct

 /**
  * @param ContextInterface $context
  * @param UiComponentFactory $uiComponentFactory
  * @param Image $imageHelper
  * @param UrlInterface $urlBuilder
  * @param StoreManagerInterface $storeManager
  * @param array $components
  * @param array $data
  */
 public function __construct(ContextInterface $context, UiComponentFactory $uiComponentFactory, Image $imageHelper, UrlInterface $urlBuilder, StoreManagerInterface $storeManager, array $components = [], array $data = [])
 {
     $this->storeManager = $storeManager;
     $this->imageHelper = $imageHelper;
     $this->urlBuilder = $urlBuilder;
     parent::__construct($context, $uiComponentFactory, $components, $data);
 }
开发者ID:igor-lero9,项目名称:magebase_carousel,代码行数:16,代码来源:Thumbnail.php

示例3: __construct

 /**
  * @param ContextInterface $context
  * @param UiComponentFactory $uiComponentFactory
  * @param UrlBuilder $actionUrlBuilder
  * @param UrlInterface $urlBuilder
  * @param array $components
  * @param array $data
  * @param string $editUrl
  */
 public function __construct(ContextInterface $context, UiComponentFactory $uiComponentFactory, UrlBuilder $actionUrlBuilder, UrlInterface $urlBuilder, array $components = [], array $data = [], $editUrl = self::STORELOCATOR_URL_PATH_EDIT)
 {
     $this->urlBuilder = $urlBuilder;
     $this->actionUrlBuilder = $actionUrlBuilder;
     $this->editUrl = $editUrl;
     parent::__construct($context, $uiComponentFactory, $components, $data);
 }
开发者ID:ant-workaholic,项目名称:Store-locator,代码行数:16,代码来源:LocationActions.php

示例4: __construct

 /**
  * @param ContextInterface $context
  * @param UiComponentFactory $uiComponentFactory
  * @param UrlInterface $urlBuilder
  * @param array $components
  * @param array $data
  */
 public function __construct(ContextInterface $context, UiComponentFactory $uiComponentFactory, UrlInterface $urlBuilder, Downloader $downloader, \Magento\Framework\Filesystem $filesystem, array $components = [], array $data = [])
 {
     $this->urlBuilder = $urlBuilder;
     $this->downloader = $downloader;
     $this->filesystem = $filesystem;
     parent::__construct($context, $uiComponentFactory, $components, $data);
 }
开发者ID:artmouse,项目名称:Umc_Base,代码行数:14,代码来源:ModuleActions.php

示例5: __construct

 public function __construct(ContextInterface $context, UiComponentFactory $uiComponentFactory, UrlInterface $urlBuilder, StoreManagerInterface $storeManager, Image $imageModel, array $components = [], array $data = [])
 {
     parent::__construct($context, $uiComponentFactory, $components, $data);
     $this->_urlBuilder = $urlBuilder;
     $this->_storeManager = $storeManager;
     $this->_imageModel = $imageModel;
 }
开发者ID:mrtuvn,项目名称:m2ce.dev,代码行数:7,代码来源:ImageBanner.php

示例6: __construct

 public function __construct(ContextInterface $context, UiComponentFactory $uiComponentFactory, \Tuna\BannerSlider\Model\Image $imageHelper, \Magento\Framework\UrlInterface $urlBuilder, \Magento\Framework\ObjectManagerInterface $objectManager, array $components = [], array $data = [])
 {
     $this->uiComponentFactory = $uiComponentFactory;
     parent::__construct($context, $uiComponentFactory, $components, $data);
     //important part
     $this->imageHelper = $imageHelper;
     $this->urlBuilder = $urlBuilder;
     $this->_objectManager = $objectManager;
 }
开发者ID:mrtuvn,项目名称:m2ce.dev,代码行数:9,代码来源:Thumbnail.php

示例7: __construct

 /**
  * @param ContextInterface                           $context            
  * @param UiComponentFactory                         $uiComponentFactory 
  * @param \Magento\Catalog\Helper\Image              $imageHelper        
  * @param \Magento\Framework\UrlInterface            $urlBuilder         
  * @param \Magento\Framework\Filesystem              $filesystem         
  * @param \Magento\Store\Model\StoreManagerInterface $storeManager       
  * @param SliderModel                                 $sliderModel         
  * @param array                                      $components         
  * @param array                                      $data               
  */
 public function __construct(ContextInterface $context, UiComponentFactory $uiComponentFactory, \Magento\Catalog\Helper\Image $imageHelper, \Magento\Framework\UrlInterface $urlBuilder, \Magento\Framework\Filesystem $filesystem, \Magento\Store\Model\StoreManagerInterface $storeManager, SliderModel $sliderModel, array $components = [], array $data = [])
 {
     parent::__construct($context, $uiComponentFactory, $components, $data);
     $this->imageHelper = $imageHelper;
     $this->urlBuilder = $urlBuilder;
     $this->filesystem = $filesystem;
     $this->_storeManager = $storeManager;
     $this->sliderModel = $sliderModel;
 }
开发者ID:OlgaBurtyka,项目名称:m2,代码行数:20,代码来源:Image.php

示例8: __construct

 /**
  * @param ContextInterface $context
  * @param UiComponentFactory $uiComponentFactory
  * @param TimezoneInterface $timezone
  * @param array $components
  * @param array $data
  */
 public function __construct(
     ContextInterface $context,
     UiComponentFactory $uiComponentFactory,
     TimezoneInterface $timezone,
     array $components = [],
     array $data = []
 ) {
     $this->timezone = $timezone;
     parent::__construct($context, $uiComponentFactory, $components, $data);
 }
开发者ID:razbakov,项目名称:magento2,代码行数:17,代码来源:Date.php

示例9: __construct

 /**
  * @param ContextInterface $context
  * @param UiComponentFactory $uiComponentFactory
  * @param StoreManagerInterface $storeManager
  * @param array $components
  * @param array $data
  */
 public function __construct(ContextInterface $context, UiComponentFactory $uiComponentFactory, StoreManagerInterface $storeManager, array $components = [], array $data = [])
 {
     parent::__construct($context, $uiComponentFactory, $components, $data);
     $this->storeManager = $storeManager;
 }
开发者ID:nja78,项目名称:magento2,代码行数:12,代码来源:Websites.php

示例10: __construct

 /**
  * @param ContextInterface $context
  * @param UiComponentFactory $uiComponentFactory
  * @param StatusSource $source
  * @param array $components
  * @param array $data
  */
 public function __construct(ContextInterface $context, UiComponentFactory $uiComponentFactory, StatusSource $source, array $components = [], array $data = [])
 {
     parent::__construct($context, $uiComponentFactory, $components, $data);
     $this->source = $source;
 }
开发者ID:Doability,项目名称:magento2dev,代码行数:12,代码来源:Status.php

示例11: __construct

 /**
  * Constructor
  *
  * @param ContextInterface $context
  * @param UiComponentFactory $uiComponentFactory
  * @param CreditmemoRepositoryInterface $creditmemoRepository
  * @param array $components
  * @param array $data
  */
 public function __construct(ContextInterface $context, UiComponentFactory $uiComponentFactory, CreditmemoRepositoryInterface $creditmemoRepository, array $components = [], array $data = [])
 {
     $this->states = $creditmemoRepository->create()->getStates();
     parent::__construct($context, $uiComponentFactory, $components, $data);
 }
开发者ID:kidaa30,项目名称:magento2-platformsh,代码行数:14,代码来源:State.php

示例12: __construct

 /**
  * @param ContextInterface $context
  * @param UiComponentFactory $uiComponentFactory
  * @param AttributeSetRepositoryInterface $attributeSetRepository
  * @param array $components
  * @param array $data
  */
 public function __construct(ContextInterface $context, UiComponentFactory $uiComponentFactory, AttributeSetRepositoryInterface $attributeSetRepository, array $components = [], array $data = [])
 {
     parent::__construct($context, $uiComponentFactory, $components, $data);
     $this->attributeSetRepository = $attributeSetRepository;
 }
开发者ID:Doability,项目名称:magento2dev,代码行数:12,代码来源:AttributeSetText.php

示例13: __construct

 /**
  * @param ContextInterface $context
  * @param UiComponentFactory $uiComponentFactory
  * @param \Magento\Catalog\Model\Product\Image\ViewFactory $imageFactory
  * @param \Magento\Framework\UrlInterface $urlBuilder
  * @param array $components
  * @param array $data
  */
 public function __construct(ContextInterface $context, UiComponentFactory $uiComponentFactory, \Magento\Catalog\Model\Product\Image\ViewFactory $imageFactory, \Magento\Framework\UrlInterface $urlBuilder, array $components = [], array $data = [])
 {
     parent::__construct($context, $uiComponentFactory, $components, $data);
     $this->imageFactory = $imageFactory;
     $this->urlBuilder = $urlBuilder;
 }
开发者ID:nja78,项目名称:magento2,代码行数:14,代码来源:Thumbnail.php

示例14: __construct

 /**
  * @param ContextInterface $context
  * @param UiComponentFactory $uiComponentFactory
  * @param ScopeConfigInterface $scopeConfig
  * @param array $components
  * @param array $data
  */
 public function __construct(ContextInterface $context, UiComponentFactory $uiComponentFactory, ScopeConfigInterface $scopeConfig, array $components, array $data)
 {
     $this->scopeConfig = $scopeConfig;
     parent::__construct($context, $uiComponentFactory, $components, $data);
 }
开发者ID:Doability,项目名称:magento2dev,代码行数:12,代码来源:Confirmation.php

示例15: __construct

 /**
  * @param ContextInterface $context
  * @param UiComponentFactory $uiComponentFactory
  * @param Escaper $escaper
  * @param array $components
  * @param array $data
  */
 public function __construct(ContextInterface $context, UiComponentFactory $uiComponentFactory, Escaper $escaper, array $components = [], array $data = [])
 {
     $this->escaper = $escaper;
     parent::__construct($context, $uiComponentFactory, $components, $data);
 }
开发者ID:kidaa30,项目名称:magento2-platformsh,代码行数:12,代码来源:Address.php


注:本文中的Magento\Ui\Component\Listing\Columns\Column::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。