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. 8.9.x 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 107

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(fn(RoleInterface $role) => Html::escape($role->label()), $this->roleStorage
            ->loadMultiple()),
        '#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.