You are here

public function Role::buildOptionsForm in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/user/src/Plugin/views/access/Role.php \Drupal\user\Plugin\views\access\Role::buildOptionsForm()
  2. 10 core/modules/user/src/Plugin/views/access/Role.php \Drupal\user\Plugin\views\access\Role::buildOptionsForm()

Provide a form to edit options for this plugin.

Overrides PluginBase::buildOptionsForm

File

core/modules/user/src/Plugin/views/access/Role.php, line 106

Class

Role
Access plugin that provides role-based access control.

Namespace

Drupal\user\Plugin\views\access

Code

public function buildOptionsForm(&$form, FormStateInterface $form_state) {
  parent::buildOptionsForm($form, $form_state);
  $form['role'] = [
    '#type' => 'checkboxes',
    '#title' => $this
      ->t('Role'),
    '#default_value' => $this->options['role'],
    '#options' => array_map('\\Drupal\\Component\\Utility\\Html::escape', user_role_names()),
    '#description' => $this
      ->t('Only the checked roles will be able to access this display.'),
  ];
}