3 include_once
"includes/common.inc";
7 function account_get_user($name) {
8 return db_fetch_object(db_query("SELECT * FROM users WHERE name = '".
check_input($name) .
"'"));
11 function account_email_form() {
14 $output .
= "<p>".
t("Lost your password? Fill out your username and e-mail address, and your password will be mailed to you.") .
"</p>\n";
16 $output .
= form_textfield(t("Username"), "login", $edit[login
], 30, 64, t("Enter your full name or username."));
17 $output .
= form_textfield(t("E-mail address"), "email", $edit[email
], 30, 64, t("You will be sent a new password."));
18 $output .
= form_submit(t("E-mail new password"));
20 return form($REQUEST_URI, $output);
23 function account_page() {
28 if (variable_get("account_register", 1)) {
29 $theme->box(t("Create user account"), account_create_form());
32 if (variable_get("account_password", 1)) {
33 $theme->box(t("E-mail new password"), account_email_form());
39 function account_create_form($edit = array(), $error = "") {
40 global $theme, $REQUEST_URI;
43 $output .
= "<p><font color=\"red\">".
t("Failed to create new account") .
": ".
check_output($error) .
"</font></p>\n";
44 watchdog("account", "failed to create new account: $error");
47 $output .
= "<p>".
t("Registering allows you to comment, to moderate comments and pending submissions, to customize the look and feel of the site and generally helps you interact with the site more efficiently.") .
"</p><p>".
t("To create an account, simply fill out this form an click the 'Create new account' button below. An e-mail will then be sent to you with instructions on how to validate your account.") .
"</p>\n";
50 $output .
= form_textfield(t("Username"), "login", $edit[login
], 30, 64, t("Enter your full name or username: only letters, numbers and common special characters like spaces are allowed."));
51 $output .
= form_textfield(t("E-mail address"), "email", $edit[email
], 30, 64, t("You will be sent instructions on how to validate your account via this e-mail address: make sure it is accurate."));
52 $output .
= form_submit(t("Create new account"));
54 return form($REQUEST_URI, $output);
57 function account_session_start($userid, $passwd) {
60 if ($userid && $passwd) {
61 $user = new
User($userid, $passwd);
65 if ($rule = user_ban($user->userid
, "username")) {
66 watchdog("account", "failed to login for '$user->userid': banned by $rule->type rule '$rule->mask'");
68 else if ($rule = user_ban($user->last_host
, "hostname")) {
69 watchdog("account", "failed to login for '$user->userid': banned by $rule->type rule '$rule->mask'");
72 session_register("user");
73 watchdog("account", "session opened for '$user->userid'");
77 watchdog("account", "failed to login for '$userid': invalid password");
81 function account_session_close() {
83 watchdog("account", "session closed for user '$user->userid'");
89 function account_info_edit($error = 0) {
95 $form .
= "<p><font color=\"red\">$error</font></p>\n";
98 $form .
= form_textfield(t("Username"), "userid", $user->userid
, 30, 55, t("Required, a unique name that can be used to log on."));
99 $form .
= form_textfield(t("Name"), "name", $user->name
, 30, 55, t("Required, a unique name displayed with your contributions."));
100 $form .
= form_item(t("Real e-mail address"), $user->real_email
, t("Required, unique, can not be changed.") .
" ".
t("Your real e-mail address is never displayed publicly: only needed in case you lose your password."));
101 $form .
= form_textfield(t("Fake e-mail address"), "fake_email", $user->fake_email
, 30, 55, t("Optional") .
". ".
t("Displayed publicly so you may spam proof your real e-mail address if you want."));
102 $form .
= form_textfield(t("Homepage"), "url", $user->url
, 30, 55, t("Optional") .
". ".
t("Make sure you enter fully qualified URLs only. That is, remember to include \"http://\"."));
103 $form .
= form_textarea(t("Bio"), "bio", $user->bio
, 35, 5, t("Optional") .
". ".
t("Maximal 255 characters.") .
" ".
t("This biographical information is publicly displayed on your user page.") .
"<BR>".
t("Allowed HTML tags") .
": ".
htmlspecialchars(variable_get("allowed_html", "")));
104 $form .
= form_textarea(t("Signature"), "signature", $user->signature
, 35, 5, t("Optional") .
". ".
t("Maximal 255 characters.") .
" ".
t("This information will be publicly displayed at the end of your comments.") .
"<BR>".
t("Allowed HTML tags") .
": ".
htmlspecialchars(variable_get("allowed_html", "")));
105 $form .
= form_item(t("Password"), "<INPUT TYPE=\"password\" NAME=\"edit[pass1]\" SIZE=\"10\" MAXLENGTH=\"20\"> <INPUT TYPE=\"password\" NAME=\"edit[pass2]\" SIZE=\"10\" MAXLENGTH=\"20\">", t("Enter your new password twice if you want to change your current password or leave it blank if you are happy with your current password."));
106 $form .
= form_submit(t("Save user information"));
109 $theme->box(t("Edit user information"), form("account.php", $form));
117 function account_info_save($edit) {
120 if ($error = user_validate_name($edit[userid
])) {
121 return t("Invalid name") .
": $error";
123 else if ($error = user_validate_name($edit[name
])) {
124 return t("Invalid name") .
": $error";
126 else if (db_num_rows(db_query("SELECT userid FROM users WHERE id != '$user->id' AND (LOWER(userid) = LOWER('$edit[userid]') OR LOWER(name) = LOWER('$edit[userid]'))")) > 0) {
127 return t("Invalid username") .
": the username '$edit[userid]' is already taken.";
129 else if (db_num_rows(db_query("SELECT name FROM users WHERE id != '$user->id' AND (LOWER(userid) = LOWER('$edit[name]') OR LOWER(name) = LOWER('$edit[name]'))")) > 0) {
130 return t("Invalid name") .
": the name '$edit[name]' is already taken.";
132 else if ($user->id
) {
133 $user = user_save($user, array("userid" => $edit[userid
], "name" => $edit[name
], "fake_email" => $edit[fake_email
], "url" => $edit[url
], "bio" => $edit[bio
], "signature" => $edit[signature
]));
134 if ($edit[pass1
] && $edit[pass1
] == $edit[pass2
]) $user = user_save($user, array("passwd" => $edit[pass1
]));
138 function account_settings_edit() {
139 global $cmodes, $corder, $theme, $themes, $languages, $user;
142 foreach ($themes as
$key=>$value) $options .
= "<OPTION VALUE=\"$key\"".
(($user->theme
== $key) ?
" SELECTED" : "") .
">$key - $value[1]</OPTION>\n";
143 $form .
= form_item(t("Theme"), "<SELECT NAME=\"edit[theme]\">$options</SELECT>", t("Selecting a different theme will change the look and feel of the site."));
144 for ($zone = -43200; $zone <= 46800; $zone += 3600) $zones[$zone] = date("l, F dS, Y - h:i A", time() - date("Z") + $zone) .
" (GMT ".
$zone / 3600 .
")";
145 $form .
= form_select(t("Timezone"), "timezone", $user->timezone
, $zones, t("Select what time you currently have and your timezone settings will be set appropriate."));
146 $form .
= form_select(t("Language"), "language", $user->language
, $languages, t("Selecting a different language will change the language of the site."));
147 $form .
= form_select(t("Number of nodes to display"), "nodes", $user->nodes
, array(10 => 10, 15 => 15, 20 => 20, 25 => 25, 30 => 30), t("The maximum number of nodes that will be displayed on the main page."));
148 $form .
= form_select(t("Comment display mode"), "mode", $user->mode
, $cmodes);
149 $form .
= form_select(t("Comment display order"), "sort", $user->sort, $corder);
150 for ($count = -1; $count < 6; $count++) $threshold[$count] = t("Filter") .
" - $count";
151 $form .
= form_select(t("Comment filter"), "threshold", $user->threshold
, $threshold, t("Comments that scored less than this threshold setting will be ignored. Anonymous comments start at 0, comments of people logged on start at 1 and moderators can add and subtract points."));
152 $form .
= form_submit(t("Save site settings"));
155 $theme->box(t("Edit your preferences"), form("account.php", $form));
163 function account_settings_save($edit) {
167 $user = user_save($user, array("theme" => $edit[theme
], "timezone" => $edit[timezone
], "language" => $edit[language
], "nodes" => $edit[nodes
], "mode" => $edit[mode
], "sort" => $edit[sort], "threshold" => $edit[threshold
]));
172 function account_blocks_edit() {
173 global $theme, $user;
177 $result = db_query("SELECT * FROM blocks WHERE status = 1 ORDER BY module");
178 while ($block = db_fetch_object($result)) {
179 $entry = db_fetch_object(db_query("SELECT * FROM layout WHERE block = '".
check_input($block->name
) .
"' AND user = '$user->id'"));
180 $options .
= "<input type=\"checkbox\" name=\"edit[$block->name]\"".
($entry->user ?
" checked=\"checked\"" : "") .
" /> ".
t($block->name
) .
"<br />\n";
183 $form .
= form_item(t("Blocks in side bars"), $options, t("Enable the blocks you would like to see displayed in the side bars."));
184 $form .
= form_submit(t("Save block settings"));
188 $theme->box(t("Edit your content"), form("account.php", $form));
196 function account_blocks_save($edit) {
199 db_query("DELETE FROM layout WHERE user = '$user->id'");
200 foreach (($edit ?
$edit : array()) as
$block=>$weight) {
201 db_query("INSERT INTO layout (user, block) VALUES ('$user->id', '".
check_input($block) .
"')");
206 function account_user($name) {
207 global $user, $theme;
209 if ($user->id
&& $user->name
== $name) {
210 $output .
= "<TABLE BORDER=\"0\" CELLPADDING=\"2\" CELLSPACING=\"2\">\n";
211 $output .
= " <TR><TD ALIGN=\"right\"><B>".
t("Name") .
":</B></TD><TD>".
check_output($user->name
) .
"</TD></TR>\n";
212 $output .
= " <TR><TD ALIGN=\"right\"><B>".
t("E-mail") .
":</B></TD><TD>".
format_email($user->fake_email
) .
"</A></TD></TR>\n";
213 $output .
= " <TR><TD ALIGN=\"right\"><B>".
t("Homepage") .
":</B></TD><TD>".
format_url($user->url
) .
"</TD></TR>\n";
214 $output .
= " <TR><TD ALIGN=\"right\" VALIGN=\"top\"><B>".
t("Bio") .
":</B></TD><TD>".
check_output($user->bio
, 1) .
"</TD></TR>\n";
215 $output .
= " <TR><TD ALIGN=\"right\" VALIGN=\"top\"><B>".
t("Signature") .
":</B></TD><TD>".
check_output($user->signature
, 1) .
"</TD></TR>\n";
216 $output .
= "</TABLE>\n";
218 // Display account information:
220 $theme->box(t("Personal information"), $output);
223 elseif ($name && $account = account_get_user($name)) {
226 // Display account information:
227 $output .
= "<TABLE BORDER=\"0\" CELLPADDING=\"1\" CELLSPACING=\"1\">\n";
228 $output .
= " <TR><TD ALIGN=\"right\"><B>".
t("Name") .
":</B></TD><TD>".
check_output($account->name
) .
"</TD></TR>\n";
229 $output .
= " <TR><TD ALIGN=\"right\"><B>".
t("E-mail") .
":</B></TD><TD>".
format_email($account->fake_email
) .
"</TD></TR>\n";
230 $output .
= " <TR><TD ALIGN=\"right\"><B>".
t("Homepage") .
":</B></TD><TD>".
format_url($account->url
) .
"</TD></TR>\n";
231 $output .
= " <TR><TD ALIGN=\"right\"><B>".
t("Bio") .
":</B></TD><TD>".
check_output($account->bio
) .
"</TD></TR>\n";
232 $output .
= "</TABLE>\n";
234 $theme->box(strtr(t("%a's user information"), array("%a" => $name)), $output);
236 // Display contributions:
237 if (user_access("access contents")) {
238 $result = db_query("SELECT n.nid, n.type, n.title, n.timestamp, COUNT(c.cid) AS count FROM node n LEFT JOIN comments c ON c.lid = n.nid WHERE n.status = '".
node_status("posted") .
"' AND n.author = '$account->id' GROUP BY n.nid DESC ORDER BY n.nid DESC LIMIT 25");
240 while ($node = db_fetch_object($result)) {
241 $nodes .
= "<TABLE BORDER=\"0\" CELLPADDING=\"1\" CELLSPACING=\"1\">\n";
242 $nodes .
= " <TR><TD ALIGN=\"right\" VALIGN=\"top\"><B>".
t("Subject") .
":</B></TD><TD><A HREF=\"node.php?id=$node->nid\">".
check_output($node->title
) .
"</A> (".
format_plural($node->count, "comment", "comments") .
")</TD></TR>\n";
243 $nodes .
= " <TR><TD ALIGN=\"right\" VALIGN=\"top\"><B>".
t("Type") .
":</B></TD><TD>".
check_output($node->type
) .
"</A></TD></TR>\n";
244 $nodes .
= " <TR><TD ALIGN=\"right\" VALIGN=\"top\"><B>".
t("Date") .
":</B></TD><TD>".
format_date($node->timestamp
) .
"</TD></TR>\n";
245 $nodes .
= "</TABLE>\n";
249 $theme->box(strtr(t("%a's contributions"), array("%a" => $name)), ($nodes ?
$nodes : t("Not posted any nodes.")));
252 if (user_access("access comments")) {
253 $sresult = db_query("SELECT n.nid, n.title, COUNT(n.nid) AS count FROM comments c LEFT JOIN node n ON c.lid = n.nid WHERE c.author = '$account->id' GROUP BY n.nid DESC ORDER BY n.nid DESC LIMIT 5");
255 while ($node = db_fetch_object($sresult)) {
256 $comments .
= "<LI>".
format_plural($node->count, "comment", "comments") .
" ".
t("attached to node") .
" `<A HREF=\"node.php?id=$node->nid\">".
check_output($node->title
) .
"</A>`:</LI>\n";
257 $comments .
= " <UL>\n";
259 $cresult = db_query("SELECT * FROM comments WHERE author = '$account->id' AND lid = '$node->nid'");
260 while ($comment = db_fetch_object($cresult)) {
261 $comments .
= " <LI><A HREF=\"node.php?id=$node->nid&cid=$comment->cid&pid=$comment->pid#$comment->cid\">".
check_output($comment->subject
) .
"</A> (".
t("replies") .
": ".
comment_num_replies($comment->cid
) .
", ".
t("votes") .
": $comment->votes, ".
t("score") .
": ".
comment_score($comment) .
")</LI>\n";
263 $comments .
= " </UL>\n";
266 $theme->box(strtr(t("%a's comments"), array("%a" => $name)), ($comments ?
$comments : t("Not posted any comments.")));
276 function account_email_submit($edit) {
279 $result = db_query("SELECT id FROM users WHERE (userid = '".
check_input($edit[login
]) .
"' OR name = '".
check_input($edit[login
]) .
"') AND real_email = '".
check_input($edit[email
]) .
"'");
281 if ($account = db_fetch_object($result)) {
284 ** Generate a password and a confirmation hash:
287 $passwd = user_password();
288 $hash = substr(md5("$edit[login]. ".
time() .
""), 0, 12);
292 ** Update the user account in the database:
295 db_query("UPDATE users SET passwd = PASSWORD('$passwd'), hash = '$hash', status = '$status' WHERE userid = '".
check_input($edit[login
]) .
"'");
298 ** Send out an e-mail with the account details:
301 $link = path_uri() .
"account.php?op=confirm&name=".
urlencode($edit[login
]) .
"&hash=$hash";
302 $subject = strtr(t("Account details for %a"), array("%a" => variable_get(site_name
, "drupal")));
303 $message = strtr(t("%a,\n\n\nyou requested us to e-mail you a new password for your account at %b. You will need to re-confirm your account or you will not be able to login. To confirm your account updates visit the URL below:\n\n %c\n\nOnce confirmed you can login using the following username and password:\n\n username: %a\n password: %d\n\n\n-- %b team"), array("%a" => $edit[login
], "%b" => variable_get(site_name
, "drupal"), "%c" => $link, "%d" => $passwd));
305 mail($edit[email
], $subject, $message, "From: noreply");
307 watchdog("account", "new password: `$edit[login]' <$edit[email]>");
309 $output = t("Your password and further instructions have been sent to your e-mail address.");
312 watchdog("account", "new password: '$edit[login]' and <$edit[email]> do not match");
314 $output = t("Could not sent password: no match for the specified username and e-mail address.");
318 $theme->box(t("E-mail new password"), $output);
322 function account_create_submit($edit) {
323 global $theme, $HTTP_HOST, $REQUEST_URI;
325 if (variable_get("account_register", 1)) {
329 if ($error = user_validate_name($edit[login
])) {
330 $theme->box(t("Create user account"), account_create_form($edit, $error));
332 else if ($error = user_validate_mail($edit[email
])) {
333 $theme->box(t("Create user account"), account_create_form($edit, $error));
335 else if ($ban = user_ban($edit[login
], "username")) {
336 $theme->box(t("Create user account"), account_create_form($edit, strtr(t("the username '%a' is banned"), array("%a" => $edit[login
])) .
": <i>$ban->reason</i>."));
338 else if ($ban = user_ban($edit[real_email
], "e-mail address")) {
339 $theme->box(t("Create user account"), account_create_form($edit, strtr(t("the e-mail '%a' is banned"), array("%a" => $edit[email
])) .
": <i>$ban->reason</i>."));
341 else if (db_num_rows(db_query("SELECT userid FROM users WHERE (LOWER(userid) = LOWER('$edit[login]') OR LOWER(name) = LOWER('$edit[login]'))")) > 0) {
342 $theme->box(t("Create user account"), account_create_form($edit, strtr(t("the username '%a' is already taken."), array("%a" => $edit[login
]))));
344 else if (db_num_rows(db_query("SELECT real_email FROM users WHERE LOWER(real_email) = LOWER('$edit[email]')")) > 0) {
345 $theme->box(t("Create user account"), account_create_form($edit, strtr(t("the e-mail address '%a' is already in use by another account."),array("%a" => $edit[email
]))));
350 ** Generate a password and a confirmation hash:
353 $edit[passwd
] = user_password();
354 $edit[hash
] = substr(md5("$edit[login]. ".
time()), 0, 12);
357 ** Create the new user account in the database:
360 $user = user_save("", array("userid" => $edit[login
], "name" => $edit[login
], "real_email" => $edit[email
], "passwd" => $edit[passwd
], "role" => "authenticated user", "status" => 1, "hash" => $edit[hash
]));
363 ** Send out an e-mail with the account details:
366 $link = path_uri() .
"account.php?op=confirm&name=".
urlencode($edit[login
]) .
"&hash=$edit[hash]";
367 $subject = strtr(t("Account details for %a"), array("%a" => variable_get(site_name
, "drupal")));
368 $message = strtr(t("%a,\n\n\nsomeone signed up for a user account on %b and supplied this e-mail address as their contact. If it wasn't you, don't get your panties in a bundle and simply ignore this mail. If this was you, you will have to confirm your account first or you will not be able to login. To confirm your account visit the URL below:\n\n %c\n\nOnce confirmed you can login using the following username and password:\n\n username: %a\n password: %d\n\n\n-- %b team\n"), array("%a" => $edit[login
], "%b" => variable_get(site_name
, "drupal"), "%c" => $link, "%d" => $edit[passwd
]));
370 mail($edit[email
], $subject, $message, "From: noreply");
372 watchdog("account", "new account: `$edit[login]' <$edit[email]>");
374 $theme->box(t("Create user account"), t("Congratulations! Your member account has been successfully created and further instructions on how to confirm your account have been sent to your e-mail address. You have to confirm your account first or you will not be able to login."));
381 function account_create_confirm($name, $hash) {
384 $result = db_query("SELECT userid, hash, status FROM users WHERE userid = '$name'");
386 if ($account = db_fetch_object($result)) {
387 if ($account->status
== 1) {
388 if ($account->hash
== $hash) {
389 db_query("UPDATE users SET status = '2', hash = '' WHERE userid = '$name'");
390 $output = t("Your account has been successfully confirmed.");
391 watchdog("account", "$name: account confirmation successful");
394 $output = t("Confirmation failed: invalid confirmation hash.");
395 watchdog("warning", "$name: invalid confirmation hash");
399 $output = t("Confirmation failed: your account has already been confirmed.");
400 watchdog("warning", "$name: attempt to re-confirm account");
404 $output = t("Confirmation failed: non-existing account.");
405 watchdog("warning", "$name: attempt to confirm non-existing account");
409 $theme->box(t("Create user account"), $output);
413 function account_track_comments() {
414 global $theme, $user;
416 $sresult = db_query("SELECT n.nid, n.title, COUNT(n.nid) AS count FROM comments c LEFT JOIN node n ON c.lid = n.nid WHERE c.author = '$user->id' GROUP BY n.nid DESC ORDER BY n.nid DESC LIMIT 5");
418 while ($node = db_fetch_object($sresult)) {
419 $output .
= "<LI>".
format_plural($node->count, "comment", "comments") .
" ".
t("attached to node") .
" `<A HREF=\"node.php?id=$node->nid\">".
check_output($node->title
) .
"</A>`:</LI>\n";
420 $output .
= " <UL>\n";
422 $cresult = db_query("SELECT * FROM comments WHERE author = '$user->id' AND lid = '$node->nid'");
423 while ($comment = db_fetch_object($cresult)) {
424 $output .
= " <LI><A HREF=\"node.php?id=$node->nid&cid=$comment->cid&pid=$comment->pid#$comment->cid\">".
check_output($comment->subject
) .
"</A> (".
t("replies") .
": ".
comment_num_replies($comment->cid
) .
", ".
t("votes") .
": $comment->votes, ".
t("score") .
": ".
comment_score($comment) .
")</LI>\n";
426 $output .
= " </UL>\n";
430 $theme->box(t("Track your comments"), ($output ?
$output : t("You have not posted any comments recently.")));
434 function account_track_contributions() {
435 global $theme, $user;
437 $result = db_query("SELECT n.nid, n.type, n.title, n.timestamp, COUNT(c.cid) AS count FROM node n LEFT JOIN comments c ON c.lid = n.nid WHERE n.status = '".
node_status("posted") .
"' AND n.author = '$user->id' GROUP BY n.nid DESC ORDER BY n.nid DESC LIMIT 25");
439 while ($node = db_fetch_object($result)) {
440 $output .
= "<TABLE BORDER=\"0\" CELLPADDING=\"1\" CELLSPACING=\"1\">\n";
441 $output .
= " <TR><TD ALIGN=\"right\" VALIGN=\"top\"><B>".
t("Subject") .
":</B></TD><TD><A HREF=\"node.php?id=$node->nid\">".
check_output($node->title
) .
"</A> (".
format_plural($node->count, "comment", "comments") .
")</TD></TR>\n";
442 $output .
= " <TR><TD ALIGN=\"right\" VALIGN=\"top\"><B>".
t("Type") .
":</B></TD><TD>".
check_output($node->type
) .
"</A></TD></TR>\n";
443 $output .
= " <TR><TD ALIGN=\"right\" VALIGN=\"top\"><B>".
t("Date") .
":</B></TD><TD>".
format_date($node->timestamp
) .
"</TD></TR>\n";
444 $output .
= "</TABLE>\n";
449 $theme->box(t("Track your contributions"), ($output ?
$output : t("You have not posted any nodes.")));
453 function account_track_site() {
454 global $theme, $user;
456 $period = 259200; // 3 days
460 $nresult = db_query("SELECT n.nid, n.title, COUNT(c.cid) AS count FROM comments c LEFT JOIN node n ON n.nid = c.lid WHERE n.status = '".
node_status("posted") .
"' AND c.timestamp > ".
(time() - $period) .
" GROUP BY c.lid ORDER BY count DESC");
461 while ($node = db_fetch_object($nresult)) {
462 $output .
= "<LI>".
format_plural($node->count, "comment", "comments") .
" ".
t("attached to") .
" '<A HREF=\"node.php?id=$node->nid\">".
check_output($node->title
) .
"</A>':</LI>";
464 $cresult = db_query("SELECT c.subject, c.cid, c.pid, u.userid, u.name FROM comments c LEFT JOIN users u ON u.id = c.author WHERE c.lid = $node->nid ORDER BY c.timestamp DESC LIMIT $node->count");
466 while ($comment = db_fetch_object($cresult)) {
467 $output .
= " <LI>'<A HREF=\"node.php?id=$node->nid&cid=$comment->cid&pid=$comment->pid#$comment->cid\">".
check_output($comment->subject
) .
"</A>' ".
t("by") .
" ".
format_name($comment->name
) .
"</LI>\n";
469 $output .
= "</UL>\n";
472 $theme->box(t("Recent comments"), ($output ?
$output : t("No comments recently.")));
476 $result = db_query("SELECT n.title, n.nid, n.type, n.status, u.userid, u.name FROM node n LEFT JOIN users u ON n.author = u.id WHERE ".
time() .
" - n.timestamp < $period ORDER BY n.timestamp DESC LIMIT 10");
478 if (db_num_rows($result)) {
479 $output .
= "<TABLE BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"4\">\n";
480 $output .
= " <TR><TH>".
t("Subject") .
"</TH><TH>".
t("Author") .
"</TH><TH>".
t("Type") .
"</TH><TH>".
t("Status") .
"</TH></TR>\n";
481 while ($node = db_fetch_object($result)) {
482 $output .
= " <TR><TD><A HREF=\"node.php?id=$node->nid\">".
check_output($node->title
) .
"</A></TD><TD ALIGN=\"center\">".
format_name($node->name
) .
"</TD><TD ALIGN=\"center\">$node->type</TD><TD>".
node_status($node->status
) .
"</TD></TR>";
484 $output .
= "</TABLE>";
487 $theme->box(t("Recent nodes"), ($output ?
$output : t("No nodes recently.")));
493 case
t("E-mail new password"):
494 account_email_submit($edit);
496 case
t("Create new account"):
497 account_create_submit($edit);
499 case
t("Save user information"):
500 if ($error = account_info_save($edit)) {
501 account_info_edit($error);
504 account_user($user->name
);
507 case
t("Save site settings"):
508 account_settings_save($edit);
509 header("Location: account.php?op=info");
511 case
t("Save block settings"):
512 account_blocks_save($edit);
513 account_user($user->name
);
516 account_create_confirm(check_input($name), check_input($hash));
519 account_session_start(check_input($userid), check_input($passwd));
520 if($HTTP_REFERER <> "") {
521 header("Location: $HTTP_REFERER");
524 header("Location: account.php?op=info");
528 account_session_close();
529 header("Location: account.php?op=info");
534 account_user($user->name
);
537 account_track_site();
539 case
"contributions":
540 account_track_contributions();
543 account_track_comments();
546 account_user(check_input($name));
552 account_blocks_edit();
555 account_settings_edit();
562 account_user($user->name
);