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


PHP EntityListBuilder::__construct方法代码示例

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


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

示例1: __construct

 /**
  * Constructs a new UserListBuilder object.
  *
  * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
  *   The entity type definition.
  * @param \Drupal\Core\Entity\EntityStorageInterface $storage
  *   The entity storage class.
  * @param \Drupal\Core\Entity\Query\QueryFactory $query_factory
  *   The entity query factory.
  * @param \Drupal\Core\Datetime\DateFormatterInterface $date_formatter
  *   The date formatter service.
  * @param \Drupal\Core\Routing\RedirectDestinationInterface $redirect_destination
  *   The redirect destination service.
  */
 public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, QueryFactory $query_factory, DateFormatterInterface $date_formatter, RedirectDestinationInterface $redirect_destination)
 {
     parent::__construct($entity_type, $storage);
     $this->queryFactory = $query_factory;
     $this->dateFormatter = $date_formatter;
     $this->redirectDestination = $redirect_destination;
 }
开发者ID:ddrozdik,项目名称:dmaps,代码行数:21,代码来源:UserListBuilder.php

示例2: __construct

 /**
  * Constructs a new instance.
  *
  * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
  *   The entity type definition.
  * @param \Drupal\Core\Entity\EntityStorageInterface $payment_storage
  *   The payment storage.
  * @param \Drupal\Core\StringTranslation\TranslationInterface $string_translation
  *   The string translator.
  * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
  *   The module handler.
  * @param \Drupal\Core\Routing\RedirectDestinationInterface $redirect_destination
  *   The redirect destination.
  * @param \Drupal\Core\DateTime\DateFormatter $date_formatter
  *   The date formatter.
  * @param \Drupal\Core\Entity\EntityStorageInterface $currency_storage
  *   The currency storage.
  */
 public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $payment_storage, TranslationInterface $string_translation, ModuleHandlerInterface $module_handler, RedirectDestinationInterface $redirect_destination, DateFormatter $date_formatter, EntityStorageInterface $currency_storage)
 {
     parent::__construct($entity_type, $payment_storage);
     $this->currencyStorage = $currency_storage;
     $this->dateFormatter = $date_formatter;
     $this->moduleHandler = $module_handler;
     $this->redirectDestination = $redirect_destination;
     $this->stringTranslation = $string_translation;
 }
开发者ID:nishantkumar155,项目名称:drupal8.crackle,代码行数:27,代码来源:PaymentListBuilder.php

示例3: __construct

 public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage)
 {
     parent::__construct($entity_type, $storage);
     $type = $entity_type->id();
     $entity_info = \Drupal\myeck\MyeckConfig::getForListBuilder($type);
     $this->entity_label = empty($entity_info['entity_label']) ? '' : $entity_info['entity_label'];
     $this->entity_id = empty($entity_info['entity_id']) ? 'id' : $entity_info['entity_id'];
     $this->show_fields = array($this->entity_id => $type . ' ID');
     $this->show_fields += empty($entity_info['show_fields']) ? array() : $entity_info['show_fields'];
 }
开发者ID:alexawg2015,项目名称:drupal-8,代码行数:10,代码来源:MyeckListBuilder.php

示例4: __construct

 /**
  * @inheritDoc
  */
 public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, DateFormatterInterface $date_formatter)
 {
     parent::__construct($entity_type, $storage);
     $this->dateFormatter = $date_formatter;
 }
开发者ID:bonrita,项目名称:moodle,代码行数:8,代码来源:CourseListBuilder.php

示例5: __construct

 /**
  * Constructs a new UserListBuilder object.
  *
  * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
  *   The entity type definition.
  * @param \Drupal\Core\Entity\EntityStorageInterface $storage
  *   The entity storage class.
  * @param \Drupal\Core\Entity\Query\QueryFactory $query_factory
  *   The entity query factory.
  * @param \Drupal\Core\Datetime\Date $date_formatter
  *   The date formatter service.
  */
 public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, QueryFactory $query_factory, DateFormatter $date_formatter)
 {
     parent::__construct($entity_type, $storage);
     $this->queryFactory = $query_factory;
     $this->dateFormatter = $date_formatter;
 }
开发者ID:shumer,项目名称:blog,代码行数:18,代码来源:UserListBuilder.php

示例6: __construct

 /**
  * Constructs a new EntityListBuilder object.
  *
  * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
  *   The entity type definition.
  * @param \Drupal\Core\Entity\EntityStorageInterface $storage
  *   The entity storage class.
  * @param \Drupal\scheduled_updates\UpdateUtils $updateUtils
  */
 public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, UpdateUtils $updateUtils) {
   parent::__construct($entity_type, $storage);
   $this->updateUtils = $updateUtils;
 }
开发者ID:joebachana,项目名称:usatne,代码行数:13,代码来源:ScheduledUpdateListBuilder.php

