1 views_plugin_access_role.inc views_plugin_access_role::options_form(&$form, &$form_state)

Provide the default form for setting options.

Overrides views_plugin_access::options_form

File

core/modules/views/plugins/views_plugin_access_role.inc, line 44
Definition of views_plugin_access_role.

Class

views_plugin_access_role
Access plugin that provides role-based access control.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['role'] = array(
    '#type' => 'checkboxes',
    '#title' => t('Role'),
    '#default_value' => $this->options['role'],
    '#options' => array_map('check_plain', user_roles()),
    '#description' => t('Only the checked roles will be able to access this display. Note that users with "access all views" can see any view, regardless of role.'),
  );
}