summaryrefslogtreecommitdiff
path: root/modules/account.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/account.module')
-rw-r--r--modules/account.module9
1 files changed, 7 insertions, 2 deletions
diff --git a/modules/account.module b/modules/account.module
index 7169da5ff..11f69fb16 100644
--- a/modules/account.module
+++ b/modules/account.module
@@ -1,6 +1,11 @@
<?
-$module = array("admin" => "account_admin");
+$module = array("cron" => "account_cron",
+ "admin" => "account_admin");
+
+function account_cron() {
+ // clean-up user database
+}
function account_display($order = "username") {
$sort = array("ID" => "id", "fake e-mail address" => "fake_email", "homepage" => "url", "hostname" => "last_host", "last access date" => "last_access", "real e-mail address" => "real_email", "real name" => "name", "status" => "status", "theme" => "theme", "timezone" => "timezone", "username" => "userid");
@@ -122,4 +127,4 @@ function account_admin() {
}
}
-?> \ No newline at end of file
+?>