summaryrefslogtreecommitdiffstats
path: root/authfas.module
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2010-07-10 15:04:27 -0400
committerPaul W. Frields <stickster@gmail.com>2010-07-10 15:04:27 -0400
commit680dc960cb8d7999ac6bd95f7e977b03e40f0c63 (patch)
treec257b470d4825ddd511c461c558b7e5bb0581954 /authfas.module
parent5968b052aa19dbf4941171a81d98b466e3da90f2 (diff)
downloaddrupal-authfas-6x-680dc960cb8d7999ac6bd95f7e977b03e40f0c63.tar.gz
drupal-authfas-6x-680dc960cb8d7999ac6bd95f7e977b03e40f0c63.tar.xz
drupal-authfas-6x-680dc960cb8d7999ac6bd95f7e977b03e40f0c63.zip
Add dummy form_alter to see if it works
Diffstat (limited to 'authfas.module')
-rw-r--r--authfas.module6
1 files changed, 6 insertions, 0 deletions
diff --git a/authfas.module b/authfas.module
index 1cfb664..ca15087 100644
--- a/authfas.module
+++ b/authfas.module
@@ -106,3 +106,9 @@ function authfas_menu() {
// http://drupal.org/node/206761
return TRUE;
}
+
+function user_admin_role_form_alter(&$form, $form_state, $form_id) {
+ if ($form_id == "user_admin_role") {
+ form['foo'] = array('#title' => t('FOO'),);
+ }
+}