function ctools_role_ctools_access_settings
Settings form for the 'by role' access plugin.
1 string reference to 'ctools_role_ctools_access_settings'
File
-
plugins/
access/ role.inc, line 26
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.'),
);
return $form;
}