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