2001-03-24 16:36:13 +00:00
<?php
2001-10-20 18:57:09 +00:00
// $Id$
2001-03-24 16:36:13 +00:00
2001-11-01 17:04:20 +00:00
function book_node($field) {
global $user;
2001-11-07 18:14:46 +00:00
$info["name"] = t("book page");
2001-11-11 23:23:41 +00:00
$info["description"] = t("A book is a collaborative writing effort: users can collaborate writing the pages of the book, positioning the pages in the right order, and reviewing or modifying pages previously written. So when you have some information to share or when you read a page of the book and you didn't like it, or if you think a certain page could have been written better, you can do something about it.");
2001-11-01 17:04:20 +00:00
return $info[$field];
}
function book_access($op, $node) {
2001-11-04 23:30:39 +00:00
global $user;
2001-11-01 17:04:20 +00:00
if ($op == "view") {
2001-11-04 23:30:39 +00:00
/*
** Everyone can access all published book pages whether these pages
** are still waiting for approval or not. We might not always want
** to display pages that are waiting for approval, but we take care
** of that problem in the book_view() function.
*/
return $node->status;
2001-11-01 17:04:20 +00:00
}
2001-11-24 15:10:36 +00:00
if ($op == "create") {
2001-11-01 17:04:20 +00:00
return 1;
}
if ($op == "update") {
2001-11-04 15:57:43 +00:00
/*
2001-11-04 23:30:39 +00:00
** Everyone can upate a book page if there are no suggested updates
** of that page waiting for approval and as long as the "create new
** revision"-bit is set; that is, only updates that don't overwrite
** the current or pending information are allowed.
2001-11-04 15:57:43 +00:00
*/
2001-11-04 23:30:39 +00:00
return !$node->moderate && $node->revision;
2001-11-04 15:57:43 +00:00
}
2001-11-01 17:04:20 +00:00
}
2001-11-12 22:17:52 +00:00
function book_save($op, $node) {
2001-11-24 15:10:36 +00:00
global $user, $REQUEST_URI;
2001-11-12 22:17:52 +00:00
if ($op == "approve") {
return array("status" => 1);
}
if ($op == "create") {
return array("moderate" => 1, "parent", "promote" => 0, "status" => 1, "weight");
}
if ($op == "decline") {
return array("status" => 0);
}
if ($op == "update") {
2001-11-24 15:10:36 +00:00
if (strstr($REQUEST_URI, "module.php?mod=node&op=edit")) {
2001-11-12 22:17:52 +00:00
/*
2001-11-24 15:10:36 +00:00
** If a regular user updates a book page, we always create a new
** revision. All new revisions have to be approved (moderation)
** and are not promoted by derault. See also: book_load().
2001-11-12 22:17:52 +00:00
*/
2001-11-25 15:58:08 +00:00
return array("created" => time(), "moderate" => 1, "parent", "promote" => 0, "score" => 0, "status" => 1, "users" => "", "revisions", "votes" => 0, "weight");
2001-11-12 22:17:52 +00:00
}
2001-11-24 15:10:36 +00:00
else if (user_access("adminster nodes")) {
2001-11-12 22:17:52 +00:00
/*
2001-11-24 15:10:36 +00:00
** If a node administrator updates a book page, we don't create a
** new revision unless we are explicitly instructed to. If a node
** administrator updates a book page using the "update this book
** page"-link (like regular users do) then he'll be treated as a
** regular user.
2001-11-12 22:17:52 +00:00
*/
2001-11-24 15:10:36 +00:00
return array("parent", "weight");
2001-11-12 22:17:52 +00:00
}
}
}
2001-11-01 11:00:51 +00:00
function book_link($type) {
if ($type == "page" && user_access("access content")) {
$links[] = "<a href=\"module.php?mod=book\">". t("collaborative book") ."</a>";
2001-03-25 10:57:01 +00:00
}
2001-11-01 11:00:51 +00:00
2001-11-18 12:30:08 +00:00
if ($type == "admin" && user_access("administer nodes")) {
$links[] = "<a href=\"admin.php?mod=book\">". t("collaborative book") ."</a>";
}
2001-11-01 11:00:51 +00:00
return $links ? $links : array();
2001-03-25 10:57:01 +00:00
}
2001-11-01 11:00:51 +00:00
function book_load($node) {
2001-11-24 15:10:36 +00:00
global $user, $REQUEST_URI;
$book = db_fetch_object(db_query("SELECT parent, weight FROM book WHERE nid = '$node->nid'"));
if (strstr($REQUEST_URI, "module.php?mod=node&op=edit")) {
/*
** If a user is about to update a book page, we overload some
** fields to reflect the changes. We use the $REQUEST_URI to
** dectect this as we don't want to interfer with updating a
** book page through the admin pages. See also: book_save().
*/
2001-11-25 15:58:08 +00:00
if ($user->uid) {
$book->uid = $user->uid;
$book->name = $user->name;
}
else {
$book->uid = 0;
$book->name = "";
}
2001-11-24 15:10:36 +00:00
}
/*
** We set the revision field to indicate that we have to create
** a new revision when updating this book page.
*/
$book->revision = 1;
2001-11-01 11:00:51 +00:00
return $book;
2001-06-29 22:08:57 +00:00
}
2001-11-01 11:00:51 +00:00
function book_insert($node) {
2001-11-04 15:57:43 +00:00
db_query("INSERT INTO book (nid, parent, weight) VALUES ('$node->nid', '$node->parent', '$node->weight')");
2001-11-01 11:00:51 +00:00
}
2001-06-29 22:08:57 +00:00
2001-11-01 11:00:51 +00:00
function book_update($node) {
2001-11-04 15:57:43 +00:00
db_query("UPDATE book SET parent = '$node->parent', weight = '$node->weight' WHERE nid = '$node->nid'");
2001-11-01 11:00:51 +00:00
}
2001-06-29 22:08:57 +00:00
2001-11-01 11:00:51 +00:00
function book_delete($node) {
db_query("DELETE FROM book WHERE nid = '$node->nid'");
2001-06-20 20:00:40 +00:00
}
2001-04-07 15:02:28 +00:00
2001-11-04 15:57:43 +00:00
function book_form($node, $help, $error) {
global $user;
$output .= form_select(t("Parent"), "parent", $node->parent, book_toc(), t("The parent subject or category the page belongs in."));
$output .= form_textarea(t("Content"), "body", $node->body, 60, 20, t("Allowed HTML tags") .": ". htmlspecialchars(variable_get("allowed_html", "")));
$output .= form_textarea(t("Log message"), "history", $node->history, 60, 5, t("An explanation of the additions or updates being made to help the group understand your motivations."));
if (user_access("administer nodes")) {
$output .= form_select(t("Weight"), "weight", $node->weight, array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30), t("The heavier nodes will sink and the lighter nodes will be positioned nearer the top."));
}
else {
/*
** Carry out some explanation or submission guidelines:
*/
2001-11-11 23:23:41 +00:00
$help = book_node("description");
2001-11-04 15:57:43 +00:00
/*
** If a regular user updates a book page, we create a new revision
** authored by that user:
*/
$output .= form_hidden("revision", 1);
}
return $output;
}
2001-11-25 09:55:00 +00:00
/*
** Return the the most recent revision that matches the specified
** conditions.
*/
function book_revision_load($page, $conditions = array()) {
$revisions = array_reverse(node_revision_list($page));
foreach ($revisions as $revision) {
/*
** Extract the specified revision:
*/
$node = node_revision_load($page, $revision);
/*
** Check to see if the conditions are met:
*/
$status = 1;
foreach ($conditions as $key => $value) {
if ($node->$key != $value) {
$status = 0;
}
}
if ($status) {
return $node;
}
}
}
/*
** Return the path (call stack) to a certain book page.
*/
2001-04-04 12:54:10 +00:00
function book_location($node, $nodes = array()) {
2001-10-16 20:13:22 +00:00
$parent = db_fetch_object(db_query("SELECT n.nid, n.title, b.parent FROM node n LEFT JOIN book b ON n.nid = b.nid WHERE n.nid = '$node->parent'"));
2001-04-04 12:54:10 +00:00
if ($parent->title) {
$nodes = book_location($parent, $nodes);
array_push($nodes, $parent);
}
return $nodes;
}
2001-04-16 18:21:22 +00:00
function book_view($node, $main = 0) {
2001-11-04 23:30:39 +00:00
global $theme, $mod;
/*
** Always display the most recently approved revision of a node
** unless we have to display it in the context of the moderation
** queue.
*/
if ($node->moderate && $mod != "queue") {
2001-11-25 09:55:00 +00:00
$node = book_revision_load($node, array("moderate" => 0, "status" => 1));
2001-11-04 23:30:39 +00:00
}
/*
** Display the node. If not displayed on the main page, we render
** the node as a page in the book with extra links to the previous
** and the next page.
*/
2001-03-24 16:36:13 +00:00
2001-05-24 10:05:18 +00:00
if ($main) {
$theme->node($node, $main);
2001-04-04 12:54:10 +00:00
}
2001-05-24 10:05:18 +00:00
else {
if ($node->nid && $node->parent) {
2001-11-24 15:50:18 +00:00
$next = db_fetch_object(db_query("SELECT n.nid, n.title FROM node n LEFT JOIN book b ON n.nid = b.nid WHERE n.status = 1 AND b.parent = '$node->parent' AND (b.weight > '$node->weight' OR (b.weight = '$node->weight' AND n.title > '". check_query($node->title) ."')) AND (n.moderate = 0 OR n.revisions != '') ORDER BY b.weight ASC, n.title ASC"));
$prev = db_fetch_object(db_query("SELECT n.nid, n.title FROM node n LEFT JOIN book b ON n.nid = b.nid WHERE n.status = 1 AND b.parent = '$node->parent' AND (b.weight < '$node->weight' OR (b.weight = '$node->weight' AND n.title < '". check_query($node->title) ."')) AND (n.moderate = 0 OR n.revisions != '') ORDER BY b.weight DESC, n.title DESC"));
2001-05-24 10:05:18 +00:00
}
2001-04-04 12:54:10 +00:00
2001-11-04 15:57:43 +00:00
$output .= "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n";
2001-04-04 12:54:10 +00:00
2001-05-24 10:05:18 +00:00
if ($node->title) {
foreach (book_location($node) as $level) {
2001-11-04 15:57:43 +00:00
$location .= "$indent <a href=\"node.php?id=$level->nid\">$level->title</a><br />";
2001-05-24 10:05:18 +00:00
$indent .= "-";
}
2001-04-04 12:54:10 +00:00
2001-11-04 15:57:43 +00:00
$output .= " <tr><td colspan=\"2\">$location</td><td align=\"right\"><a href=\"module.php?mod=node&op=edit&id=$node->nid\">". t("update this book page") ."</a></td></tr>";
$output .= " <tr><td colspan=\"3\"><hr /></td></tr>";
$output .= " <tr><td colspan=\"3\"><b><big>". check_output($node->title) ."</big></b>". ($node->body ? "<br /><small><i>". sprintf(t("Last updated by %s on %s"), format_name($node), format_date($node->created)) ."</i></small> " : "") ."</td></tr>";
2001-05-24 10:05:18 +00:00
}
2001-04-04 12:54:10 +00:00
2001-05-24 10:05:18 +00:00
if ($node->body) {
2001-11-04 15:57:43 +00:00
$output .= " <tr><td colspan=\"3\"><br />". check_output($node->body, 1) ."</td></tr>";
2001-05-24 10:05:18 +00:00
}
2001-03-24 16:36:13 +00:00
2001-05-24 10:05:18 +00:00
if ($node->nid) {
2001-11-04 15:57:43 +00:00
$output .= " <tr><td colspan=\"3\"><br />". book_tree($node->nid) ."</td></tr>";
2001-05-24 10:05:18 +00:00
}
2001-05-06 19:51:14 +00:00
2001-11-04 15:57:43 +00:00
$output .= " <tr><td colspan=\"3\"><hr /></td></tr>";
$output .= " <tr><td align=\"left\" width=\"33%\">". ($prev ? "<a href=\"node.php?id=$prev->nid\">". t("previous") ."</a>" : t("previous")) ."</td><td align=\"center\" width=\"34%\"><a href=\"module.php?mod=book\">index</a></td><td align=\"right\" width=\"33%\">". ($next ? "<a href=\"node.php?id=$next->nid\">". t("next") ."</a>" : t("next")) ."</td></tr>";
$output .= " <tr><td align=\"left\" width=\"33%\">". ($prev ? "<small>". check_output($prev->title) ."</small>" : " ") ."</td><td align=\"center\" width=\"34%\">". ($node->parent ? "<a href=\"node.php?id=$node->parent\">". t("up") ."</a>" : t("up")) ."</td><td align=\"right\" width=\"33%\">". ($next ? "<small>". check_output($next->title) ."</small>" : " ") ."</td></tr>";
$output .= "</table>";
2001-04-04 12:54:10 +00:00
2001-05-24 10:05:18 +00:00
$theme->box(t("Handbook"), $output);
}
2001-03-24 16:36:13 +00:00
}
2001-05-06 19:51:14 +00:00
function book_toc($parent = "", $indent = "", $toc = array()) {
2001-05-07 18:44:40 +00:00
2001-11-04 15:57:43 +00:00
/*
** Select all child nodes:
*/
2001-11-24 15:50:18 +00:00
$result = db_query("SELECT n.nid, n.title FROM node n LEFT JOIN book b ON n.nid = b.nid WHERE n.type = 'book' AND n.status = 1 AND b.parent = '$parent' AND (n.moderate = 0 OR n.revisions != '') ORDER BY b.weight");
2001-11-04 15:57:43 +00:00
/*
2001-11-25 09:55:00 +00:00
** If the user is an administrator, add the root node; only
** administrators can start new books.
2001-11-04 15:57:43 +00:00
*/
2001-05-06 19:51:14 +00:00
2001-06-29 22:08:57 +00:00
if (user_access("administer nodes")) {
2001-06-25 19:36:04 +00:00
$toc[0] = "<root>";
2001-05-07 18:44:40 +00:00
}
2001-11-04 15:57:43 +00:00
/*
** Build the table of contents:
*/
2001-03-25 16:42:52 +00:00
while ($node = db_fetch_object($result)) {
2001-04-04 12:54:10 +00:00
$toc[$node->nid] = "$indent $node->title";
$toc = book_toc($node->nid, "$indent-", $toc);
2001-03-25 16:42:52 +00:00
}
2001-05-06 19:51:14 +00:00
2001-03-25 16:42:52 +00:00
return $toc;
}
2001-04-08 10:31:59 +00:00
function book_tree($parent = "", $depth = 0) {
2001-03-24 16:36:13 +00:00
2001-11-04 15:57:43 +00:00
if ($depth < 3) {
2001-11-25 09:55:00 +00:00
2001-11-04 23:30:39 +00:00
/*
** Select all child nodes and render them into a table of contents:
*/
2001-11-24 15:50:18 +00:00
$result = db_query("SELECT n.nid FROM node n LEFT JOIN book b ON n.nid = b.nid WHERE n.type = 'book' AND b.parent = '$parent' AND (n.moderate = 0 OR n.revisions != '') ORDER BY b.weight, n.title");
2001-05-06 19:51:14 +00:00
2001-11-18 12:30:08 +00:00
while ($page = db_fetch_object($result)) {
// load the node:
$node = node_load(array("nid" => $page->nid));
2001-11-04 23:30:39 +00:00
2001-11-18 12:30:08 +00:00
// take the most recent approved revision:
if ($node->moderate) {
2001-11-25 09:55:00 +00:00
$node = book_revision_load($node, array("moderate" => 0, "status" => 1));
2001-11-18 12:30:08 +00:00
}
2001-11-04 23:30:39 +00:00
2001-11-25 09:55:00 +00:00
if ($node) {
// output the content:
$output .= "<li><a href=\"node.php?id=$node->nid\">". check_output($node->title) ."</a></li>";
2001-11-04 23:30:39 +00:00
2001-11-25 09:55:00 +00:00
// build the sub-tree of each child:
$output .= book_tree($node->nid, $depth + 1);
}
2001-11-18 12:30:08 +00:00
}
$output = "<ul>$output</ul>";
2001-11-04 23:30:39 +00:00
2001-05-06 19:51:14 +00:00
}
2001-11-04 15:57:43 +00:00
2001-05-06 19:51:14 +00:00
return $output;
}
2001-07-15 17:32:33 +00:00
function book_render() {
2001-11-01 11:00:51 +00:00
global $theme;
2001-04-08 10:31:59 +00:00
2001-11-24 15:50:18 +00:00
$result = db_query("SELECT n.nid FROM node n LEFT JOIN book b ON n.nid = b.nid WHERE b.parent = 0 AND n.status = 1 AND (n.moderate = 0 OR n.revisions != '') ORDER BY b.weight");
2001-07-15 17:32:33 +00:00
2001-11-04 23:30:39 +00:00
while ($page = db_fetch_object($result)) {
// load the node:
$node = node_load(array("nid" => $page->nid));
// take the most recent approved revision:
if ($node->moderate) {
2001-11-25 09:55:00 +00:00
$node = book_revision_load($node, array("moderate" => 0, "status" => 1));
2001-11-04 23:30:39 +00:00
}
2001-11-25 09:55:00 +00:00
if ($node) {
// output the content:
$output .= "<dt><a href=\"node.php?id=$node->nid\">". check_output($node->title) ."</a></dt><dd>". check_output($node->body, 1) ."<br /><br /></dd>";
}
2001-07-15 17:32:33 +00:00
}
$theme->header();
2001-11-04 15:57:43 +00:00
$theme->box(t("Handbook"), "<dl>$output</dl>");
2001-07-15 17:32:33 +00:00
$theme->footer();
}
function book_page() {
global $op, $id, $theme;
2001-06-29 22:08:57 +00:00
if (user_access("access content")) {
2001-07-15 17:32:33 +00:00
switch ($op) {
case "feed":
2001-08-11 14:54:39 +00:00
print book_export_html($id, $depth = 1);
2001-07-15 17:32:33 +00:00
break;
default:
book_render();
2001-06-20 20:00:40 +00:00
}
}
else {
$theme->header();
$theme->box(t("Access denied"), message_access());
$theme->footer();
}
2001-03-24 16:36:13 +00:00
}
2001-08-11 14:54:39 +00:00
function book_export_html($id = "", $depth = 1) {
2001-11-24 15:50:18 +00:00
$result = db_query("SELECT n.nid FROM node n LEFT JOIN book b ON n.nid = b.nid WHERE n.type = 'book' AND n.status = 1 AND n.nid = '". check_input($id) ." AND (n.moderate = 0 OR n.revisions != '')'");
2001-08-11 14:54:39 +00:00
2001-11-04 23:30:39 +00:00
while ($page = db_fetch_object($result)) {
// load the node:
$node = node_load(array("nid" => $page->nid));
2001-08-11 14:54:39 +00:00
2001-11-04 23:30:39 +00:00
// take the most recent approved revision:
if ($node->moderate) {
2001-11-25 09:55:00 +00:00
$node = book_revision_load($node, array("moderate" => 0, "status" => 1));
2001-11-04 23:30:39 +00:00
}
2001-11-25 09:55:00 +00:00
if ($node) {
// output the content:
$output .= "<h$depth>". check_output($node->title) ."</h$depth>";
2001-11-04 23:30:39 +00:00
2001-11-25 09:55:00 +00:00
if ($node->body) {
$output .= "<ul>". check_output($node->body, 1) ."</ul>";
}
2001-11-04 23:30:39 +00:00
}
2001-08-11 14:54:39 +00:00
}
2001-11-04 23:30:39 +00:00
2001-08-11 14:54:39 +00:00
$output .= book_export_html_recursive($id, $depth);
return $output;
}
function book_export_html_recursive($parent = "", $depth = 1) {
2001-11-24 15:50:18 +00:00
$result = db_query("SELECT n.nid FROM node n LEFT JOIN book b ON n.nid = b.nid WHERE n.type = 'book' AND n.status = 1 AND b.parent = '$parent' AND (n.moderate = 0 OR n.revisions != '') ORDER BY b.weight");
2001-04-11 19:44:24 +00:00
2001-11-04 23:30:39 +00:00
while ($page = db_fetch_object($result)) {
// load the node:
$node = node_load(array("nid" => $page->nid));
// take the most recent approved revision:
if ($node->moderate) {
2001-11-25 09:55:00 +00:00
$node = book_revision_load($node, array("moderate" => 0, "status" => 1));
2001-11-04 23:30:39 +00:00
}
2001-11-25 09:55:00 +00:00
if ($node) {
// output the content:
$output .= "<h$depth>". check_output($node->title) ."</h$depth>";
2001-11-04 23:30:39 +00:00
2001-11-25 09:55:00 +00:00
if ($node->body) {
$output .= "<blockquote>". check_output($node->body, 1) ."</blockquote>";
}
2001-11-04 23:30:39 +00:00
2001-11-25 09:55:00 +00:00
$output .= book_export_html_recursive($node->nid, $depth + 1);
}
2001-04-11 19:44:24 +00:00
}
2001-06-24 19:12:30 +00:00
2001-04-11 19:44:24 +00:00
return $output;
}
2001-11-01 11:00:51 +00:00
2001-11-18 12:30:08 +00:00
function book_admin_page($nid, $depth = 0) {
$weight = array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30);
$result = db_query("SELECT n.nid FROM node n LEFT JOIN book b ON n.nid = b.nid WHERE n.type = 'book' AND b.parent = '$nid' ORDER BY b.weight, n.title");
while ($node = db_fetch_object($result)) {
$node = node_load(array("nid" => $node->nid));
$output .= "<tr>";
$output .= " <td><div style=\"padding-left: ". (25 * $depth) ."px;\">$node->title</div></td>";
$output .= " <td align=\"center\">". ($rev = end(node_revision_list($node)) ? $rev : 0) ."</td>";
$output .= " <td><a href=\"admin.php?mod=node&op=edit&id=$node->nid\">". t("edit page") ."</td>";
$output .= " <td><a href=\"admin.php?mod=node&op=delete&id=$node->nid\">". t("delete page") ."</td>";
$output .= "</tr>";
$output .= book_admin_page($node->nid, $depth + 1);
}
return $output;
}
function book_admin_view($nid, $depth = 0) {
$node = node_load(array("nid" => $nid));
$output .= "<h3>". check_output($node->title) ."</h3>";
$output .= "<table border=\"1\" cellpadding=\"2\" cellspacing=\"2\">";
$output .= " <tr><th>title</th><th>rev</th><th colspan=\"2\">operations</th></tr>";
$output .= book_admin_page($nid);
$output .= "</table>";
return $output;
}
function book_admin_orphan() {
$result = db_query("SELECT n.nid, n.title, b.parent FROM node n LEFT JOIN book b ON n.nid = b.nid WHERE n.type = 'book'");
while ($page = db_fetch_object($result)) {
$pages[$page->nid] = $page;
}
$output .= "<table border=\"1\" cellpadding=\"2\" cellspacing=\"2\">";
$output .= " <tr><th>title</th><th colspan=\"2\">operations</th></tr>";
foreach ($pages as $nid => $node) {
if ($node->parent && empty($pages[$node->parent])) {
$output .= "<tr><td><a href=\"node.php?id=$node->nid\">". check_output($node->title) ."</a></td><td><a href=\"admin.php?mod=node&op=edit&id=$node->nid\">". t("edit page") ."</td><td><a href=\"admin.php?mod=node&op=delete&id=$node->nid\">". t("delete page") ."</td>";
}
}
$output .= "</table>";
return $output;
}
function book_admin_links() {
$result = db_query("SELECT n.nid, n.title FROM node n LEFT JOIN book b ON n.nid = b.nid WHERE b.parent = 0 ORDER BY b.weight, n.title");
while ($book = db_fetch_object($result)) {
$links[] = "<a href=\"admin.php?mod=book&op=view&id=$book->nid\">". t("book") .": <i>". check_output($book->title) ."</i></a>";
}
return $links;
}
function book_admin() {
global $id, $op;
if (user_access("administer nodes")) {
/*
** Compile a list of the administrative links:
*/
$links = book_admin_links();
$links[] = "<a href=\"admin.php?mod=book&op=orphan\">". t("orphan pages") ."</a>";
print "<small>". implode(" · ", $links) ."</small><hr />";
switch ($op) {
case "orphan":
print book_admin_orphan();
break;
case "view":
print book_admin_view($id);
break;
default:
}
}
}
2001-03-24 16:36:13 +00:00
?>