Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Role.php

function Role::buildOptionsForm

Overrides PluginBase::buildOptionsForm

File

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

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

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal