summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJennifer Hodgdon <yahgrp@poplarware.com>2012-12-06 13:41:22 -0800
committerJennifer Hodgdon <yahgrp@poplarware.com>2012-12-06 13:41:22 -0800
commit2af199525071320f2ec53fca590fbf31ba9c56fd (patch)
tree95abe902f556e3ad10e209ab90baf40ceb5557d4
parent11fafe6db5dbda24eaa02ed1067a7ba733f6e896 (diff)
downloadbrdo-2af199525071320f2ec53fca590fbf31ba9c56fd.tar.gz
brdo-2af199525071320f2ec53fca590fbf31ba9c56fd.tar.bz2
Issue #1247812 by Albert Volkman, jzacsh: Add docs for user_admin() function
-rw-r--r--modules/user/user.admin.inc15
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/user/user.admin.inc b/modules/user/user.admin.inc
index 1cc2c4a24..932c20593 100644
--- a/modules/user/user.admin.inc
+++ b/modules/user/user.admin.inc
@@ -5,6 +5,21 @@
* Admin page callback file for the user module.
*/
+/**
+ * Page callback: Generates the appropriate user administration form.
+ *
+ * This function generates the user registration, multiple user cancellation,
+ * or filtered user list admin form, depending on the argument and the POST
+ * form values.
+ *
+ * @param string $callback_arg
+ * (optional) Indicates which form to build. Defaults to '', which will
+ * trigger the user filter form. If the POST value 'op' is present, this
+ * function uses that value as the callback argument.
+ *
+ * @return string
+ * A renderable form array for the respective request.
+ */
function user_admin($callback_arg = '') {
$op = isset($_POST['op']) ? $_POST['op'] : $callback_arg;