You are here

function ctools_role_ctools_access_settings in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 plugins/access/role.inc \ctools_role_ctools_access_settings()

Settings form for the 'by role' access plugin

1 string reference to 'ctools_role_ctools_access_settings'
role.inc in plugins/access/role.inc
Plugin to provide access control based upon role membership.

File

plugins/access/role.inc, line 26
Plugin to provide access control based upon role membership.

Code

function ctools_role_ctools_access_settings(&$form, &$form_state, $conf) {
  $form['settings']['rids'] = array(
    '#type' => 'checkboxes',
    '#title' => t('Role'),
    '#default_value' => $conf['rids'],
    '#options' => ctools_get_roles(),
    '#description' => t('Only the checked roles will be granted access.'),
  );
}