From 61043698c4a118e9567702e47551bf5831c54cd9 Mon Sep 17 00:00:00 2001 From: "Paul W. Frields" Date: Sat, 10 Jul 2010 14:44:18 -0400 Subject: Add more information in the settings, new plan --- authfas.module | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'authfas.module') 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); } -- cgit