function UserData::__construct

Same name in this branch
  1. 10 core/modules/user/src/Plugin/migrate/destination/UserData.php \Drupal\user\Plugin\migrate\destination\UserData::__construct()
  2. 10 core/modules/user/src/UserData.php \Drupal\user\UserData::__construct()
Same name and namespace in other branches
  1. 9 core/modules/user/src/Plugin/views/field/UserData.php \Drupal\user\Plugin\views\field\UserData::__construct()
  2. 9 core/modules/user/src/Plugin/migrate/destination/UserData.php \Drupal\user\Plugin\migrate\destination\UserData::__construct()
  3. 9 core/modules/user/src/UserData.php \Drupal\user\UserData::__construct()
  4. 8.9.x core/modules/user/src/Plugin/views/field/UserData.php \Drupal\user\Plugin\views\field\UserData::__construct()
  5. 8.9.x core/modules/user/src/Plugin/migrate/destination/UserData.php \Drupal\user\Plugin\migrate\destination\UserData::__construct()
  6. 8.9.x core/modules/user/src/UserData.php \Drupal\user\UserData::__construct()
  7. 11.x core/modules/user/src/Plugin/views/field/UserData.php \Drupal\user\Plugin\views\field\UserData::__construct()
  8. 11.x core/modules/user/src/Plugin/migrate/destination/UserData.php \Drupal\user\Plugin\migrate\destination\UserData::__construct()
  9. 11.x core/modules/user/src/UserData.php \Drupal\user\UserData::__construct()

Constructs a UserData 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.

Overrides HandlerBase::__construct

File

core/modules/user/src/Plugin/views/field/UserData.php, line 55

Class

UserData
Provides access to the user data service.

Namespace

Drupal\user\Plugin\views\field

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, UserDataInterface $user_data, ModuleHandlerInterface $module_handler, protected ?ModuleExtensionList $moduleExtensionList = NULL) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->userData = $user_data;
  $this->moduleHandler = $module_handler;
  if ($this->moduleExtensionList === NULL) {
    @trigger_error('Calling ' . __METHOD__ . '() without the $moduleExtensionList argument is deprecated in drupal:10.3.0 and will be required in drupal:12.0.0. See https://www.drupal.org/node/3310017', E_USER_DEPRECATED);
    $this->moduleExtensionList = \Drupal::service('extension.list.module');
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.