示例7: __construct

 /**
  * Constructs a new OrderListBuilder object.
  *
  * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
  *   The entity type definition.
  * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
  *   The entity type manager.
  * @param \Drupal\Core\Datetime\DateFormatter $date_formatter
  *   The date service.
  */
 public function __construct(EntityTypeInterface $entity_type, EntityTypeManagerInterface $entity_type_manager, DateFormatter $date_formatter)
 {
     parent::__construct($entity_type, $entity_type_manager->getStorage($entity_type->id()));
     $this->dateFormatter = $date_formatter;
 }
开发者ID:alexburrows,项目名称:cream-2.x,代码行数:15,代码来源:OrderListBuilder.php

示例8: __construct

 /**
  * Constructs a new UserListBuilder object.
  *
  * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
  *   The entity type definition.
  * @param \Drupal\Core\Entity\EntityStorageInterface $storage
  *   The entity storage class.
  * @param \Drupal\Core\Entity\Query\QueryFactory $query_factory
  *   The entity query factory.
  */
 public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, QueryFactory $query_factory)
 {
     parent::__construct($entity_type, $storage);
     $this->queryFactory = $query_factory;
 }
开发者ID:alnutile,项目名称:drunatra,代码行数:15,代码来源:UserListBuilder.php

示例9: __construct

 /**
  * Constructs a new RegistrationListBuilder object.
  *
  * {@inheritdoc}
  *
  * @param \Drupal\rng\EventManagerInterface $event_manager
  *   The RNG event manager.
  * @param \Drupal\Core\Routing\RedirectDestinationInterface $redirect_destination
  *   The redirect destination service.
  */
 public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, EventManagerInterface $event_manager, RedirectDestinationInterface $redirect_destination)
 {
     parent::__construct($entity_type, $storage);
     $this->eventManager = $event_manager;
     $this->redirectDestination = $redirect_destination;
 }
开发者ID:justincletus,项目名称:webdrupalpro,代码行数:16,代码来源:RuleListBuilder.php

示例10: __construct

 /**
  * Constructs a new NodeListBuilder object.
  *
  * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
  *   The entity type definition.
  * @param \Drupal\Core\Entity\EntityStorageInterface $storage
  *   The entity storage class.
  */
 public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage)
 {
     parent::__construct($entity_type, $storage);
 }
开发者ID:jasonruyle,项目名称:crm_core,代码行数:12,代码来源:ActivityListBuilder.php

示例11: __construct

 /**
  * Constructs a new RegistrationListBuilder object.
  *
  * {@inheritdoc}
  *
  * @param \Drupal\rng\EventManagerInterface $event_manager
  *   The RNG event manager.
  */
 public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, EventManagerInterface $event_manager)
 {
     parent::__construct($entity_type, $storage);
     $this->eventManager = $event_manager;
 }
开发者ID:justincletus,项目名称:webdrupalpro,代码行数:13,代码来源:RegistrationListBuilder.php

示例12: __construct

 /**
  * Constructs a new ContactListBuilder object.
  *
  * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
  *   The entity type definition.
  * @param \Drupal\Core\Entity\EntityStorageInterface $storage
  *   The entity storage class.
  * @param \Drupal\Core\Routing\UrlGeneratorInterface $url_generator
  *   The url generator.
  */
 public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, UrlGeneratorInterface $url_generator)
 {
     parent::__construct($entity_type, $storage);
     $this->urlGenerator = $url_generator;
 }
开发者ID:dropdog,项目名称:play,代码行数:15,代码来源:ContactListBuilder.php

示例13: __construct

 /**
  * Constructs a new EntityListBuilder object.
  *
  * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
  *   The entity type definition.
  * @param \Drupal\Core\Entity\EntityStorageInterface $storage
  *   The entity storage class.
  * @param EntityLayoutService $entityLayoutService
  *   The entity layout service class.
  */
 public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, EntityLayoutService $entityLayoutService)
 {
     parent::__construct($entity_type, $storage);
     $this->entityLayoutService = $entityLayoutService;
 }
开发者ID:oddhill,项目名称:entity_layout,代码行数:15,代码来源:EntityLayoutListBuilder.php

示例14: __construct

 /**
  * Constructs a new NodeListBuilder object.
  *
  * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
  *   The entity type definition.
  * @param \Drupal\Core\Entity\EntityStorageInterface $storage
  *   The entity storage class.
  * @param \Drupal\Core\Datetime\Date $date_service
  *   The date service.
  */
 public function __construct(EntityTypeInterface $entity_type, EntityStorageInterface $storage, Date $date_service)
 {
     parent::__construct($entity_type, $storage);
     $this->dateService = $date_service;
 }
开发者ID:alnutile,项目名称:drunatra,代码行数:15,代码来源:NodeListBuilder.php


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