CHANGES:
- Added improved node scheduler: + Automatically post node at date 'xx/xx/xx, xx:xx'. + Automatically queue node at date 'xx/xx/xx, xx:xx'. + Automatically dump node at date 'xx/xx/xx, xx:xx'. Requires a database update, see ./updates/2.00-to-x.xx.sql! - Refactored the admin interface of node.module. It is only a start but it should show the direction we are going. + The new interface is easier to extend with new functionality and operations. New "edit xxx" links can easily be added on our way. + The new interface tries to cover all content- or node-related functions. Thus making a special admin interface for each new node type redundant. To demonstrate this, I removed the admin hook from page.module and forum.module. This removes quite a bit of logic from the invidual modules which is a good sign if you ask me. A centralized GUI or interface covering all node-related administration should make Drupal easier to administer. TODO: - All node-related nodes need updating. This should be trivial and I'll hapilly tackle this later tonight. - There will be bugs, and I'm still working on this but I would like to get some feedback (from Natrak et all) on both user-friendliness and usability of this new interface. I'm still working on it as we speak ...3-00
parent
2ecc3e4c78
commit
c75057bb0f
|
@ -65,7 +65,7 @@ function node_get_comments($nid) {
|
||||||
function node_save($node, $filter) {
|
function node_save($node, $filter) {
|
||||||
global $user, $status;
|
global $user, $status;
|
||||||
|
|
||||||
$rows = array(nid, pid, lid, cid, tid, log, type, title, score, votes, author, status, comment, promote, moderate, timestamp);
|
$rows = array(nid, pid, lid, cid, tid, log, type, title, score, votes, author, status, comment, promote, moderate, attribute, timestamp, timestamp_posted, timestamp_queued, timestamp_hidden);
|
||||||
|
|
||||||
if ($node[nid] > 0) {
|
if ($node[nid] > 0) {
|
||||||
$n = node_get_object(array("nid" => $node[nid]));
|
$n = node_get_object(array("nid" => $node[nid]));
|
||||||
|
|
|
@ -13,11 +13,11 @@ function forum_view($node) {
|
||||||
function forum_form($edit = array()) {
|
function forum_form($edit = array()) {
|
||||||
global $REQUEST_URI;
|
global $REQUEST_URI;
|
||||||
|
|
||||||
$form .= form_textfield(t("Subject"), "title", $edit[title], 50, 64);
|
$form .= form_textfield("Subject", "title", $edit[title], 50, 64);
|
||||||
$form .= structure_form("forum", $edit);
|
$form .= structure_form("forum", $edit);
|
||||||
$form .= form_textarea(t("Body"), "body", $edit[body], 50, 10);
|
$form .= form_textarea("Body", "body", $edit[body], 50, 10);
|
||||||
$form .= form_hidden("nid", $edit[nid]);
|
$form .= form_hidden("nid", $edit[nid]);
|
||||||
$form .= form_submit(t("Submit"));
|
$form .= form_submit("Submit");
|
||||||
|
|
||||||
return form($REQUEST_URI, $form);
|
return form($REQUEST_URI, $form);
|
||||||
}
|
}
|
||||||
|
@ -58,28 +58,4 @@ function forum_page() {
|
||||||
$theme->footer();
|
$theme->footer();
|
||||||
}
|
}
|
||||||
|
|
||||||
function forum_overview() {
|
|
||||||
return node_overview(array(0, "WHERE n.type = 'forum' ORDER BY n.title"));
|
|
||||||
}
|
|
||||||
|
|
||||||
function forum_admin() {
|
|
||||||
global $id, $op, $edit;
|
|
||||||
|
|
||||||
print "<SMALL><A HREF=\"admin.php?mod=forum&op=add\">add new forum</A> | <A HREF=\"admin.php?mod=forum\">overview</A></SMALL><HR>\n";
|
|
||||||
|
|
||||||
switch ($op) {
|
|
||||||
case "add":
|
|
||||||
print forum_form();
|
|
||||||
break;
|
|
||||||
case "edit":
|
|
||||||
print forum_form(node_get_array(array(nid => $id)));
|
|
||||||
break;
|
|
||||||
case t("Submit"):
|
|
||||||
print status(forum_save($edit));
|
|
||||||
// fall through:
|
|
||||||
default:
|
|
||||||
print forum_overview();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
?>
|
?>
|
|
@ -13,11 +13,11 @@ function forum_view($node) {
|
||||||
function forum_form($edit = array()) {
|
function forum_form($edit = array()) {
|
||||||
global $REQUEST_URI;
|
global $REQUEST_URI;
|
||||||
|
|
||||||
$form .= form_textfield(t("Subject"), "title", $edit[title], 50, 64);
|
$form .= form_textfield("Subject", "title", $edit[title], 50, 64);
|
||||||
$form .= structure_form("forum", $edit);
|
$form .= structure_form("forum", $edit);
|
||||||
$form .= form_textarea(t("Body"), "body", $edit[body], 50, 10);
|
$form .= form_textarea("Body", "body", $edit[body], 50, 10);
|
||||||
$form .= form_hidden("nid", $edit[nid]);
|
$form .= form_hidden("nid", $edit[nid]);
|
||||||
$form .= form_submit(t("Submit"));
|
$form .= form_submit("Submit");
|
||||||
|
|
||||||
return form($REQUEST_URI, $form);
|
return form($REQUEST_URI, $form);
|
||||||
}
|
}
|
||||||
|
@ -58,28 +58,4 @@ function forum_page() {
|
||||||
$theme->footer();
|
$theme->footer();
|
||||||
}
|
}
|
||||||
|
|
||||||
function forum_overview() {
|
|
||||||
return node_overview(array(0, "WHERE n.type = 'forum' ORDER BY n.title"));
|
|
||||||
}
|
|
||||||
|
|
||||||
function forum_admin() {
|
|
||||||
global $id, $op, $edit;
|
|
||||||
|
|
||||||
print "<SMALL><A HREF=\"admin.php?mod=forum&op=add\">add new forum</A> | <A HREF=\"admin.php?mod=forum\">overview</A></SMALL><HR>\n";
|
|
||||||
|
|
||||||
switch ($op) {
|
|
||||||
case "add":
|
|
||||||
print forum_form();
|
|
||||||
break;
|
|
||||||
case "edit":
|
|
||||||
print forum_form(node_get_array(array(nid => $id)));
|
|
||||||
break;
|
|
||||||
case t("Submit"):
|
|
||||||
print status(forum_save($edit));
|
|
||||||
// fall through:
|
|
||||||
default:
|
|
||||||
print forum_overview();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
?>
|
?>
|
|
@ -77,7 +77,7 @@ function index_test_1() {
|
||||||
$form .= index_collection_form($entry->collection);
|
$form .= index_collection_form($entry->collection);
|
||||||
}
|
}
|
||||||
$form .= "Select around and click the button below:<BR>";
|
$form .= "Select around and click the button below:<BR>";
|
||||||
$form .= form_submit("Click to test");
|
$form .= form_submit("Click to test 1");
|
||||||
|
|
||||||
return form($REQUEST_URI, $form);
|
return form($REQUEST_URI, $form);
|
||||||
}
|
}
|
||||||
|
@ -101,11 +101,20 @@ function index_test_2($edit) {
|
||||||
return $output;
|
return $output;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function index_test_3() {
|
||||||
|
global $REQUEST_URI;
|
||||||
|
|
||||||
|
$form .= "Fill out some meta-tags and search for those articles that matches best:<BR>";
|
||||||
|
$form .= form_submit("Click to test 2");
|
||||||
|
|
||||||
|
return form($REQUEST_URI, $form);
|
||||||
|
}
|
||||||
|
|
||||||
function index_entry() {
|
function index_entry() {
|
||||||
$result = db_query("SELECT * FROM entry ORDER BY name");
|
$result = db_query("SELECT * FROM entry ORDER BY name");
|
||||||
|
|
||||||
$output .= "<TABLE BORDER=\"1\" CELLPADDING=\"3\" CELLSPACING=\"0\">\n";
|
$output .= "<TABLE BORDER=\"1\" CELLPADDING=\"3\" CELLSPACING=\"0\">\n";
|
||||||
$output .= " <TR><TH>name</TH><TH>collection</TH><TH>keywords string</TH><TH>oparations</TH></TR>\n";
|
$output .= " <TR><TH>name</TH><TH>collection</TH><TH>meta attributes</TH><TH>oparations</TH></TR>\n";
|
||||||
while ($entry = db_fetch_object($result)) {
|
while ($entry = db_fetch_object($result)) {
|
||||||
$output .= "<TR><TD>". check_output($entry->name) ."</TD><TD>". check_output($entry->collection) ."</TD><TD>". check_output($entry->keyword) ."</TD><TD><A HREF=\"admin.php?mod=index&op=edit&id=$entry->eid\">edit entry</A></TD></TR>\n";
|
$output .= "<TR><TD>". check_output($entry->name) ."</TD><TD>". check_output($entry->collection) ."</TD><TD>". check_output($entry->keyword) ."</TD><TD><A HREF=\"admin.php?mod=index&op=edit&id=$entry->eid\">edit entry</A></TD></TR>\n";
|
||||||
}
|
}
|
||||||
|
@ -117,7 +126,7 @@ function index_entry() {
|
||||||
function index_admin() {
|
function index_admin() {
|
||||||
global $edit, $op, $id;
|
global $edit, $op, $id;
|
||||||
|
|
||||||
print "<SMALL><A HREF=\"admin.php?mod=index&op=add\">add new entry</A> | <A HREF=\"admin.php?mod=index&op=entry\">entries</A> | <A HREF=\"admin.php?mod=index&op=collection\">collections</A> | <A HREF=\"admin.php?mod=index&op=help\">help</A> - <A HREF=\"admin.php?mod=index&op=test\">test</A></SMALL><HR>\n";
|
print "<SMALL><A HREF=\"admin.php?mod=index&op=add\">add new entry</A> | <A HREF=\"admin.php?mod=index&op=entry\">entries</A> | <A HREF=\"admin.php?mod=index&op=collection\">collections</A> | <A HREF=\"admin.php?mod=index&op=help\">help</A> - <A HREF=\"admin.php?mod=index&op=test1\">test1</A></SMALL><HR>\n";
|
||||||
|
|
||||||
switch ($op) {
|
switch ($op) {
|
||||||
case "add":
|
case "add":
|
||||||
|
@ -129,12 +138,18 @@ function index_admin() {
|
||||||
case "help":
|
case "help":
|
||||||
print index_help();
|
print index_help();
|
||||||
break;
|
break;
|
||||||
case "test":
|
case "test1":
|
||||||
print index_test_1();
|
print index_test_1();
|
||||||
break;
|
break;
|
||||||
case "Click to test":
|
case "Click to test 1":
|
||||||
print index_test_2($edit);
|
print index_test_2($edit);
|
||||||
break;
|
break;
|
||||||
|
case "test2":
|
||||||
|
print index_test_3();
|
||||||
|
break;
|
||||||
|
case "Click to test 2":
|
||||||
|
print index_test_4($edit);
|
||||||
|
break;
|
||||||
case "collection":
|
case "collection":
|
||||||
print index_collection();
|
print index_collection();
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -39,64 +39,111 @@ function node_filter($text) {
|
||||||
return $text;
|
return $text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function node_cron() {
|
||||||
|
db_query("UPDATE node SET status = '". node_status("posted") ."', timestamp_posted = '' WHERE timestamp_posted > 0 AND timestamp_posted < ". time());
|
||||||
|
db_query("UPDATE node SET status = '". node_status("queued") ."', timestamp_posted = '' WHERE timestamp_queued > 0 AND timestamp_queued < ". time());
|
||||||
|
db_query("UPDATE node SET status = '". node_status("dumped") ."', timestamp_posted = '' WHERE timestamp_hidden > 0 AND timestamp_hidden < ". time());
|
||||||
|
}
|
||||||
|
|
||||||
function node_overview($query = array()) {
|
function node_overview($query = array()) {
|
||||||
global $user;
|
global $user;
|
||||||
|
|
||||||
|
$colors = array("#ffdc9b", "#dedec4");
|
||||||
|
|
||||||
$result = db_query("SELECT n.*, u.userid, c.name AS category FROM node n LEFT JOIN users u ON n.author = u.id LEFT JOIN category c ON n.cid = c.cid $query[1] LIMIT 50");
|
$result = db_query("SELECT n.*, u.userid, c.name AS category FROM node n LEFT JOIN users u ON n.author = u.id LEFT JOIN category c ON n.cid = c.cid $query[1] LIMIT 50");
|
||||||
|
|
||||||
$output .= status($query[0]);
|
$output .= status($query[0]);
|
||||||
$output .= "<TABLE BORDER=\"1\" CELLPADDING=\"2\" CELLSPACING=\"2\">\n";
|
$output .= "<TABLE BORDER=\"1\" CELLPADDING=\"2\" CELLSPACING=\"2\">\n";
|
||||||
$output .= " <TR><TH>title</TH><TH>category</TH><TH>status</TH><TH>author</TH><TH>date</TH><TH COLSPAN=\"2\">operations</TH></TR>\n";
|
$output .= " <TR><TH>title</TH><TH>type</TH><TH>status</TH><TH>meta attributes</TH><TH>author</TH><TH>date</TH></TR>\n";
|
||||||
|
|
||||||
while ($node = db_fetch_object($result)) {
|
while ($node = db_fetch_object($result)) {
|
||||||
$output .= " <TR><TD><A HREF=\"node.php?id=$node->nid\">". check_output($node->title) ."</A></TD><TD ALIGN=\"center\">". check_output($node->category ? $node->category : $node->type) ."</TD><TD>". node_status($node->status) ."</TD><TD>". format_username($node->userid) ."</TD><TD>". format_date($node->timestamp, "small") ."</TD><TD>". (user_access($user, "node") ? "<A HREF=\"admin.php?mod=node&op=edit&id=$node->nid\">edit node</A>" : "edit node") ."</TD><TD>". (user_access($user, $node->type) ? "<A HREF=\"admin.php?mod=$node->type&op=edit&id=$node->nid\">edit $node->type</A>" : "edit $node->type") ."</TD></TR>\n";
|
unset ($link);
|
||||||
|
|
||||||
|
$link[] = user_access($user, $node->type) ? "<A HREF=\"admin.php?mod=node&type=$node->type&op=edit&id=$node->nid\">edit content</A>" : "edit content";
|
||||||
|
$link[] = user_access($user, "node") ? "<A HREF=\"admin.php?mod=node&op=option&id=$node->nid\">edit options</A>" : "edit options";
|
||||||
|
$link[] = user_access($user, "node") ? "<A HREF=\"admin.php?mod=node&op=status&id=$node->nid\">edit status</A>" : "edit status";
|
||||||
|
$link[] = user_access($user, "node") ? "<A HREF=\"admin.php?mod=node&op=attribute&id=$node->nid\">edit attributes</A>" : "edit attributes";
|
||||||
|
$link[] = user_access($user, "node") ? "<A HREF=\"admin.php?mod=node&op=delete&id=$node->nid\">delete node</A>" : "delete node";
|
||||||
|
|
||||||
|
$color = $colors[$i++ % sizeof($colors)];
|
||||||
|
|
||||||
|
$output .= " <TR BGCOLOR=\"$color\"><TD><A HREF=\"node.php?id=$node->nid\">". check_output($node->title) ."</A></TD><TD ALIGN=\"center\">$node->type</TD><TD>". node_status($node->status) ."</TD><TD>". check_output($node->attribute) ."</TD><TD>". format_username($node->userid) ."</TD><TD>". format_date($node->timestamp, "small") ."</TD></TR>\n";
|
||||||
|
$output .= " <TR BGCOLOR=\"$color\"><TD ALIGN=\"right\" COLSPAN=\"6\"><SMALL>". implode(", ", $link) ."</SMALL></TD>\n";
|
||||||
}
|
}
|
||||||
$output .= "</TABLE>\n";
|
$output .= "</TABLE>\n";
|
||||||
|
|
||||||
return $output;
|
return $output;
|
||||||
}
|
}
|
||||||
|
|
||||||
function node_admin_view($id) {
|
function node_edit_option($id) {
|
||||||
$node = node_get_object(array("nid" => $id));
|
|
||||||
|
|
||||||
$form .= form_item("Title", check_output($node->title));
|
|
||||||
$form .= form_item("Author", format_username($node->userid));
|
|
||||||
$form .= form_item("Status", node_status($node->status));
|
|
||||||
$form .= form_item("Comment", node_comment_status($node->comment));
|
|
||||||
$form .= form_item("Promote", node_promote_status($node->promote));
|
|
||||||
$form .= form_item("Moderate", check_output($node->moderate));
|
|
||||||
$form .= form_item("Date", format_date($node->timestamp));
|
|
||||||
$form .= form_submit("Edit node");
|
|
||||||
$form .= form_submit("Delete node");
|
|
||||||
|
|
||||||
return form("admin.php?mod=node&id=$node->nid", $form);
|
|
||||||
}
|
|
||||||
|
|
||||||
function node_admin_edit($id) {
|
|
||||||
global $user;
|
global $user;
|
||||||
|
|
||||||
$node = node_get_object(array("nid" => $id));
|
$node = node_get_object(array("nid" => $id));
|
||||||
|
|
||||||
$form .= form_item("Title", check_output($node->title));
|
$form .= form_item("Document title", check_output($node->title));
|
||||||
$form .= form_select("Author", "author", $node->author, array($node->author => $node->userid, $user->id => $user->userid));
|
$form .= form_select("Comment", "comment", $node->comment, node_comment_status(), "Allow users to post comments to this document.");
|
||||||
$form .= form_select("Status", "status", $node->status, node_status($node->type));
|
$form .= form_select("Promote", "promote", $node->promote, node_promote_status(), "Promote this document on the main page.");
|
||||||
$form .= form_select("Comment", "comment", $node->comment, node_comment_status());
|
$form .= form_textfield("Moderate", "moderate", $node->moderate, 35, 255, t("A comma-seperated list of the moderators their usernames."));
|
||||||
$form .= form_select("Promote", "promote", $node->promote, node_promote_status());
|
|
||||||
$form .= form_textfield("Moderate", "moderate", $node->moderate, 35, 255, t("Provide a comma-seperated list of the moderators their usernames."));
|
|
||||||
$form .= form_select("Date", "timestamp", $node->timestamp, array($node->timestamp => format_date($node->timestamp) ." (original)", time() => format_date(time()) ." (current)"));
|
|
||||||
$form .= form_hidden("nid", $node->nid);
|
$form .= form_hidden("nid", $node->nid);
|
||||||
$form .= form_submit("Save node");
|
$form .= form_submit("Save node");
|
||||||
$form .= form_submit("View node");
|
|
||||||
|
|
||||||
return form("admin.php?mod=node&id=$node->nid", $form);
|
return form("admin.php?mod=node&id=$node->nid", $form);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function node_edit_attribute($id) {
|
||||||
|
global $user;
|
||||||
|
|
||||||
|
$node = node_get_object(array("nid" => $id));
|
||||||
|
|
||||||
|
$form .= form_item("Document title", check_output($node->title));
|
||||||
|
$form .= form_textfield("Attributes", "attribute", $edit[attribute], 50, 128, htmlentities("A list meta attributes. Format: <type>:<value>;<type>:<value>;. Example: 'software:apache;type:webserver;os:linux;'."));
|
||||||
|
$form .= form_hidden("nid", $node->nid);
|
||||||
|
$form .= form_submit("Save node");
|
||||||
|
|
||||||
|
return form("admin.php?mod=node&id=$node->nid", $form);
|
||||||
|
}
|
||||||
|
|
||||||
|
function node_edit_status($id) {
|
||||||
|
global $REQUEST_URI;
|
||||||
|
|
||||||
|
$node = node_get_object(array("nid" => $id));
|
||||||
|
|
||||||
|
$form .= form_item("Document title", check_output($node->title));
|
||||||
|
$form .= form_select("Current status", "status", $node->status, node_status($node->type));
|
||||||
|
$form .= form_textfield("Automatically post document", "timestamp_posted", ($node->timestamp_posted ? format_date($node->timestamp_posted) : ""), 30, 55, "The date at which your document will be automatically posted. Leave empty if you don't want to schedule this document, or fill out a string containing an English date format. Example input: '". date("j F Y G:i") ."', '". date("m/d/y H:i") ."', '". date("F j, Y H:i") ."', ...");
|
||||||
|
$form .= form_textfield("Automatically queue document", "timestamp_queued", ($node->timestamp_queued ? format_date($node->timestamp_queued) : ""), 30, 55, "The date at which your document will be automatically queued. Leave empty if you don't want to schedule this document, or fill out a string containing an English date format. Example input: '". date("j F Y G:i") ."', '". date("m/d/y H:i") ."', '". date("F j, Y H:i") ."', ...");
|
||||||
|
$form .= form_textfield("Automatically hide document", "timestamp_hidden", ($node->timestamp_hidden ? format_date($node->timestamp_hidden) : ""), 30, 55, "The date at which your document will be automatically hidden. Leave empty if you don't want to schedule this document, or fill out a string containing an English date format. Example input: '". date("j F Y G:i") ."', '". date("m/d/y H:i") ."', '". date("F j, Y H:i") ."', ...");
|
||||||
|
$form .= form_hidden("nid", $node->nid);
|
||||||
|
$form .= form_submit("Save node");
|
||||||
|
|
||||||
|
return form($REQUEST_URI, $form);
|
||||||
|
}
|
||||||
|
|
||||||
function node_delete($id) {
|
function node_delete($id) {
|
||||||
return (node_del(array("nid" => $id)) ? "node has been deleted." : "failed to delete node: node must be dumped first.");
|
return (node_del(array("nid" => $id)) ? "node has been deleted." : "failed to delete node: node must be dumped first.");
|
||||||
}
|
}
|
||||||
|
|
||||||
function node_query($type = "") {
|
function node_query($type = "") {
|
||||||
global $status;
|
$queries[] = array("all nodes: recent additions", "ORDER BY n.timestamp DESC");
|
||||||
$queries = array(array("recent nodes", "ORDER BY n.timestamp DESC"), array("posted nodes", "WHERE n.status = '$status[posted]' ORDER BY n.timestamp DESC"), array("queued nodes", "WHERE n.status = '$status[queued]' ORDER BY n.timestamp DESC"), array("dumped nodes", "WHERE n.status = '$status[dumped]' ORDER BY n.timestamp DESC"));
|
$queries[] = array("all nodes: status set to 'posted'", "WHERE n.status = '". node_status("posted") ."' ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("all nodes: status set to 'queued'", "WHERE n.status = '". node_status("queued") ."' ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("all nodes: status set to 'dumped'", "WHERE n.status = '". node_status("dumped") ."' ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("all nodes: scheduled to be posted", "WHERE n.timestamp_posted > 0 ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("all nodes: scheduled to be queued", "WHERE n.timestamp_queued > 0 ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("all nodes: scheduled to be hidden", "WHERE n.timestamp_hidden > 0 ORDER BY n.timestamp DESC");
|
||||||
|
|
||||||
|
foreach (module_list() as $name) {
|
||||||
|
if (module_hook($name, "user")) {
|
||||||
|
$queries[] = array("$name: recent additions", "WHERE n.type = '$name' ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("$name: status set to 'posted'", "WHERE n.type = '$name' AND n.status = '". node_status("posted") ."' ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("$name: status set to 'queued'", "WHERE n.type = '$name' AND n.status = '". node_status("queued") ."' ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("$name: status set to 'dumped'", "WHERE n.type = '$name' AND n.status = '". node_status("dumped") ."' ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("$name: scheduled to be posted", "WHERE n.type = '$name' AND n.timestamp_posted > 0 ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("$name: scheduled to be queued", "WHERE n.type = '$name' AND n.timestamp_queued > 0 ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("$name: scheduled to be hidden", "WHERE n.type = '$name' AND n.timestamp_hidden > 0 ORDER BY n.timestamp DESC");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return ($queries[$type] ? $queries[$type] : $queries);
|
return ($queries[$type] ? $queries[$type] : $queries);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -118,13 +165,13 @@ function node_setting() {
|
||||||
foreach (module_list() as $name) {
|
foreach (module_list() as $name) {
|
||||||
if (module_hook($name, "user")) {
|
if (module_hook($name, "user")) {
|
||||||
$form .= "<H3>Default settings for $name nodes</H3>";
|
$form .= "<H3>Default settings for $name nodes</H3>";
|
||||||
$form .= form_select(t("Comment"), $name ."_comment", variable_get($name ."_comment", 0), node_comment_status(), t("By default, allow or dissallow users to post comments in this category."));
|
$form .= form_select(t("Comment"), $name ."_comment", variable_get($name ."_comment", 0), node_comment_status(), "By default, allow or dissallow users to post comments in this category.");
|
||||||
$form .= form_select(t("Promote"), $name ."_promote", variable_get($name ."_promote", 0), node_promote_status(), t("By default, promote new submissions in this category to the front page."));
|
$form .= form_select(t("Promote"), $name ."_promote", variable_get($name ."_promote", 0), node_promote_status(), "By default, promote new submissions in this category to the front page.");
|
||||||
$form .= form_select(t("Status"), $name ."_status", variable_get($name ."_status", node_status("queued")), node_status($name), t("What to do with new submissions in this category?"));
|
$form .= form_select(t("Status"), $name ."_status", variable_get($name ."_status", node_status("queued")), node_status($name), "What to do with new submissions in this category?");
|
||||||
$form .= form_select(t("Post threshold"), $name ."_post", variable_get($name ."_post", 4), $threshold_post, t("If new submissions are subject to moderation, select a post threshold."));
|
$form .= form_select(t("Post threshold"), $name ."_post", variable_get($name ."_post", 4), $threshold_post, "If new submissions are subject to moderation, select a post threshold.");
|
||||||
$form .= form_select(t("Dump threshold"), $name ."_dump", variable_get($name ."_dump", -2), $threshold_dump, t("If new submissions are subject to moderation, select a dump threshold."));
|
$form .= form_select(t("Dump threshold"), $name ."_dump", variable_get($name ."_dump", -2), $threshold_dump, "If new submissions are subject to moderation, select a dump threshold.");
|
||||||
$form .= form_select(t("Expiration threshold"), $name ."_expire", variable_get($name ."_expire", 8), $threshold_expire, t("If new submissions are subject to moderation, select a expiration threshold."));
|
$form .= form_select(t("Expiration threshold"), $name ."_expire", variable_get($name ."_expire", 8), $threshold_expire, "If new submissions are subject to moderation, select a expiration threshold.");
|
||||||
$form .= form_textfield("Moderate", $name ."_moderate", variable_get($name ."_moderate", ""), 35, 255, t("Provide a comma-seperated list of the moderators' usernames."));
|
$form .= form_textfield("Moderate", $name ."_moderate", variable_get($name ."_moderate", ""), 35, 255, "A comma-seperated list of the moderators' usernames.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -134,23 +181,83 @@ function node_setting() {
|
||||||
return form($REQUEST_URI, $form);
|
return form($REQUEST_URI, $form);
|
||||||
}
|
}
|
||||||
|
|
||||||
function node_admin() {
|
function node_admin_save($edit) {
|
||||||
global $op, $id, $edit, $type;
|
if (isset($edit[status])) {
|
||||||
|
$edit[timestamp_posted] = (strtotime($edit[timestamp_posted]) > time()) ? strtotime($edit[timestamp_posted]) : 0;
|
||||||
|
$edit[timestamp_queued] = (strtotime($edit[timestamp_queued]) > time()) ? strtotime($edit[timestamp_queued]) : 0;
|
||||||
|
$edit[timestamp_hidden] = (strtotime($edit[timestamp_hidden]) > time()) ? strtotime($edit[timestamp_hidden]) : 0;
|
||||||
|
node_save($edit, array(status, timestamp_posted, timestamp_queued, timestamp_hidden));
|
||||||
|
}
|
||||||
|
else if (isset($edit[attribute])) {
|
||||||
|
node_save($edit, array(attribute));
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
node_save($edit, array(comment, moderate, promote));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
print "<SMALL><A HREF=\"admin.php?mod=node&op=default\">node settings</A> | <A HREF=\"admin.php?mod=node&op=listing\">node listings</A> | <A HREF=\"admin.php?mod=node\">overview</A></SMALL><HR>\n";
|
function node_search() {
|
||||||
|
global $REQUEST_URI;
|
||||||
|
|
||||||
|
foreach (module_list() as $name) {
|
||||||
|
if (module_hook($name, "user")) {
|
||||||
|
$options .= "<OPTION VALUE=\"$name\">$name</OPTION>\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$output .= "<FORM ACTION=\"$REQUEST_URI\" METHOD=\"POST\">\n";
|
||||||
|
$output .= " <INPUT SIZE=\"50\" VALUE=\"". check_form($keys) ."\" NAME=\"keys\" TYPE=\"text\">\n";
|
||||||
|
$output .= " <SELECT NAME=\"module\">$options</SELECT>\n";
|
||||||
|
$output .= " <INPUT TYPE=\"submit\" VALUE=\"Search\">\n";
|
||||||
|
$output .= "</FORM>\n";
|
||||||
|
|
||||||
|
return $output;
|
||||||
|
}
|
||||||
|
|
||||||
|
function node_module_edit($edit, $type) {
|
||||||
|
$edit[type] = $type;
|
||||||
|
return node_invoke($edit, "form");
|
||||||
|
}
|
||||||
|
|
||||||
|
function node_module_save($edit, $type) {
|
||||||
|
$edit[type] = $type;
|
||||||
|
return node_invoke($edit, "save");
|
||||||
|
}
|
||||||
|
|
||||||
|
function node_admin() {
|
||||||
|
global $op, $id, $edit, $query, $type, $keys;
|
||||||
|
|
||||||
|
foreach (module_list() as $name) {
|
||||||
|
if (module_hook($name, "status") && $name != "node") {
|
||||||
|
$link[] = "<A HREF=\"admin.php?mod=node&type=$name&op=add\">add $name</A>";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
print "<SMALL>". implode(" | ", $link) ." | <A HREF=\"admin.php?mod=node&op=default\">node settings</A> | <A HREF=\"admin.php?mod=node&op=listing\">node listings</A> | <A HREF=\"admin.php?mod=node&op=search\">search node</A> | <A HREF=\"admin.php?mod=node\">overview</A></SMALL><HR>\n";
|
||||||
|
|
||||||
$id = check_input($edit[nid] ? $edit[nid] : $id);
|
$id = check_input($edit[nid] ? $edit[nid] : $id);
|
||||||
$type = ($type ? $type : 0);
|
|
||||||
|
|
||||||
switch ($op) {
|
switch ($op) {
|
||||||
case "Edit node":
|
case "add":
|
||||||
case "edit":
|
print module_invoke($type, "form");
|
||||||
print node_admin_edit($id);
|
break;
|
||||||
|
case "search":
|
||||||
|
print node_search($id);
|
||||||
|
print search_data($keys, $type);
|
||||||
|
break;
|
||||||
|
case "status":
|
||||||
|
print node_edit_status($id);
|
||||||
|
break;
|
||||||
|
case "option":
|
||||||
|
print node_edit_option($id);
|
||||||
|
break;
|
||||||
|
case "attribute":
|
||||||
|
print node_edit_attribute($id);
|
||||||
break;
|
break;
|
||||||
case "default":
|
case "default":
|
||||||
print node_setting();
|
print node_setting();
|
||||||
break;
|
break;
|
||||||
case "Delete node":
|
case "delete":
|
||||||
print status(node_delete($id));
|
print status(node_delete($id));
|
||||||
print node_overview();
|
print node_overview();
|
||||||
break;
|
break;
|
||||||
|
@ -166,15 +273,20 @@ function node_admin() {
|
||||||
print node_setting();
|
print node_setting();
|
||||||
break;
|
break;
|
||||||
case "Save node":
|
case "Save node":
|
||||||
node_save($edit, array(author, comment, moderate, promote, status, timestamp));
|
print node_admin_save($edit);
|
||||||
print node_admin_view($id);
|
print node_overview();
|
||||||
break;
|
break;
|
||||||
case "View node":
|
case "edit":
|
||||||
case "view":
|
print node_module_edit(node_get_array(array("nid" => $id)), $type);
|
||||||
print node_admin_view($id);
|
|
||||||
break;
|
break;
|
||||||
|
case "Preview":
|
||||||
|
print node_module_edit($edit, $type);
|
||||||
|
break;
|
||||||
|
case "Submit":
|
||||||
|
print status(node_module_save($edit, $type));
|
||||||
|
// fall through:
|
||||||
default:
|
default:
|
||||||
print node_overview(node_query($type));
|
print node_overview(node_query($query ? $query : 0));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -39,64 +39,111 @@ function node_filter($text) {
|
||||||
return $text;
|
return $text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function node_cron() {
|
||||||
|
db_query("UPDATE node SET status = '". node_status("posted") ."', timestamp_posted = '' WHERE timestamp_posted > 0 AND timestamp_posted < ". time());
|
||||||
|
db_query("UPDATE node SET status = '". node_status("queued") ."', timestamp_posted = '' WHERE timestamp_queued > 0 AND timestamp_queued < ". time());
|
||||||
|
db_query("UPDATE node SET status = '". node_status("dumped") ."', timestamp_posted = '' WHERE timestamp_hidden > 0 AND timestamp_hidden < ". time());
|
||||||
|
}
|
||||||
|
|
||||||
function node_overview($query = array()) {
|
function node_overview($query = array()) {
|
||||||
global $user;
|
global $user;
|
||||||
|
|
||||||
|
$colors = array("#ffdc9b", "#dedec4");
|
||||||
|
|
||||||
$result = db_query("SELECT n.*, u.userid, c.name AS category FROM node n LEFT JOIN users u ON n.author = u.id LEFT JOIN category c ON n.cid = c.cid $query[1] LIMIT 50");
|
$result = db_query("SELECT n.*, u.userid, c.name AS category FROM node n LEFT JOIN users u ON n.author = u.id LEFT JOIN category c ON n.cid = c.cid $query[1] LIMIT 50");
|
||||||
|
|
||||||
$output .= status($query[0]);
|
$output .= status($query[0]);
|
||||||
$output .= "<TABLE BORDER=\"1\" CELLPADDING=\"2\" CELLSPACING=\"2\">\n";
|
$output .= "<TABLE BORDER=\"1\" CELLPADDING=\"2\" CELLSPACING=\"2\">\n";
|
||||||
$output .= " <TR><TH>title</TH><TH>category</TH><TH>status</TH><TH>author</TH><TH>date</TH><TH COLSPAN=\"2\">operations</TH></TR>\n";
|
$output .= " <TR><TH>title</TH><TH>type</TH><TH>status</TH><TH>meta attributes</TH><TH>author</TH><TH>date</TH></TR>\n";
|
||||||
|
|
||||||
while ($node = db_fetch_object($result)) {
|
while ($node = db_fetch_object($result)) {
|
||||||
$output .= " <TR><TD><A HREF=\"node.php?id=$node->nid\">". check_output($node->title) ."</A></TD><TD ALIGN=\"center\">". check_output($node->category ? $node->category : $node->type) ."</TD><TD>". node_status($node->status) ."</TD><TD>". format_username($node->userid) ."</TD><TD>". format_date($node->timestamp, "small") ."</TD><TD>". (user_access($user, "node") ? "<A HREF=\"admin.php?mod=node&op=edit&id=$node->nid\">edit node</A>" : "edit node") ."</TD><TD>". (user_access($user, $node->type) ? "<A HREF=\"admin.php?mod=$node->type&op=edit&id=$node->nid\">edit $node->type</A>" : "edit $node->type") ."</TD></TR>\n";
|
unset ($link);
|
||||||
|
|
||||||
|
$link[] = user_access($user, $node->type) ? "<A HREF=\"admin.php?mod=node&type=$node->type&op=edit&id=$node->nid\">edit content</A>" : "edit content";
|
||||||
|
$link[] = user_access($user, "node") ? "<A HREF=\"admin.php?mod=node&op=option&id=$node->nid\">edit options</A>" : "edit options";
|
||||||
|
$link[] = user_access($user, "node") ? "<A HREF=\"admin.php?mod=node&op=status&id=$node->nid\">edit status</A>" : "edit status";
|
||||||
|
$link[] = user_access($user, "node") ? "<A HREF=\"admin.php?mod=node&op=attribute&id=$node->nid\">edit attributes</A>" : "edit attributes";
|
||||||
|
$link[] = user_access($user, "node") ? "<A HREF=\"admin.php?mod=node&op=delete&id=$node->nid\">delete node</A>" : "delete node";
|
||||||
|
|
||||||
|
$color = $colors[$i++ % sizeof($colors)];
|
||||||
|
|
||||||
|
$output .= " <TR BGCOLOR=\"$color\"><TD><A HREF=\"node.php?id=$node->nid\">". check_output($node->title) ."</A></TD><TD ALIGN=\"center\">$node->type</TD><TD>". node_status($node->status) ."</TD><TD>". check_output($node->attribute) ."</TD><TD>". format_username($node->userid) ."</TD><TD>". format_date($node->timestamp, "small") ."</TD></TR>\n";
|
||||||
|
$output .= " <TR BGCOLOR=\"$color\"><TD ALIGN=\"right\" COLSPAN=\"6\"><SMALL>". implode(", ", $link) ."</SMALL></TD>\n";
|
||||||
}
|
}
|
||||||
$output .= "</TABLE>\n";
|
$output .= "</TABLE>\n";
|
||||||
|
|
||||||
return $output;
|
return $output;
|
||||||
}
|
}
|
||||||
|
|
||||||
function node_admin_view($id) {
|
function node_edit_option($id) {
|
||||||
$node = node_get_object(array("nid" => $id));
|
|
||||||
|
|
||||||
$form .= form_item("Title", check_output($node->title));
|
|
||||||
$form .= form_item("Author", format_username($node->userid));
|
|
||||||
$form .= form_item("Status", node_status($node->status));
|
|
||||||
$form .= form_item("Comment", node_comment_status($node->comment));
|
|
||||||
$form .= form_item("Promote", node_promote_status($node->promote));
|
|
||||||
$form .= form_item("Moderate", check_output($node->moderate));
|
|
||||||
$form .= form_item("Date", format_date($node->timestamp));
|
|
||||||
$form .= form_submit("Edit node");
|
|
||||||
$form .= form_submit("Delete node");
|
|
||||||
|
|
||||||
return form("admin.php?mod=node&id=$node->nid", $form);
|
|
||||||
}
|
|
||||||
|
|
||||||
function node_admin_edit($id) {
|
|
||||||
global $user;
|
global $user;
|
||||||
|
|
||||||
$node = node_get_object(array("nid" => $id));
|
$node = node_get_object(array("nid" => $id));
|
||||||
|
|
||||||
$form .= form_item("Title", check_output($node->title));
|
$form .= form_item("Document title", check_output($node->title));
|
||||||
$form .= form_select("Author", "author", $node->author, array($node->author => $node->userid, $user->id => $user->userid));
|
$form .= form_select("Comment", "comment", $node->comment, node_comment_status(), "Allow users to post comments to this document.");
|
||||||
$form .= form_select("Status", "status", $node->status, node_status($node->type));
|
$form .= form_select("Promote", "promote", $node->promote, node_promote_status(), "Promote this document on the main page.");
|
||||||
$form .= form_select("Comment", "comment", $node->comment, node_comment_status());
|
$form .= form_textfield("Moderate", "moderate", $node->moderate, 35, 255, t("A comma-seperated list of the moderators their usernames."));
|
||||||
$form .= form_select("Promote", "promote", $node->promote, node_promote_status());
|
|
||||||
$form .= form_textfield("Moderate", "moderate", $node->moderate, 35, 255, t("Provide a comma-seperated list of the moderators their usernames."));
|
|
||||||
$form .= form_select("Date", "timestamp", $node->timestamp, array($node->timestamp => format_date($node->timestamp) ." (original)", time() => format_date(time()) ." (current)"));
|
|
||||||
$form .= form_hidden("nid", $node->nid);
|
$form .= form_hidden("nid", $node->nid);
|
||||||
$form .= form_submit("Save node");
|
$form .= form_submit("Save node");
|
||||||
$form .= form_submit("View node");
|
|
||||||
|
|
||||||
return form("admin.php?mod=node&id=$node->nid", $form);
|
return form("admin.php?mod=node&id=$node->nid", $form);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function node_edit_attribute($id) {
|
||||||
|
global $user;
|
||||||
|
|
||||||
|
$node = node_get_object(array("nid" => $id));
|
||||||
|
|
||||||
|
$form .= form_item("Document title", check_output($node->title));
|
||||||
|
$form .= form_textfield("Attributes", "attribute", $edit[attribute], 50, 128, htmlentities("A list meta attributes. Format: <type>:<value>;<type>:<value>;. Example: 'software:apache;type:webserver;os:linux;'."));
|
||||||
|
$form .= form_hidden("nid", $node->nid);
|
||||||
|
$form .= form_submit("Save node");
|
||||||
|
|
||||||
|
return form("admin.php?mod=node&id=$node->nid", $form);
|
||||||
|
}
|
||||||
|
|
||||||
|
function node_edit_status($id) {
|
||||||
|
global $REQUEST_URI;
|
||||||
|
|
||||||
|
$node = node_get_object(array("nid" => $id));
|
||||||
|
|
||||||
|
$form .= form_item("Document title", check_output($node->title));
|
||||||
|
$form .= form_select("Current status", "status", $node->status, node_status($node->type));
|
||||||
|
$form .= form_textfield("Automatically post document", "timestamp_posted", ($node->timestamp_posted ? format_date($node->timestamp_posted) : ""), 30, 55, "The date at which your document will be automatically posted. Leave empty if you don't want to schedule this document, or fill out a string containing an English date format. Example input: '". date("j F Y G:i") ."', '". date("m/d/y H:i") ."', '". date("F j, Y H:i") ."', ...");
|
||||||
|
$form .= form_textfield("Automatically queue document", "timestamp_queued", ($node->timestamp_queued ? format_date($node->timestamp_queued) : ""), 30, 55, "The date at which your document will be automatically queued. Leave empty if you don't want to schedule this document, or fill out a string containing an English date format. Example input: '". date("j F Y G:i") ."', '". date("m/d/y H:i") ."', '". date("F j, Y H:i") ."', ...");
|
||||||
|
$form .= form_textfield("Automatically hide document", "timestamp_hidden", ($node->timestamp_hidden ? format_date($node->timestamp_hidden) : ""), 30, 55, "The date at which your document will be automatically hidden. Leave empty if you don't want to schedule this document, or fill out a string containing an English date format. Example input: '". date("j F Y G:i") ."', '". date("m/d/y H:i") ."', '". date("F j, Y H:i") ."', ...");
|
||||||
|
$form .= form_hidden("nid", $node->nid);
|
||||||
|
$form .= form_submit("Save node");
|
||||||
|
|
||||||
|
return form($REQUEST_URI, $form);
|
||||||
|
}
|
||||||
|
|
||||||
function node_delete($id) {
|
function node_delete($id) {
|
||||||
return (node_del(array("nid" => $id)) ? "node has been deleted." : "failed to delete node: node must be dumped first.");
|
return (node_del(array("nid" => $id)) ? "node has been deleted." : "failed to delete node: node must be dumped first.");
|
||||||
}
|
}
|
||||||
|
|
||||||
function node_query($type = "") {
|
function node_query($type = "") {
|
||||||
global $status;
|
$queries[] = array("all nodes: recent additions", "ORDER BY n.timestamp DESC");
|
||||||
$queries = array(array("recent nodes", "ORDER BY n.timestamp DESC"), array("posted nodes", "WHERE n.status = '$status[posted]' ORDER BY n.timestamp DESC"), array("queued nodes", "WHERE n.status = '$status[queued]' ORDER BY n.timestamp DESC"), array("dumped nodes", "WHERE n.status = '$status[dumped]' ORDER BY n.timestamp DESC"));
|
$queries[] = array("all nodes: status set to 'posted'", "WHERE n.status = '". node_status("posted") ."' ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("all nodes: status set to 'queued'", "WHERE n.status = '". node_status("queued") ."' ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("all nodes: status set to 'dumped'", "WHERE n.status = '". node_status("dumped") ."' ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("all nodes: scheduled to be posted", "WHERE n.timestamp_posted > 0 ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("all nodes: scheduled to be queued", "WHERE n.timestamp_queued > 0 ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("all nodes: scheduled to be hidden", "WHERE n.timestamp_hidden > 0 ORDER BY n.timestamp DESC");
|
||||||
|
|
||||||
|
foreach (module_list() as $name) {
|
||||||
|
if (module_hook($name, "user")) {
|
||||||
|
$queries[] = array("$name: recent additions", "WHERE n.type = '$name' ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("$name: status set to 'posted'", "WHERE n.type = '$name' AND n.status = '". node_status("posted") ."' ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("$name: status set to 'queued'", "WHERE n.type = '$name' AND n.status = '". node_status("queued") ."' ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("$name: status set to 'dumped'", "WHERE n.type = '$name' AND n.status = '". node_status("dumped") ."' ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("$name: scheduled to be posted", "WHERE n.type = '$name' AND n.timestamp_posted > 0 ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("$name: scheduled to be queued", "WHERE n.type = '$name' AND n.timestamp_queued > 0 ORDER BY n.timestamp DESC");
|
||||||
|
$queries[] = array("$name: scheduled to be hidden", "WHERE n.type = '$name' AND n.timestamp_hidden > 0 ORDER BY n.timestamp DESC");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return ($queries[$type] ? $queries[$type] : $queries);
|
return ($queries[$type] ? $queries[$type] : $queries);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -118,13 +165,13 @@ function node_setting() {
|
||||||
foreach (module_list() as $name) {
|
foreach (module_list() as $name) {
|
||||||
if (module_hook($name, "user")) {
|
if (module_hook($name, "user")) {
|
||||||
$form .= "<H3>Default settings for $name nodes</H3>";
|
$form .= "<H3>Default settings for $name nodes</H3>";
|
||||||
$form .= form_select(t("Comment"), $name ."_comment", variable_get($name ."_comment", 0), node_comment_status(), t("By default, allow or dissallow users to post comments in this category."));
|
$form .= form_select(t("Comment"), $name ."_comment", variable_get($name ."_comment", 0), node_comment_status(), "By default, allow or dissallow users to post comments in this category.");
|
||||||
$form .= form_select(t("Promote"), $name ."_promote", variable_get($name ."_promote", 0), node_promote_status(), t("By default, promote new submissions in this category to the front page."));
|
$form .= form_select(t("Promote"), $name ."_promote", variable_get($name ."_promote", 0), node_promote_status(), "By default, promote new submissions in this category to the front page.");
|
||||||
$form .= form_select(t("Status"), $name ."_status", variable_get($name ."_status", node_status("queued")), node_status($name), t("What to do with new submissions in this category?"));
|
$form .= form_select(t("Status"), $name ."_status", variable_get($name ."_status", node_status("queued")), node_status($name), "What to do with new submissions in this category?");
|
||||||
$form .= form_select(t("Post threshold"), $name ."_post", variable_get($name ."_post", 4), $threshold_post, t("If new submissions are subject to moderation, select a post threshold."));
|
$form .= form_select(t("Post threshold"), $name ."_post", variable_get($name ."_post", 4), $threshold_post, "If new submissions are subject to moderation, select a post threshold.");
|
||||||
$form .= form_select(t("Dump threshold"), $name ."_dump", variable_get($name ."_dump", -2), $threshold_dump, t("If new submissions are subject to moderation, select a dump threshold."));
|
$form .= form_select(t("Dump threshold"), $name ."_dump", variable_get($name ."_dump", -2), $threshold_dump, "If new submissions are subject to moderation, select a dump threshold.");
|
||||||
$form .= form_select(t("Expiration threshold"), $name ."_expire", variable_get($name ."_expire", 8), $threshold_expire, t("If new submissions are subject to moderation, select a expiration threshold."));
|
$form .= form_select(t("Expiration threshold"), $name ."_expire", variable_get($name ."_expire", 8), $threshold_expire, "If new submissions are subject to moderation, select a expiration threshold.");
|
||||||
$form .= form_textfield("Moderate", $name ."_moderate", variable_get($name ."_moderate", ""), 35, 255, t("Provide a comma-seperated list of the moderators' usernames."));
|
$form .= form_textfield("Moderate", $name ."_moderate", variable_get($name ."_moderate", ""), 35, 255, "A comma-seperated list of the moderators' usernames.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -134,23 +181,83 @@ function node_setting() {
|
||||||
return form($REQUEST_URI, $form);
|
return form($REQUEST_URI, $form);
|
||||||
}
|
}
|
||||||
|
|
||||||
function node_admin() {
|
function node_admin_save($edit) {
|
||||||
global $op, $id, $edit, $type;
|
if (isset($edit[status])) {
|
||||||
|
$edit[timestamp_posted] = (strtotime($edit[timestamp_posted]) > time()) ? strtotime($edit[timestamp_posted]) : 0;
|
||||||
|
$edit[timestamp_queued] = (strtotime($edit[timestamp_queued]) > time()) ? strtotime($edit[timestamp_queued]) : 0;
|
||||||
|
$edit[timestamp_hidden] = (strtotime($edit[timestamp_hidden]) > time()) ? strtotime($edit[timestamp_hidden]) : 0;
|
||||||
|
node_save($edit, array(status, timestamp_posted, timestamp_queued, timestamp_hidden));
|
||||||
|
}
|
||||||
|
else if (isset($edit[attribute])) {
|
||||||
|
node_save($edit, array(attribute));
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
node_save($edit, array(comment, moderate, promote));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
print "<SMALL><A HREF=\"admin.php?mod=node&op=default\">node settings</A> | <A HREF=\"admin.php?mod=node&op=listing\">node listings</A> | <A HREF=\"admin.php?mod=node\">overview</A></SMALL><HR>\n";
|
function node_search() {
|
||||||
|
global $REQUEST_URI;
|
||||||
|
|
||||||
|
foreach (module_list() as $name) {
|
||||||
|
if (module_hook($name, "user")) {
|
||||||
|
$options .= "<OPTION VALUE=\"$name\">$name</OPTION>\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$output .= "<FORM ACTION=\"$REQUEST_URI\" METHOD=\"POST\">\n";
|
||||||
|
$output .= " <INPUT SIZE=\"50\" VALUE=\"". check_form($keys) ."\" NAME=\"keys\" TYPE=\"text\">\n";
|
||||||
|
$output .= " <SELECT NAME=\"module\">$options</SELECT>\n";
|
||||||
|
$output .= " <INPUT TYPE=\"submit\" VALUE=\"Search\">\n";
|
||||||
|
$output .= "</FORM>\n";
|
||||||
|
|
||||||
|
return $output;
|
||||||
|
}
|
||||||
|
|
||||||
|
function node_module_edit($edit, $type) {
|
||||||
|
$edit[type] = $type;
|
||||||
|
return node_invoke($edit, "form");
|
||||||
|
}
|
||||||
|
|
||||||
|
function node_module_save($edit, $type) {
|
||||||
|
$edit[type] = $type;
|
||||||
|
return node_invoke($edit, "save");
|
||||||
|
}
|
||||||
|
|
||||||
|
function node_admin() {
|
||||||
|
global $op, $id, $edit, $query, $type, $keys;
|
||||||
|
|
||||||
|
foreach (module_list() as $name) {
|
||||||
|
if (module_hook($name, "status") && $name != "node") {
|
||||||
|
$link[] = "<A HREF=\"admin.php?mod=node&type=$name&op=add\">add $name</A>";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
print "<SMALL>". implode(" | ", $link) ." | <A HREF=\"admin.php?mod=node&op=default\">node settings</A> | <A HREF=\"admin.php?mod=node&op=listing\">node listings</A> | <A HREF=\"admin.php?mod=node&op=search\">search node</A> | <A HREF=\"admin.php?mod=node\">overview</A></SMALL><HR>\n";
|
||||||
|
|
||||||
$id = check_input($edit[nid] ? $edit[nid] : $id);
|
$id = check_input($edit[nid] ? $edit[nid] : $id);
|
||||||
$type = ($type ? $type : 0);
|
|
||||||
|
|
||||||
switch ($op) {
|
switch ($op) {
|
||||||
case "Edit node":
|
case "add":
|
||||||
case "edit":
|
print module_invoke($type, "form");
|
||||||
print node_admin_edit($id);
|
break;
|
||||||
|
case "search":
|
||||||
|
print node_search($id);
|
||||||
|
print search_data($keys, $type);
|
||||||
|
break;
|
||||||
|
case "status":
|
||||||
|
print node_edit_status($id);
|
||||||
|
break;
|
||||||
|
case "option":
|
||||||
|
print node_edit_option($id);
|
||||||
|
break;
|
||||||
|
case "attribute":
|
||||||
|
print node_edit_attribute($id);
|
||||||
break;
|
break;
|
||||||
case "default":
|
case "default":
|
||||||
print node_setting();
|
print node_setting();
|
||||||
break;
|
break;
|
||||||
case "Delete node":
|
case "delete":
|
||||||
print status(node_delete($id));
|
print status(node_delete($id));
|
||||||
print node_overview();
|
print node_overview();
|
||||||
break;
|
break;
|
||||||
|
@ -166,15 +273,20 @@ function node_admin() {
|
||||||
print node_setting();
|
print node_setting();
|
||||||
break;
|
break;
|
||||||
case "Save node":
|
case "Save node":
|
||||||
node_save($edit, array(author, comment, moderate, promote, status, timestamp));
|
print node_admin_save($edit);
|
||||||
print node_admin_view($id);
|
print node_overview();
|
||||||
break;
|
break;
|
||||||
case "View node":
|
case "edit":
|
||||||
case "view":
|
print node_module_edit(node_get_array(array("nid" => $id)), $type);
|
||||||
print node_admin_view($id);
|
|
||||||
break;
|
break;
|
||||||
|
case "Preview":
|
||||||
|
print node_module_edit($edit, $type);
|
||||||
|
break;
|
||||||
|
case "Submit":
|
||||||
|
print status(node_module_save($edit, $type));
|
||||||
|
// fall through:
|
||||||
default:
|
default:
|
||||||
print node_overview(node_query($type));
|
print node_overview(node_query($query ? $query : 0));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -26,12 +26,12 @@ function page_status() {
|
||||||
function page_form($edit = array()) {
|
function page_form($edit = array()) {
|
||||||
global $format, $REQUEST_URI;
|
global $format, $REQUEST_URI;
|
||||||
|
|
||||||
$form .= form_textfield(t("Subject"), "title", $edit[title], 50, 64);
|
$form .= form_textfield("Subject", "title", $edit[title], 50, 64);
|
||||||
$form .= structure_form("page", $edit);
|
$form .= structure_form("page", $edit);
|
||||||
$form .= form_textarea(t("Body"), "body", $edit[body], 50, 10);
|
$form .= form_textarea("Body", "body", $edit[body], 50, 10);
|
||||||
$form .= form_select(t("Type"), "format", $edit[format], $format);
|
$form .= form_select("Type", "format", $edit[format], $format);
|
||||||
$form .= form_hidden("nid", $edit[nid]);
|
$form .= form_hidden("nid", $edit[nid]);
|
||||||
$form .= form_submit(t("Submit"));
|
$form .= form_submit("Submit");
|
||||||
|
|
||||||
return form($REQUEST_URI, $form);
|
return form($REQUEST_URI, $form);
|
||||||
}
|
}
|
||||||
|
@ -44,39 +44,4 @@ function page_save($edit) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function page_query($type = "") {
|
|
||||||
global $status;
|
|
||||||
$queries = array(array("recent pages", "WHERE n.type = 'page' ORDER BY n.timestamp DESC"), array("posted pages", "WHERE n.type = 'page' AND n.status = '$status[posted]' ORDER BY n.timestamp DESC"), array("dumped pages", "WHERE n.type = 'page' AND n.status = '$status[dumped]' ORDER BY n.timestamp DESC"));
|
|
||||||
return ($queries[$type] ? $queries[$type] : $queries);
|
|
||||||
}
|
|
||||||
|
|
||||||
function page_overview($query = array()) {
|
|
||||||
return node_overview($query);
|
|
||||||
}
|
|
||||||
|
|
||||||
function page_admin() {
|
|
||||||
global $id, $op, $edit, $type;
|
|
||||||
|
|
||||||
print "<SMALL><A HREF=\"admin.php?mod=page&op=add\">add new page</A> | <A HREF=\"admin.php?mod=page&op=listing\">page listing</A> | <A HREF=\"admin.php?mod=page\">overview</A></SMALL><HR>\n";
|
|
||||||
|
|
||||||
$type = ($type ? $type : 0);
|
|
||||||
|
|
||||||
switch ($op) {
|
|
||||||
case "add":
|
|
||||||
print page_form();
|
|
||||||
break;
|
|
||||||
case "edit":
|
|
||||||
print page_form(node_get_array(array(nid => $id)));
|
|
||||||
break;
|
|
||||||
case "listing":
|
|
||||||
print node_listing(page_query());
|
|
||||||
break;
|
|
||||||
case t("Submit"):
|
|
||||||
print status(page_save($edit));
|
|
||||||
// fall through:
|
|
||||||
default:
|
|
||||||
print page_overview(page_query($type));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
?>
|
?>
|
|
@ -26,12 +26,12 @@ function page_status() {
|
||||||
function page_form($edit = array()) {
|
function page_form($edit = array()) {
|
||||||
global $format, $REQUEST_URI;
|
global $format, $REQUEST_URI;
|
||||||
|
|
||||||
$form .= form_textfield(t("Subject"), "title", $edit[title], 50, 64);
|
$form .= form_textfield("Subject", "title", $edit[title], 50, 64);
|
||||||
$form .= structure_form("page", $edit);
|
$form .= structure_form("page", $edit);
|
||||||
$form .= form_textarea(t("Body"), "body", $edit[body], 50, 10);
|
$form .= form_textarea("Body", "body", $edit[body], 50, 10);
|
||||||
$form .= form_select(t("Type"), "format", $edit[format], $format);
|
$form .= form_select("Type", "format", $edit[format], $format);
|
||||||
$form .= form_hidden("nid", $edit[nid]);
|
$form .= form_hidden("nid", $edit[nid]);
|
||||||
$form .= form_submit(t("Submit"));
|
$form .= form_submit("Submit");
|
||||||
|
|
||||||
return form($REQUEST_URI, $form);
|
return form($REQUEST_URI, $form);
|
||||||
}
|
}
|
||||||
|
@ -44,39 +44,4 @@ function page_save($edit) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function page_query($type = "") {
|
|
||||||
global $status;
|
|
||||||
$queries = array(array("recent pages", "WHERE n.type = 'page' ORDER BY n.timestamp DESC"), array("posted pages", "WHERE n.type = 'page' AND n.status = '$status[posted]' ORDER BY n.timestamp DESC"), array("dumped pages", "WHERE n.type = 'page' AND n.status = '$status[dumped]' ORDER BY n.timestamp DESC"));
|
|
||||||
return ($queries[$type] ? $queries[$type] : $queries);
|
|
||||||
}
|
|
||||||
|
|
||||||
function page_overview($query = array()) {
|
|
||||||
return node_overview($query);
|
|
||||||
}
|
|
||||||
|
|
||||||
function page_admin() {
|
|
||||||
global $id, $op, $edit, $type;
|
|
||||||
|
|
||||||
print "<SMALL><A HREF=\"admin.php?mod=page&op=add\">add new page</A> | <A HREF=\"admin.php?mod=page&op=listing\">page listing</A> | <A HREF=\"admin.php?mod=page\">overview</A></SMALL><HR>\n";
|
|
||||||
|
|
||||||
$type = ($type ? $type : 0);
|
|
||||||
|
|
||||||
switch ($op) {
|
|
||||||
case "add":
|
|
||||||
print page_form();
|
|
||||||
break;
|
|
||||||
case "edit":
|
|
||||||
print page_form(node_get_array(array(nid => $id)));
|
|
||||||
break;
|
|
||||||
case "listing":
|
|
||||||
print node_listing(page_query());
|
|
||||||
break;
|
|
||||||
case t("Submit"):
|
|
||||||
print status(page_save($edit));
|
|
||||||
// fall through:
|
|
||||||
default:
|
|
||||||
print page_overview(page_query($type));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
?>
|
?>
|
|
@ -209,3 +209,9 @@ CREATE TABLE poll_choices (
|
||||||
PRIMARY KEY (chid)
|
PRIMARY KEY (chid)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
# 04/06/01
|
||||||
|
|
||||||
|
ALTER TABLE node ADD timestamp_posted int(11) NOT NULL;
|
||||||
|
ALTER TABLE node ADD timestamp_queued int(11) NOT NULL;
|
||||||
|
ALTER TABLE node ADD timestamp_hidden int(11) NOT NULL;
|
||||||
|
ALTER TABLE node ADD attribute varchar(255) DEFAULT '' NOT NULL;
|
||||||
|
|
Loading…
Reference in New Issue