function Role::buildOptionsForm

Same name and namespace in other branches
  1. 9 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()
  3. 11.x core/modules/user/src/Plugin/views/access/Role.php \Drupal\user\Plugin\views\access\Role::buildOptionsForm()

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.'),
    ];
}

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