function views_plugin_access_role::options_form

Overrides views_plugin_access::options_form

File

plugins/views_plugin_access_role.inc, line 60

Class

views_plugin_access_role
Access plugin that provides role-based access control.

Code

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