summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2010-07-10 14:44:18 -0400
committerPaul W. Frields <stickster@gmail.com>2010-07-10 14:44:18 -0400
commit61043698c4a118e9567702e47551bf5831c54cd9 (patch)
treea5fc5116d849437404d933de73769ce186247995
parenteaf1084a381d2cfe65fe817e615165e6312f8387 (diff)
downloaddrupal-authfas-6x-61043698c4a118e9567702e47551bf5831c54cd9.tar.gz
drupal-authfas-6x-61043698c4a118e9567702e47551bf5831c54cd9.tar.xz
drupal-authfas-6x-61043698c4a118e9567702e47551bf5831c54cd9.zip
Add more information in the settings, new plan
-rw-r--r--authfas.module13
1 files changed, 7 insertions, 6 deletions
diff --git a/authfas.module b/authfas.module
index 7817264..fef68db 100644
--- a/authfas.module
+++ b/authfas.module
@@ -59,12 +59,6 @@ function authfas_admin() {
'#description' => t('The location of the FAS instance to which users can authenticate'),
'#required' => TRUE,
);
- /**
- * FIXME: This is where we will do some magic: Retrieve data from
- * the MySQL table that maps rid <--> FAS_groupname, and display an
- * editable row for each entry, along with a remove button. An add
- * button will allow creation of new rows.
- */
// We have a required setting for the Authenticated User role.
$form['authfas_authuser_fasgroup'] = array(
@@ -76,6 +70,13 @@ function authfas_admin() {
'#description' => t('To authenticate when this module is enabled, a user must be a member of this FAS group.'),
'#required' => TRUE,
);
+
+ $form['authfas_more_information'] = array(
+ '#type' => 'item',
+ '#title' => t('More information'),
+ '#description' => t('Further role mappings are found in the settings page for each role.'),
+ );
+
return system_settings_form($form);
}