You are here

public function LinkBase::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/field/LinkBase.php \Drupal\views\Plugin\views\field\LinkBase::__construct()
  2. 10 core/modules/views/src/Plugin/views/field/LinkBase.php \Drupal\views\Plugin\views\field\LinkBase::__construct()

Constructs a LinkBase object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\Core\Access\AccessManagerInterface $access_manager: The access manager.

\Drupal\Core\Entity\EntityTypeManagerInterface|null $entity_type_manager: The entity type manager.

\Drupal\Core\Entity\EntityRepositoryInterface|null $entity_repository: The entity repository.

\Drupal\Core\Language\LanguageManagerInterface|null $language_manager: The language manager.

Overrides HandlerBase::__construct

File

core/modules/views/src/Plugin/views/field/LinkBase.php, line 79

Class

LinkBase
Field handler to present a link to an entity.

Namespace

Drupal\views\Plugin\views\field

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, AccessManagerInterface $access_manager, EntityTypeManagerInterface $entity_type_manager = NULL, EntityRepositoryInterface $entity_repository = NULL, LanguageManagerInterface $language_manager = NULL) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->accessManager = $access_manager;
  if (!$entity_type_manager) {
    @trigger_error('Passing the entity type manager service to \\Drupal\\views\\Plugin\\views\\field\\LinkBase::__construct is required since 8.7.0, see https://www.drupal.org/node/3023427.', E_USER_DEPRECATED);
    $entity_type_manager = \Drupal::service('entity_type.manager');
  }
  $this->entityTypeManager = $entity_type_manager;
  if (!$entity_repository) {
    @trigger_error('Passing the entity repository service to \\Drupal\\views\\Plugin\\views\\field\\LinkBase::__construct is required since 8.7.0, see https://www.drupal.org/node/3023427.', E_USER_DEPRECATED);
    $entity_repository = \Drupal::service('entity.repository');
  }
  $this->entityRepository = $entity_repository;
  if (!$language_manager) {
    @trigger_error('Passing the language manager service to \\Drupal\\views\\Plugin\\views\\field\\LinkBase::__construct is required since 8.7.0, see https://www.drupal.org/node/3023427.', E_USER_DEPRECATED);
    $language_manager = \Drupal::service('language_manager');
  }
  $this->languageManager = $language_manager;
}