You are here

protected function UserData::defineOptions in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/user/src/Plugin/views/field/UserData.php \Drupal\user\Plugin\views\field\UserData::defineOptions()
  2. 9 core/modules/user/src/Plugin/views/field/UserData.php \Drupal\user\Plugin\views\field\UserData::defineOptions()

File

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

Class

UserData
Provides access to the user data service.

Namespace

Drupal\user\Plugin\views\field

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['data_module'] = [
    'default' => '',
  ];
  $options['data_name'] = [
    'default' => '',
  ];
  return $options;
}