2001-04-02 15:54:37 +00:00
<?php
2001-10-20 18:57:09 +00:00
// $Id$
2001-04-02 15:54:37 +00:00
2001-06-06 20:26:12 +00:00
function node_help() {
global $mod;
2003-06-04 18:24:39 +00:00
$output .= "<h3>Nodes</h3>The core of the Drupal system is the node. All of the contents of the system are placed in nodes, or extensions of nodes. ";
$output .= "A base node contains:<dl>";
$output .= "<dt>A Title</dt><dd>Up to 128 characters of text that titles the node.</dd>";
$output .= "<dt>A Teaser</dt><dd>A small block of text that is meant to get you interested in the rest of node. Drupal automatically pulls a small amount of the body of the node to make the teaser (To configure how long the teaser will be ". l("click here","admin/system/modules/node") ."). The teaser can be changed if you don't like what Drupal grabs.</dd>";
$output .= "<dt>The Body</dt><dd>The main text that comprises your content.</dd>";
$output .= "<dt>A Type</dt><dd>What kind of node is this? Blog, book, forum, comment, unextended, etc.</dd>";
$output .= "<dt>An Author</dt><dd>The author's name. It will either be \"anonymous\" or a valid user. You <i>cannot</i> set it to an arbitrary value.</dd>";
$output .= "<dt>Authored on</dt><dd>The date it was written on.</dd>";
$output .= "<dt>Changed</dt><dd>The last time this node was changed.</dd>";
$output .= "<dt>Static on front page</dt><dd>The front page is configured to show the teasers from only a few of the total nodes you have on your site (To configure how many teasers ". l("click here","admin/system/modules/node") ."), but if you think a node is important enough that you want it to stay on the front page enable this.</dd>";
$output .= "<dt>Allow user comments</dt><dd>A node can have comments, which are other nodes. These comments can be written by other users (Read-write), or only by admins (Read-only).</dd>";
$output .= "<dt>Attributes</dt><dd>A way to sort nodes.</dd><dt>Revisions</dt><dd>Drupal has a revision system so that you can \"roll back\" to an older version of a node if the new version is not what you want.</dd>";
$output .= "<dt>Promote to front page</dt><dd>To get people to look at the new stuff on your site you can choose to move it to the front page.</dd>";
2003-06-05 18:09:39 +00:00
$output .= "<dt>In moderation queue</dt><dd>Drupal has a moderation system. If it is active, a node is in one of three states: approved and published, approved and unpublished, and awaiting approval. If you are moderating a node it should be in the moderation queue.</dd>";
2003-06-04 18:24:39 +00:00
$output .= "<dt>Votes</dt><dd>If you are moderating a node this counts how many votes the node has gotten. Once a node gets a certain number of vote if will either be Approved, or Dropped (To setup the number of votes needed and the promote and dump scores ". l("click here","admin/system/modules/queue") .".)</a>.</dd>";
$output .= "<dt>Score</dt><dd>The score of the node is gotten by the votes it is given.</dd>";
$output .= "<dt>Users</dt><dd>The list of users who have voted on a moderated node.</dd>";
$output .= "<dt>Published</dt><dd>When using Drupal's moderation system a node remains unpublished -- unavaliable to non-moderators -- until it is marked Published.</dd></dl>";
$output .= "<p>Now that you know what is in a node, here are some of the types of nodes available.</p>";
2003-05-29 09:15:00 +00:00
if ($mod == "admin") {
2001-06-06 20:26:12 +00:00
foreach (module_list() as $name) {
2002-03-26 21:33:23 +00:00
if (module_hook($name, "node") && $name != "node") {
2003-06-04 18:24:39 +00:00
$output .= "<h3>". t("Node type: %module", array("%module" => module_invoke($name, "node", "name"))). "</h3>";
2003-05-29 09:15:00 +00:00
$output .= module_invoke($name, "help");
2001-06-06 20:26:12 +00:00
}
}
}
2003-05-29 09:15:00 +00:00
return t($output);
2001-06-06 20:26:12 +00:00
}
2002-06-01 21:57:29 +00:00
function node_system($field){
2002-06-08 16:17:29 +00:00
$system["description"] = t("The core that allows content to be submitted to the site.");
2003-05-29 09:15:00 +00:00
$system["admin_help"] = t("Settings for the core of Drupal. Almost everything is a node so these settings will affect most of the site.");
2002-06-01 21:57:29 +00:00
return $system[$field];
}
2003-02-09 17:39:40 +00:00
/*
** Accepts a DB result object which can be used to fetch node objects.
** Returns an HTML list suitable as content for a block.
*/
2002-11-11 20:59:28 +00:00
function node_title_list($result, $title = NULL) {
// no queries if site is in distress
2003-02-09 17:39:40 +00:00
if (module_exist("statistics") && throttle_status() > 3) {
2002-11-11 20:59:28 +00:00
return;
}
while ($node = db_fetch_object($result)) {
2002-12-10 20:35:20 +00:00
$number = module_invoke("comment", "num_all", $node->nid);
2003-02-09 17:39:40 +00:00
$items[] = l($node->title, "node/view/$node->nid", array("title" => t("Comments: %number", array("%number" => $number))));
2002-11-11 20:59:28 +00:00
}
2003-04-29 20:48:50 +00:00
return theme("theme_node_list", $items, $title);
}
2003-05-02 20:44:14 +00:00
function theme_node_list($items, $title = NULL) {
return theme("theme_item_list", $items, $title);
2002-11-11 20:59:28 +00:00
}
2003-03-14 20:41:27 +00:00
// Update the 'last viewed' timestamp of the specified node for current user.
function node_tag_new($nid) {
global $user;
if ($user->uid) {
2003-04-20 20:33:28 +00:00
$result = db_query("SELECT timestamp FROM history WHERE uid = %d AND nid = %d", $user->uid, $nid);
2003-03-14 20:41:27 +00:00
if (db_fetch_object($result)) {
2003-04-20 20:33:28 +00:00
db_query("UPDATE history SET timestamp = %d WHERE uid = %d AND nid = %d", time(), $user->uid, $nid);
2003-03-14 20:41:27 +00:00
}
else {
2003-04-20 20:33:28 +00:00
db_query("INSERT INTO history (uid, nid, timestamp) VALUES (%d, %d, %d)", $user->uid, $nid, time());
2003-03-14 20:41:27 +00:00
}
}
}
/*
** Retrieves the timestamp at which the current user last viewed the
** specified node.
*/
function node_last_viewed($nid) {
global $user;
2003-04-20 20:33:28 +00:00
$history = db_fetch_object(db_query("SELECT timestamp FROM history WHERE uid = '$user->uid' AND nid = %d", $nid));
2003-03-14 20:41:27 +00:00
return ($history->timestamp ? $history->timestamp : 0);
}
/**
* Determines whether the supplied timestamp is newer than the user's last view of a given node
*
* @param $nid node-id twhose history supplies the 'last viewed' timestamp
* @param $timestamp time which is compared against node's 'last veiwed' timestamp
*/
function node_is_new($nid, $timestamp) {
global $user;
static $cache;
2003-04-14 18:44:59 +00:00
if (!isset($cache[$nid])) {
2003-03-14 20:41:27 +00:00
if ($user->uid) {
2003-04-20 20:33:28 +00:00
$history = db_fetch_object(db_query("SELECT timestamp FROM history WHERE uid = %d AND nid = %d", $user->uid, $nid));
2003-03-14 20:41:27 +00:00
$cache[$nid] = $history->timestamp ? $history->timestamp : 0;
}
else {
$cache[$nid] = time();
}
}
if ($timestamp > $cache[$nid]) {
return 1;
}
else {
return 0;
}
}
2001-12-08 11:12:26 +00:00
function node_teaser($body) {
2002-12-10 20:35:20 +00:00
$size = variable_get("teaser_length", 600);
/*
** If the size is zero, teasers are disabled so we
** return the entire body.
*/
if ($size == 0) {
return $body;
}
2001-12-08 11:12:26 +00:00
/*
** If we have a short body, return the entire body:
*/
if (strlen($body) < $size) {
return $body;
}
/*
2002-12-10 20:35:20 +00:00
** If a valid delimiter has been specified, use it to
2002-12-21 18:53:39 +00:00
** chop of the teaser. The delimiter can be outside
** the allowed range but no more than a factor two.
2002-12-10 20:35:20 +00:00
*/
2003-04-14 18:44:59 +00:00
$delimiter = strpos($body, "<!--break-->");
2003-05-24 16:26:13 +00:00
if ($delimiter > 0) {
2002-12-10 20:35:20 +00:00
return substr($body, 0, $delimiter);
}
/*
** In some cases no delimiter has been specified (eg.
** when posting using the Blogger API) in which case
** we try to split at paragraph boundaries.
2001-12-08 11:12:26 +00:00
*/
2002-12-10 20:35:20 +00:00
if ($length = strpos($body, "<br />", $size)) {
2002-12-21 18:53:39 +00:00
return substr($body, 0, $length);
2002-12-10 20:35:20 +00:00
}
if ($length = strpos($body, "<br>", $size)) {
2002-12-21 18:53:39 +00:00
return substr($body, 0, $length);
2002-12-10 20:35:20 +00:00
}
if ($length = strpos($body, "</p>", $size)) {
2002-12-21 18:53:39 +00:00
return substr($body, 0, $length);
}
if ($length = strpos($body, "\n", $size)) {
return substr($body, 0, $length);
2002-12-10 20:35:20 +00:00
}
2001-12-08 11:12:26 +00:00
/*
2002-12-12 22:31:39 +00:00
** When even the first paragraph is too long, try to
2002-12-10 20:35:20 +00:00
** split at the end of the next sentence.
2001-12-08 11:12:26 +00:00
*/
2002-12-10 20:35:20 +00:00
if ($length = strpos($body, ". ", $size)) {
return substr($body, 0, $length + 1);
}
if ($length = strpos($body, "! ", $size)) {
return substr($body, 0, $length + 1);
}
if ($length = strpos($body, "? ", $size)) {
return substr($body, 0, $length + 1);
}
/*
** Nevermind, we split it the hard way ...
*/
2001-12-08 11:12:26 +00:00
2002-12-10 20:35:20 +00:00
return substr($body, 0, $size);
2001-12-08 11:12:26 +00:00
}
2003-03-07 22:11:44 +00:00
function node_invoke(&$node, $hook, $arg = 0) {
2001-12-08 11:12:26 +00:00
if (is_array($node)) {
2003-03-07 22:11:44 +00:00
$function = $node["type"] ."_$hook";
2001-12-08 11:12:26 +00:00
}
else if (is_object($node)) {
2003-03-07 22:11:44 +00:00
$function = $node->type ."_$hook";
2001-12-08 11:12:26 +00:00
}
else if (is_string($node)) {
2003-03-07 22:11:44 +00:00
$function = $node ."_$hook";
2001-12-08 11:12:26 +00:00
}
if (function_exists($function)) {
return ($arg ? $function($node, $arg) : $function($node));
}
}
2003-03-07 22:11:44 +00:00
function node_invoke_all(&$node, $hook, $op, $arg = 0) {
2003-02-16 14:57:35 +00:00
$return = array();
foreach (module_list() as $name) {
2003-03-07 22:11:44 +00:00
if ((module_hook($name, "node") || module_hook($name, "nodeapi")) && module_hook($name, $hook)) {
2003-02-16 14:57:35 +00:00
$function = $name ."_". $hook;
$result = $function($node, $op, $arg);
if (isset($result)) {
$return = array_merge($return, $result);
}
}
}
return $return;
}
2003-06-01 06:32:55 +00:00
function node_load($conditions, $revision = -1) {
2001-12-08 11:12:26 +00:00
/*
** Turn the conditions into a query:
*/
foreach ($conditions as $key => $value) {
$cond[] = "n.". check_query($key) ." = '". check_query($value) ."'";
}
/*
** Retrieve the node:
*/
$node = db_fetch_object(db_query("SELECT n.*, u.uid, u.name FROM node n LEFT JOIN users u ON u.uid = n.uid WHERE ". implode(" AND ", $cond)));
/*
** Unserialize the revisions field:
*/
if ($node->revisions) {
$node->revisions = unserialize($node->revisions);
}
/*
** Call the node specific callback (if any) and piggy-back the
** results to the node or overwrite some values:
*/
if ($extra = module_invoke($node->type, "load", $node)) {
foreach ($extra as $key => $value) {
$node->$key = $value;
}
}
2003-06-01 06:32:55 +00:00
/*
** Return the desired revision
*/
if ($revision != -1 && isset($node->revisions[$revision])) {
$node = $node->revisions[$revision]["node"];
}
2001-12-08 11:12:26 +00:00
return $node;
}
2003-03-07 22:11:44 +00:00
function node_save($node) {
2001-12-08 11:12:26 +00:00
2003-03-07 22:11:44 +00:00
/*
** Fetch fields to save to node table:
*/
$fields = node_invoke_all($node, "nodeapi", "fields");
2001-12-08 11:12:26 +00:00
/*
** Serialize the revisions field:
*/
if ($node->revisions) {
$node->revisions = serialize($node->revisions);
}
/*
** Apply filters to some default node fields:
*/
if (empty($node->nid)) {
/*
** Insert a new node:
*/
2001-12-08 13:11:33 +00:00
// Set some required fields:
2002-09-27 16:49:19 +00:00
if (!$node->created) {
$node->created = time();
}
2001-12-08 13:11:33 +00:00
$node->changed = time();
2003-04-20 20:33:28 +00:00
$node->nid = db_next_id("node_nid");
2001-12-08 11:12:26 +00:00
2001-12-08 13:11:33 +00:00
// Prepare the query:
2001-12-08 11:12:26 +00:00
foreach ($node as $key => $value) {
if (in_array($key, $fields)) {
$k[] = check_query($key);
$v[] = "'". check_query($value) ."'";
}
}
2001-12-08 13:11:33 +00:00
// Insert the node into the database:
2001-12-08 11:12:26 +00:00
db_query("INSERT INTO node (". implode(", ", $k) .") VALUES (". implode(", ", $v) .")");
2001-12-08 13:11:33 +00:00
// Call the node specific callback (if any):
2003-03-07 22:11:44 +00:00
node_invoke($node, "insert");
node_invoke_all($node, "nodeapi", "insert");
2001-12-08 11:12:26 +00:00
}
else {
/*
** Update an existing node:
*/
2001-12-08 13:11:33 +00:00
// Set some required fields:
2001-12-08 11:12:26 +00:00
$node->changed = time();
2001-12-08 13:11:33 +00:00
// Prepare the query:
2001-12-08 11:12:26 +00:00
foreach ($node as $key => $value) {
if (in_array($key, $fields)) {
$q[] = check_query($key) ." = '". check_query($value) ."'";
}
}
2001-12-08 13:11:33 +00:00
// Update the node in the database:
2001-12-08 11:12:26 +00:00
db_query("UPDATE node SET ". implode(", ", $q) ." WHERE nid = '$node->nid'");
2001-12-08 13:11:33 +00:00
// Call the node specific callback (if any):
2003-03-07 22:11:44 +00:00
node_invoke($node, "update");
node_invoke_all($node, "nodeapi", "update");
2001-12-08 11:12:26 +00:00
}
2002-11-17 06:42:52 +00:00
/*
2003-03-16 21:47:15 +00:00
** Clear the cache so an anonymous poster can see the node being
** added or updated.
2002-11-17 06:42:52 +00:00
*/
cache_clear_all();
2001-12-08 11:12:26 +00:00
/*
** Return the node ID:
*/
return $node->nid;
}
function node_view($node, $main = 0) {
2003-02-15 11:39:56 +00:00
2001-12-08 11:12:26 +00:00
2001-12-30 16:16:38 +00:00
$node = array2object($node);
2001-12-08 11:12:26 +00:00
2002-12-10 20:35:20 +00:00
/*
** Remove the delimiter (if any) that seperates the teaser from the
2003-04-14 18:44:59 +00:00
** body. TODO: this strips legitimate uses of '<!--break-->' also.
2002-12-10 20:35:20 +00:00
*/
2003-04-14 18:44:59 +00:00
$node->body = str_replace("<!--break-->", "", $node->body);
2002-12-10 20:35:20 +00:00
2001-12-08 11:12:26 +00:00
/*
** The "view" hook can be implemented to overwrite the default function
** to display nodes.
*/
if (module_hook($node->type, "view")) {
node_invoke($node, "view", $main);
}
else {
/*
** Default behavior:
*/
2003-05-28 15:07:25 +00:00
$node->teaser = check_output($node->teaser);
$node->body = check_output($node->body);
2003-05-26 19:50:39 +00:00
2003-02-15 11:39:56 +00:00
theme("node", $node, $main);
2001-12-08 11:12:26 +00:00
}
}
2003-05-31 12:34:11 +00:00
function node_show($node, $cid) {
2003-01-06 19:51:01 +00:00
if (node_access("view", $node)) {
node_view($node);
if (function_exists("comment_render") && $node->comment) {
comment_render($node, $cid);
}
2003-03-14 20:41:27 +00:00
/*
** Update the history table, stating that this user viewed this node.
*/
node_tag_new($node->nid);
2003-01-06 19:51:01 +00:00
}
}
2001-11-01 17:04:20 +00:00
function node_access($op, $node = 0) {
2001-11-03 18:38:30 +00:00
if (user_access("administer nodes")) {
return 1;
2001-11-01 17:04:20 +00:00
}
2002-12-10 20:35:20 +00:00
/*
** Convert the node to an object if necessary:
*/
2001-11-01 17:04:20 +00:00
2002-12-10 20:35:20 +00:00
$node = array2object($node);
2001-11-01 17:04:20 +00:00
2002-12-10 20:35:20 +00:00
/*
** Construct a function:
*/
2001-11-03 18:38:30 +00:00
2002-12-10 20:35:20 +00:00
if ($node->type) {
$type = $node->type;
}
else {
$type = $node;
}
2001-12-06 17:33:05 +00:00
2002-12-10 20:35:20 +00:00
$function = $type ."_access";
2001-11-03 18:38:30 +00:00
2002-12-10 20:35:20 +00:00
if (function_exists($function)) {
return $function($op, $node);
}
else {
return 0;
2001-11-01 17:04:20 +00:00
}
}
2001-06-20 20:00:40 +00:00
function node_perm() {
2002-12-10 20:35:20 +00:00
return array("administer nodes", "access content");
2001-06-20 20:00:40 +00:00
}
2001-11-01 11:00:51 +00:00
function node_search($keys) {
2002-03-05 20:15:17 +00:00
// Return the results of performing a search using the indexed search
// for this particular type of node.
//
// Pass an array to the "do_search" function which dictates what it
// will search through, and what it will search for
//
// "keys"'s value is the keywords entered by the user
//
// "type"'s value is used to identify the node type in the search
// index.
//
// "select"'s value is used to relate the data from the specific nodes
2002-03-26 21:33:23 +00:00
// table to the data that the search_index table has in it, and the the
2002-03-05 20:15:17 +00:00
// do_search functino will rank it.
//
2002-03-26 21:33:23 +00:00
// The select must always provide the following fields - lno, title,
2002-03-05 20:15:17 +00:00
// created, uid, name, count
//
2002-04-22 09:05:36 +00:00
$find = do_search(array("keys" => $keys, "type" => "node", "select" => "select s.lno as lno, n.title as title, n.created as created, u.uid as uid, u.name as name, s.count as count FROM search_index s, node n LEFT JOIN users u ON n.uid = u.uid WHERE s.lno = n.nid AND s.type = 'node' AND s.word like '%' AND n.status = 1"));
2002-03-26 21:33:23 +00:00
2001-11-01 11:00:51 +00:00
return $find;
}
2003-02-11 20:01:17 +00:00
function node_settings() {
2003-06-04 18:24:39 +00:00
$output .= form_select(t("Number of posts on main page"), "default_nodes_main", variable_get("default_nodes_main", 10), array(1 => 1, 2 => 2, 3 => 3, 4 => 4, 5 => 5, 6 => 6, 7 => 7, 8 => 8, 9 => 9, 10 => 10, 15 => 15, 20 => 20, 25 => 25, 30 => 30), t("The default maximum number of posts to display per page on overview pages such as the main page."));
2002-12-10 20:35:20 +00:00
$output .= form_select(t("Length of trimmed posts"), "teaser_length", variable_get("teaser_length", 600), array(0 => t("Unlimited"), 200 => t("200 characters"), 400 => t("400 characters"), 600 => t("600 characters"), 800 => t("800 characters"), 1000 => t("1000 characters"), 1200 => t("1200 characters"), 1400 => t("1400 characters"), 1600 => t("1600 characters"), 1800 => t("1800 characters"), 2000 => t("2000 characters")), t("The maximum number of characters used in the trimmed version of a post. Drupal will use this setting to determine at which offset long posts should be trimmed. The trimmed version of a post is typically used as a teaser when displaying the post on the main page, in XML feeds, etc. To disable teasers, set to 'Unlimited'."));
2003-05-10 13:54:38 +00:00
$output .= form_select(t("Preview post"), "node_preview", variable_get("node_preview", 0), array(t("Optional"), t("Required")), t("Must users preview posts before submitting?"));
2001-06-17 20:35:48 +00:00
return $output;
}
2001-05-20 13:51:40 +00:00
function node_conf_filters() {
2003-01-29 23:15:10 +00:00
$output .= form_select(t("Filter HTML tags"), "filter_html", variable_get("filter_html", 0), array(t("Disabled"), t("Enabled")), t("Filter HTML and PHP tags in user-contributed content."));
2003-06-04 18:24:39 +00:00
$output .= form_textfield(t("Allowed HTML tags"), "allowed_html", variable_get("allowed_html", "<a> <b> <dd> <dl> <dt> <i> <li> <ol> <u> <ul>"), 64, 255, t("If enabled, optionally specify tags which should not be stripped. 'STYLE' attributes, 'ON*' attributes and unclosed tags are always stripped."));
2003-05-23 21:59:44 +00:00
$output .= form_select(t("Rewrite old URLs"), "rewrite_old_urls", variable_get("rewrite_old_urls", 0), array(t("Disabled"), t("Enabled")), t("The introduction of 'clean URLs' in Drupal 4.2.0 breaks internal URLs that date back from Drupal 4.1.0 and before. If enabled, this filter will attempt to rewrite the old style URLs to avoid broken links. If <code>mod_rewrite</code> is available on your system, use the rewrite rules in Drupal's <code>.htaccess</code> file instead as these will also correct external referrers."));
2001-08-15 14:13:14 +00:00
$output .= "<hr />";
2001-05-20 13:51:40 +00:00
return $output;
}
function node_filter_html($text) {
$text = strip_tags($text, variable_get("allowed_html", ""));
return $text;
}
function node_filter_link($text) {
2002-05-04 18:56:43 +00:00
$pat = '\[{2}([^\|]+)(\|([^\|]+)?)?\]{2}'; // [link|description]
return ereg_replace($pat, $dst, $text);
2001-05-17 20:50:15 +00:00
}
2002-04-14 20:46:41 +00:00
function node_comment_mode($nid) {
2002-06-23 13:42:29 +00:00
static $comment_mode;
if (!isset($comment_mode[$nid])) {
2003-04-20 20:33:28 +00:00
$comment_mode[$nid] = db_result(db_query("SELECT comment FROM node WHERE nid = %d", $nid));
2002-06-23 13:42:29 +00:00
}
return $comment_mode[$nid];
2002-04-14 20:46:41 +00:00
}
2001-05-20 13:51:40 +00:00
function node_filter($text) {
2002-09-26 16:12:09 +00:00
$text = preg_replace("/\Wstyle\s*=[^>]+?>/i", ">", $text);
$text = preg_replace("/\Won[a-z]+\s*=[^>]+?>/i", ">", $text);
$text = preg_replace("/\Wsrc\s*=[\s'\"]*javascript[^>]+?>/i", ">", $text);
$text = preg_replace("/\Whref\s*=[\s'\"]*javascript:[^>]+?>/i", ">", $text);
2003-05-23 21:59:44 +00:00
if (variable_get("filter_html", 0)) {
$text = node_filter_html($text);
}
if (variable_get("rewrite_old_urls", 0)) {
$text = rewrite_old_urls($text);
}
2002-12-21 18:53:39 +00:00
return trim($text);
2001-05-20 13:51:40 +00:00
}
2001-11-23 17:10:46 +00:00
function node_link($type, $node = 0, $main = 0) {
2001-06-29 22:08:57 +00:00
2003-04-21 14:55:03 +00:00
$links = array();
2002-12-10 20:35:20 +00:00
if ($type == "page") {
2003-01-06 19:51:01 +00:00
$links[] = l(t("submit"), "node/add", array("title" => t("Submit or suggest new content.")));
2001-06-29 22:08:57 +00:00
}
2001-07-14 12:12:41 +00:00
if ($type == "node") {
2001-08-02 15:54:09 +00:00
if ($node->links) {
$links = $node->links;
}
2001-11-01 11:00:51 +00:00
2002-11-10 17:41:15 +00:00
if ($main == 1 && $node->teaser && $node->teaser != $node->body) {
2003-01-06 19:51:01 +00:00
$links[] = l(t("read more"), "node/view/$node->nid", array("title" => t("Read the rest of this posting.")));
2001-06-29 22:08:57 +00:00
}
2001-11-01 11:00:51 +00:00
if (user_access("administer nodes")) {
2003-03-02 20:51:57 +00:00
$links[] = l(t("administer"), "admin/node/edit/$node->nid", array("title" => t("Administer this node.")));
2001-11-01 11:00:51 +00:00
}
2001-06-29 22:08:57 +00:00
}
2003-01-12 15:29:28 +00:00
if ($type == "admin" && user_access("administer nodes")) {
2003-06-04 18:24:39 +00:00
$help["overview"] = t("Below is a list of all of the nodes in your site. Other forms of content are listed elsewhere (e.g. ". l("comments", "admin/comment") .").<br />Clicking a title views that node, while clicking an author's name edits their user information.<br />Other node-related tasks are available from the menu on the left.");
$help["post-overview"] = t("Click on <a href=\"%nup\">new or updated posts</a> to see your latest nodes, or <a href=\"%queue\">approval queue</a> to approve new messages.", array("%nup" => url("admin/nodes/0"), "%queue" => url("admin/nodes/1")));
$help["new-update"] = t("Below is a list of the latest nodes in your site. Clicking a title views that node, while clicking an author's name edits their user information.");
$help["queue"] = t("Below is a list of the node in your site that await approval. To approve a node click on <b>edit node</b> and then change its moderation status to <b>approved</b>.<br />Clicking a title views that node, while clicking an author's name edits their user information.");
$help["search"] = t("Enter a simple pattern to search for a post. This can include the wildcard character *.<br />For example, a search for \"br*\" might return \"bread bakers\", \"our daily bread\" and \"brenda\".");
$help["setting"] = t("This pages lets you set the defaults used during creation of nodes for all the different node types.<br /><b>comment:</b> Read/write setting for comments.<br /><b>publish:</b> Is this node publicly viewable, has it been published?<br /><b>promote:</b> Is this node to be promoted to the front page?<br /><b>moderate:</b> Does this node need approval before it can be viewed?<br /><b>static:</b> Is this node always visible on the front page?<br /><b>revision:</b> Will this node go into the revision system allowing multiple versions to be saved?");
2003-05-29 09:15:00 +00:00
menu("admin/node", "content management", "node_admin", $help["overview"]);
menu("admin/node/nodes", "post overview", NULL, $help["post-overview"]);
menu("admin/node/nodes/0", "new or updated posts", "node_admin", $help["new-update"], 0);
menu("admin/node/nodes/1", "approval queue", "node_admin", $help["queue"], 1);
2003-02-25 19:52:32 +00:00
menu("admin/node/search", "search posts", "node_admin", $help["search"], 8);
2003-02-20 22:44:51 +00:00
menu("admin/node/help", "help", "node_help", NULL, 9);
menu("admin/node/edit", "edit node", "node_admin", NULL, 0, 1);
2003-05-29 09:15:00 +00:00
menu("admin/node/settings", "content settings", "node_admin", $help["setting"], 8);
2001-11-03 18:38:30 +00:00
}
2003-04-21 14:55:03 +00:00
return $links;
2001-06-17 18:31:25 +00:00
}
2001-11-01 11:00:51 +00:00
function node_admin_edit($node) {
2001-06-17 18:31:25 +00:00
2001-11-01 11:00:51 +00:00
if (is_numeric($node)) {
2001-11-03 18:38:30 +00:00
$node = node_load(array("nid" => $node));
2001-11-01 11:00:51 +00:00
}
2001-09-27 20:51:26 +00:00
2001-11-01 11:00:51 +00:00
/*
** Edit node:
*/
2001-09-25 17:10:44 +00:00
2002-07-13 17:56:54 +00:00
$output .= "<h3>". t("Edit %module", array("%module" => module_invoke($node->type, "node", "name"))) ."</h3>";
2001-09-27 20:51:26 +00:00
2001-11-01 11:00:51 +00:00
$output .= node_form($node);
2001-09-25 17:10:44 +00:00
2001-11-03 18:38:30 +00:00
/*
** Edit revisions:
*/
if ($node->revisions) {
$output .= "<h3>". t("Edit revisions") ."</h3>";
$output .= "<table border=\"1\" cellpadding=\"2\" cellspacing=\"2\">";
2002-07-13 17:56:54 +00:00
$output .= " <tr><th>". t("older revisions") ."</th><th colspan=\"3\">". t("operations") ."</th></tr>";
2001-11-03 18:38:30 +00:00
foreach ($node->revisions as $key => $revision) {
2003-01-23 09:24:20 +00:00
$output .= " <tr><td>". t("revision #%r revised by %u on %d", array("%r" => $key, "%u" => format_name(user_load(array("uid" => $revision["uid"]))), "%d" => format_date($revision["timestamp"], "small"))) . ($revision["history"] ? "<br /><small>". $revision["history"] ."</small>" : "") ."</td><td>". l(t("view revision"), "node/view/$node->nid", array(), "revision=$key") ."</td><td>". l(t("rollback revision"), "admin/node/rollback+revision/$node->nid/$key") ."</td><td>". l(t("delete revision"), "admin/node/delete+revision/$node->nid/$key") ."</td></tr>";
2001-11-03 18:38:30 +00:00
}
$output .= "</table>";
}
2001-11-01 11:00:51 +00:00
/*
2001-12-05 20:22:58 +00:00
** Display the node form extensions:
2001-11-01 11:00:51 +00:00
*/
2001-09-27 20:51:26 +00:00
2001-12-05 20:22:58 +00:00
foreach (module_list() as $name) {
$output .= module_invoke($name, "node_link", $node);
2001-06-04 15:40:39 +00:00
}
2001-11-01 11:00:51 +00:00
return $output;
2001-04-10 20:07:27 +00:00
}
2001-11-01 11:00:51 +00:00
function node_admin_nodes() {
2001-06-02 22:12:35 +00:00
2003-01-09 21:55:51 +00:00
$query = arg(3);
2002-12-24 15:40:32 +00:00
$queries = array("ORDER BY n.changed DESC", "WHERE n.status = 0 OR n.moderate = 1 ORDER BY n.changed DESC");
2001-06-04 15:40:39 +00:00
2002-12-24 15:40:32 +00:00
$result = pager_query("SELECT n.*, u.name, u.uid FROM node n LEFT JOIN users u ON n.uid = u.uid ". $queries[$query ? $query : 0], 50);
2001-10-09 21:01:47 +00:00
2002-12-29 12:03:08 +00:00
$header = array(t("title"), t("type"), t("author"), t("status"), array("data" => t("operations"), "colspan" => 2));
2001-11-01 11:00:51 +00:00
while ($node = db_fetch_object($result)) {
2003-03-14 20:41:27 +00:00
$rows[] = array(l($node->title, "node/view/$node->nid") ." ". (node_is_new($node->nid, $node->changed) ? theme_mark() : ""), module_invoke($node->type, "node", "name"), format_name($node), ($node->status ? t("published") : t("not published")), l(t("edit node"), "admin/node/edit/$node->nid"), l(t("delete node"), "admin/node/delete/$node->nid"));
2001-10-09 21:01:47 +00:00
}
2002-12-30 13:02:47 +00:00
2002-12-29 12:20:08 +00:00
if ($pager = pager_display(NULL, 50, 0, "admin")) {
$rows[] = array(array("data" => $pager, "colspan" => 6));
}
2001-10-09 21:01:47 +00:00
2002-12-29 12:03:08 +00:00
return table($header, $rows);
2001-06-04 15:40:39 +00:00
}
2003-03-07 22:11:44 +00:00
/*
**
*/
function node_admin_settings($edit) {
2003-05-13 18:36:38 +00:00
$op = $_POST["op"];
2003-03-09 17:21:22 +00:00
2003-03-07 22:11:44 +00:00
if ($op == t("Save configuration")) {
/*
** Save the configuration options:
*/
foreach ($edit as $name => $value) {
variable_set($name, $value);
}
2003-03-09 17:19:50 +00:00
$output = status(t("the content settings have been saved."));
2003-03-07 22:11:44 +00:00
}
if ($op == t("Reset to defaults")) {
/*
** Reset the configuration options to their default value:
*/
foreach ($edit as $name => $value) {
variable_del($name);
}
2003-03-09 17:19:50 +00:00
$output = status(t("the content settings have been reset to their default values."));
2003-03-07 22:11:44 +00:00
}
2003-06-04 18:24:39 +00:00
$header = array_merge(array(t("type")), array_keys(node_invoke_all($node, "nodeapi", "settings")));
2003-03-08 14:35:42 +00:00
foreach (module_list() as $name) {
if (module_hook($name, "node")) {
$node->type = $name;
$cols = array();
foreach (node_invoke_all($node, "nodeapi", "settings") as $setting) {
$cols[] = array("data" => $setting, "align" => "center", "width" => 55);
}
$rows[] = array_merge(array(module_invoke($name, "node", "name")), $cols);
}
}
2003-03-09 17:21:22 +00:00
2003-03-09 17:19:50 +00:00
$output .= table($header, $rows);
2003-03-07 22:11:44 +00:00
2003-03-08 14:35:42 +00:00
/* This is an idea for the future.
2003-03-07 22:11:44 +00:00
foreach (module_list() as $name) {
if (module_hook($name, "node")) {
$node->type = $name;
2003-03-09 17:21:22 +00:00
2003-03-08 14:35:42 +00:00
// Create table() data:
$header = array_keys(node_invoke_all($node, "nodeapi", "settings"));
$cols = array();
foreach (node_invoke_all($node, "nodeapi", "settings") as $setting) {
$cols[] = array("data" => $setting, "align" => "center", "width" => 75);
}
$output .= "<h2>". module_invoke($name, "node", "name") ."</h2>";
$output .= table($header, array($cols));
$output .= "<br /><br />";
2003-03-07 22:11:44 +00:00
}
}
2003-03-08 14:35:42 +00:00
*/
2003-03-07 22:11:44 +00:00
$output .= form_submit(t("Save configuration"));
$output .= form_submit(t("Reset to defaults"));
2003-03-09 17:21:22 +00:00
2003-03-09 17:19:50 +00:00
print form($output);
2003-03-07 22:11:44 +00:00
}
2001-11-05 22:59:11 +00:00
/*
** Return the revision with the specified revision number.
*/
function node_revision_load($node, $revision) {
return $node->revisions[$revision]["node"];
}
/*
** Create and return a new revision of the given node.
*/
2001-11-03 18:38:30 +00:00
function node_revision_create($node) {
global $user;
2001-11-04 23:30:39 +00:00
/*
** 'revision' is the name of the field used to indicicate that we
** have to create a new revision of a node.
*/
2001-11-03 18:38:30 +00:00
if ($node->nid && $node->revision) {
2001-11-04 15:57:43 +00:00
$prev = node_load(array("nid" => $node->nid));
$node->revisions = $prev->revisions;
unset($prev->revisions);
$node->revisions[] = array("uid" => $user->uid, "timestamp" => time(), "node" => $prev, "history" => $node->history);
2001-11-03 18:38:30 +00:00
}
return $node;
}
2001-11-05 22:59:11 +00:00
/*
** Roll-back to the revision with the specified revision number.
*/
2001-11-03 18:38:30 +00:00
2001-11-05 22:59:11 +00:00
function node_revision_rollback($node, $revision) {
global $user;
2001-11-03 18:38:30 +00:00
/*
** Extract the specified revision:
*/
$rev = $node->revisions[$revision]["node"];
/*
** Inherit all the past revisions:
*/
$rev->revisions = $node->revisions;
/*
** Save the original/current node:
*/
$rev->revisions[] = array("uid" => $user->uid, "timestamp" => time(), "node" => $node);
/*
** Remove the specified revision:
*/
unset($rev->revisions[$revision]);
/*
** Save the node:
*/
foreach ($node as $key => $value) {
$filter[] = $key;
}
node_save($rev, $filter);
2001-11-24 10:02:15 +00:00
watchdog("special", "$node->type: rollbacked to revision #$revision of '$node->title'");
2001-11-03 18:38:30 +00:00
}
2001-11-05 22:59:11 +00:00
/*
** Delete the revision with specified revision number.
*/
function node_revision_delete($node, $revision) {
2001-11-03 18:38:30 +00:00
unset($node->revisions[$revision]);
2001-11-04 23:30:39 +00:00
2001-11-03 18:38:30 +00:00
node_save($node, array("nid", "revisions"));
2001-11-04 23:30:39 +00:00
2001-11-24 10:02:15 +00:00
watchdog("special", "$node->type: removed revision #$revision of '$node->title'");
2001-11-04 23:30:39 +00:00
}
2001-11-05 22:59:11 +00:00
/*
** Return a list of all the existing revision numbers.
*/
function node_revision_list($node) {
if (is_array($node->revisions)) {
return array_keys($node->revisions);
}
else {
return array();
}
2001-11-03 18:38:30 +00:00
}
2001-04-02 15:54:37 +00:00
function node_admin() {
2003-05-13 18:36:38 +00:00
$op = $_POST["op"];
$edit = $_POST["edit"];
2001-04-10 20:07:27 +00:00
2001-06-29 22:08:57 +00:00
if (user_access("administer nodes")) {
2001-06-20 20:00:40 +00:00
2003-01-06 19:51:01 +00:00
if (empty($op)) {
$op = arg(2);
}
2001-11-01 11:00:51 +00:00
/*
** Compile a list of the administrative links:
*/
2001-06-20 20:00:40 +00:00
switch ($op) {
case "search":
2003-01-06 19:51:01 +00:00
print search_type("node", url("admin/node/search"));
2001-06-20 20:00:40 +00:00
break;
case "edit":
2003-01-06 19:51:01 +00:00
print node_admin_edit(arg(3));
2001-06-20 20:00:40 +00:00
break;
2001-11-07 18:14:46 +00:00
case "delete":
2003-01-06 19:51:01 +00:00
print node_delete(array("nid" => arg(3)));
2001-11-07 18:14:46 +00:00
break;
2003-05-31 12:34:11 +00:00
case "rollback revision":
print node_revision_rollback(node_load(array("nid" => arg(3))), arg(4));
print node_admin_edit(arg(3));
2001-11-03 18:38:30 +00:00
break;
2003-05-31 12:34:11 +00:00
case "delete revision":
print node_revision_delete(node_load(array("nid" => arg(3))), arg(4));
print node_admin_edit(arg(3));
2001-11-03 18:38:30 +00:00
break;
2001-07-18 08:09:46 +00:00
case t("Preview"):
2002-12-30 13:02:47 +00:00
$edit = node_validate($edit, $error);
2003-06-04 18:24:39 +00:00
print node_preview($edit, $error);
2001-06-20 20:00:40 +00:00
break;
2001-07-18 08:09:46 +00:00
case t("Submit"):
2001-11-01 11:00:51 +00:00
print node_submit($edit);
break;
case t("Delete"):
2001-11-03 18:38:30 +00:00
print node_delete($edit);
2001-11-01 11:00:51 +00:00
break;
2003-03-07 22:11:44 +00:00
case t("Save configuration"):
case t("Reset to defaults"):
case "settings":
print node_admin_settings($edit);
break;
2001-06-20 20:00:40 +00:00
default:
2001-11-01 11:00:51 +00:00
print node_admin_nodes();
2001-06-20 20:00:40 +00:00
}
}
else {
print message_access();
2001-04-02 15:54:37 +00:00
}
}
2002-10-26 15:17:26 +00:00
function node_block($op = "list", $delta = 0) {
2003-02-15 11:39:56 +00:00
2002-10-26 15:17:26 +00:00
if ($op == "list") {
$blocks[0]["info"] = t("Syndicate");
return $blocks;
}
else {
$block["subject"] = t("Syndicate");
2003-02-15 11:39:56 +00:00
$block["content"] = "<div align=\"center\">". l("<img src=\"". theme("image", "xml.gif") ."\" width=\"36\" height=\"14\" border=\"0\" alt=\"XML\" />", "node/feed", array("title" => t("Read the XML version of this page."))) ."</div>";
2001-07-15 16:56:44 +00:00
2002-10-26 15:17:26 +00:00
return $block;
}
2001-07-15 16:56:44 +00:00
}
2002-06-15 13:48:08 +00:00
function node_feed($nodes = 0, $channel = array()) {
2003-06-05 18:09:39 +00:00
global $base_url, $languages;
2003-03-07 06:37:30 +00:00
2002-06-15 13:48:08 +00:00
/*
2003-01-06 19:51:01 +00:00
** A generic function for generating RSS feeds from a set of nodes.
** - $nodes should be an object as returned by db_query() which contains
** the nid field.
** - $channel is an associative array containing title, link, and
** description keys.
2002-06-15 13:48:08 +00:00
*/
2001-07-15 16:56:44 +00:00
2002-06-15 13:48:08 +00:00
if (!$nodes) {
2003-03-16 07:02:20 +00:00
$nodes = db_query_range("SELECT nid FROM node WHERE promote = '1' AND status = '1' ORDER BY created DESC", 0, 15);
2002-06-15 13:48:08 +00:00
}
2001-07-15 16:56:44 +00:00
2002-06-15 13:48:08 +00:00
while ($node = db_fetch_object($nodes)) {
$item = node_load(array("nid" => $node->nid));
2003-03-07 06:37:30 +00:00
$link = url("node/view/$item->nid");
2001-11-01 11:00:51 +00:00
$items .= format_rss_item($item->title, $link, $item->teaser);
2001-07-15 16:56:44 +00:00
}
2003-06-05 18:09:39 +00:00
$output .= "<?xml version=\"1.0\" encoding=\"". variable_get("site_charset", "iso-8859-1") ."\"?>\n";
2002-12-21 19:36:27 +00:00
$output .= "<!DOCTYPE rss [<!ENTITY % HTMLlat1 PUBLIC \"-//W3C//ENTITIES Latin 1 for XHTML//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent\">]>\n";
2003-02-09 17:39:40 +00:00
// NOTE: é - for example - is the correct ISO-8859-1 translation of (e acute) but apparently XML parsers don't (have to) understand it. To solve this problem, we use a DTD that defines commonly used entity such as é.
2002-06-15 13:48:08 +00:00
if (!$channel["version"]) $channel["version"] = "0.91";
if (!$channel["title"]) $channel["title"] = variable_get("site_name", "drupal") ." - ". variable_get("site_slogan", "");
2003-03-07 06:37:30 +00:00
if (!$channel["link"]) $channel["link"] = $base_url;
2002-06-15 13:48:08 +00:00
if (!$channel["description"]) $channel["description"] = variable_get("site_mission", "");
2003-06-05 18:09:39 +00:00
foreach ($languages as $key => $value) break;
if (!$channel["language"]) $channel["language"] = $key ? $key : "en";
2002-06-15 13:48:08 +00:00
$output .= "<rss version=\"". $channel["version"] . "\">\n";
$output .= format_rss_channel($channel["title"], $channel["link"], $channel["description"], $items, $channel["language"]);
2001-07-15 16:56:44 +00:00
$output .= "</rss>\n";
2001-08-14 06:52:50 +00:00
header("Content-Type: text/xml");
2001-07-15 16:56:44 +00:00
print $output;
}
2001-11-26 18:27:34 +00:00
function node_validate($node, &$error) {
2001-11-01 11:00:51 +00:00
global $user;
2003-03-07 22:11:44 +00:00
$error = array();
2001-11-01 11:00:51 +00:00
/*
** Convert the node to an object if necessary:
*/
2001-12-30 16:16:38 +00:00
$node = array2object($node);
2001-11-01 11:00:51 +00:00
/*
** Validate the title field:
*/
2003-05-26 21:31:18 +00:00
if (isset($node->title)) {
$node->title = strip_tags($node->title);
if (!$node->title) {
$error["title"] = theme("theme_error", t("You have to specify a valid title."));
}
2001-11-01 11:00:51 +00:00
}
2003-03-07 22:11:44 +00:00
/*
** Common default values:
*/
$node->teaser = node_teaser($node->body);
/*
** Create a new revision when required:
*/
$node = node_revision_create($node);
2001-11-01 11:00:51 +00:00
if (user_access("administer nodes")) {
/*
** Setup default values if required:
*/
2001-11-01 22:54:16 +00:00
if (!$node->created) {
$node->created = time();
2001-11-01 11:00:51 +00:00
}
2001-11-01 22:54:16 +00:00
if (!$node->date) {
$node->date = date("M j, Y g:i a", $node->created);
2001-11-01 11:00:51 +00:00
}
2003-03-09 17:21:22 +00:00
2003-03-07 22:11:44 +00:00
if (!is_numeric($node->status)) {
$node->status = 1;
}
2001-11-01 11:00:51 +00:00
/*
** Validate the "authored by"-field:
*/
2001-11-20 22:51:06 +00:00
if (empty($node->name)) {
/*
** The use of empty() is mandatory in the context of usernames
** as the empty string denotes the anonymous user. In case we
** are dealing with an anomymous user we set the user ID to 0.
*/
$node->uid = 0;
}
else if ($account = user_load(array("name" => $node->name))) {
2001-11-01 22:54:16 +00:00
$node->uid = $account->uid;
2001-11-01 11:00:51 +00:00
}
else {
2003-02-11 20:01:17 +00:00
$error["name"] = theme("theme_error", t("The name '%u' does not exist.", array ("%u" => $node->name)));
2001-11-01 11:00:51 +00:00
}
/*
** Validate the "authored on"-field:
*/
2001-11-01 22:54:16 +00:00
if (strtotime($node->date) > 1000) {
$node->created = strtotime($node->date);
2001-11-01 11:00:51 +00:00
}
else {
2003-02-11 20:01:17 +00:00
$error["date"] = theme("theme_error", t("You have to specifiy a valid date."));
2001-11-01 11:00:51 +00:00
}
}
2003-03-07 22:11:44 +00:00
else {
// Validate for normal users:
$node->uid = $user->uid ? $user->uid : 0;
2003-03-10 12:01:26 +00:00
// Force defaults in case people modify the form:
2003-03-11 08:43:59 +00:00
$node->status = variable_get("node_status_$node->type", 1);
$node->promote = variable_get("node_promote_$node->type", 1);
$node->moderate = variable_get("node_moderate_$node->type", 0);
$node->static = variable_get("node_static_$node->type", 0);
$node->revision = variable_get("node_revision_$node->type", 0);
2003-03-10 12:01:26 +00:00
unset($node->created);
}
// Workflow:
if ($node->moderate == 1) {
2003-03-07 22:11:44 +00:00
$node->promote = 0;
}
2001-11-01 11:00:51 +00:00
- Bugfix: just before submitting a node, one could change the content of
that node to something that would not have passed the preview pages.
Patch by Revar:
"If you uploaded a valid file, and filled out the form right, you will
get a Submit button. The problem comes in when you choose a different
file to upload, and then click Submit. The filestore_save() function
cannot do proper validation and handling of the form data, as it only
returns a list of what node fields to save. On error, a node entry is
still created, but with only the nid field set. The user can't be
forced to fix their bad entry."
"Add a _form_validate() node hook to process and validate any form
results. That way even on Submit, the node code would check the
validity of the data, and if bad, it could drop you back to the preview
screen with the current bad data warnings. Have it return an array of
errors that can be passed in as $error to the _form() hook. If it
returns a null array, then there's no errors, and the submit can go
through."
2002-05-26 09:23:46 +00:00
/*
** Do node type specific validation checks.
*/
2003-03-07 22:11:44 +00:00
$result = node_invoke($node, "validate");
$error = $error + (is_array($result) ? $result : array()) + node_invoke_all($node, "nodeapi", "validate");
- Bugfix: just before submitting a node, one could change the content of
that node to something that would not have passed the preview pages.
Patch by Revar:
"If you uploaded a valid file, and filled out the form right, you will
get a Submit button. The problem comes in when you choose a different
file to upload, and then click Submit. The filestore_save() function
cannot do proper validation and handling of the form data, as it only
returns a list of what node fields to save. On error, a node entry is
still created, but with only the nid field set. The user can't be
forced to fix their bad entry."
"Add a _form_validate() node hook to process and validate any form
results. That way even on Submit, the node code would check the
validity of the data, and if bad, it could drop you back to the preview
screen with the current bad data warnings. Have it return an array of
errors that can be passed in as $error to the _form() hook. If it
returns a null array, then there's no errors, and the submit can go
through."
2002-05-26 09:23:46 +00:00
2001-11-01 22:54:16 +00:00
return $node;
2001-11-01 11:00:51 +00:00
}
2001-11-03 18:38:30 +00:00
- Bugfix: just before submitting a node, one could change the content of
that node to something that would not have passed the preview pages.
Patch by Revar:
"If you uploaded a valid file, and filled out the form right, you will
get a Submit button. The problem comes in when you choose a different
file to upload, and then click Submit. The filestore_save() function
cannot do proper validation and handling of the form data, as it only
returns a list of what node fields to save. On error, a node entry is
still created, but with only the nid field set. The user can't be
forced to fix their bad entry."
"Add a _form_validate() node hook to process and validate any form
results. That way even on Submit, the node code would check the
validity of the data, and if bad, it could drop you back to the preview
screen with the current bad data warnings. Have it return an array of
errors that can be passed in as $error to the _form() hook. If it
returns a null array, then there's no errors, and the submit can go
through."
2002-05-26 09:23:46 +00:00
function node_form($edit, $error = NULL) {
2001-11-01 11:00:51 +00:00
2001-12-01 15:20:48 +00:00
/*
** Save the referer. We record where the user came from such that we
** can redirect him after having completed the node forms.
*/
referer_save();
2001-11-03 18:38:30 +00:00
/*
** Validate the node:
*/
- Bugfix: just before submitting a node, one could change the content of
that node to something that would not have passed the preview pages.
Patch by Revar:
"If you uploaded a valid file, and filled out the form right, you will
get a Submit button. The problem comes in when you choose a different
file to upload, and then click Submit. The filestore_save() function
cannot do proper validation and handling of the form data, as it only
returns a list of what node fields to save. On error, a node entry is
still created, but with only the nid field set. The user can't be
forced to fix their bad entry."
"Add a _form_validate() node hook to process and validate any form
results. That way even on Submit, the node code would check the
validity of the data, and if bad, it could drop you back to the preview
screen with the current bad data warnings. Have it return an array of
errors that can be passed in as $error to the _form() hook. If it
returns a null array, then there's no errors, and the submit can go
through."
2002-05-26 09:23:46 +00:00
if (!$error) {
2002-06-13 09:19:17 +00:00
/* Only validate if we don't already know the errors. */
$edit = node_validate($edit, $error);
- Bugfix: just before submitting a node, one could change the content of
that node to something that would not have passed the preview pages.
Patch by Revar:
"If you uploaded a valid file, and filled out the form right, you will
get a Submit button. The problem comes in when you choose a different
file to upload, and then click Submit. The filestore_save() function
cannot do proper validation and handling of the form data, as it only
returns a list of what node fields to save. On error, a node entry is
still created, but with only the nid field set. The user can't be
forced to fix their bad entry."
"Add a _form_validate() node hook to process and validate any form
results. That way even on Submit, the node code would check the
validity of the data, and if bad, it could drop you back to the preview
screen with the current bad data warnings. Have it return an array of
errors that can be passed in as $error to the _form() hook. If it
returns a null array, then there's no errors, and the submit can go
through."
2002-05-26 09:23:46 +00:00
}
2001-11-01 11:00:51 +00:00
2003-03-07 22:11:44 +00:00
// Prepend extra node form:
2003-03-09 17:19:50 +00:00
$form = implode("", node_invoke_all($edit, "nodeapi", "form pre", $error));
2003-03-07 22:11:44 +00:00
2001-11-03 18:38:30 +00:00
/*
** Get the node specific bits:
*/
$function = $edit->type ."_form";
if (function_exists($function)) {
2002-03-05 20:15:17 +00:00
$form .= $function($edit, $help, $error, $param);
2001-11-03 18:38:30 +00:00
}
2003-03-09 17:21:22 +00:00
2003-03-07 22:11:44 +00:00
// Append extra node form:
2003-03-09 17:19:50 +00:00
$form .= implode("", node_invoke_all($edit, "nodeapi", "form post", $error));
2001-11-03 18:38:30 +00:00
/*
** Add the help text:
*/
if ($help) {
$output .= "<p>$help</p>";
}
2003-06-05 18:09:39 +00:00
$output .= "<div class=\"node-form\">";
2001-11-05 22:59:11 +00:00
2001-11-01 11:00:51 +00:00
/*
2003-06-05 18:09:39 +00:00
** Add the admin specific parts:
2001-11-01 11:00:51 +00:00
*/
2003-06-05 18:09:39 +00:00
if (user_access("administer nodes")) {
$output .= "<div class=\"admin\">";
$output .= "<div class=\"authored\">";
$output .= form_textfield(t("Authored by"), "name", $edit->name, 20, 60, $error["name"]);
$output .= form_textfield(t("Authored on"), "date", $edit->date, 20, 25, $error["date"]);
$output .= "</div>";
$options .= form_checkbox(t("Published"), "status", 1, isset($edit->status) ? $edit->status : variable_get("node_status_$edit->type", 1));
$options .= form_checkbox(t("In moderation queue"), "moderate", 1, isset($edit->moderate) ? $edit->moderate : variable_get("node_moderate_$edit->type", 0));
$options .= form_checkbox(t("Promoted to front page"), "promote", 1, isset($edit->promote) ? $edit->promote : variable_get("node_promote_$edit->type", 1));
$options .= form_checkbox(t("Static on front page"), "static", 1, isset($edit->static) ? $edit->static : variable_get("node_static_$edit->type", 0));
$options .= form_checkbox(t("Create new revision"), "revision", 1, isset($edit->revision) ? $edit->revision : variable_get("node_revision_$edit->type", 0));
$output .= "<div class=\"options\">";
$output .= form_item(t("Options"), $options);
$output .= "</div>";
$extras .= implode("</div><div class=\"extra\">", node_invoke_all($edit, "nodeapi", "form admin"));
$output .= $extras ? "<div class=\"extra\">$extras</div></div>" : "</div>";
}
/*
** Add the default fields:
*/
$output .= "<div class=\"standard\">";
2001-11-01 11:00:51 +00:00
$output .= form_textfield(t("Title"), "title", $edit->title, 60, 64, $error["title"]);
/*
2001-11-03 18:38:30 +00:00
** Add the node specific fields:
2001-11-01 11:00:51 +00:00
*/
2001-11-03 18:38:30 +00:00
$output .= $form;
2001-11-01 11:00:51 +00:00
/*
** Add the hidden fields:
*/
if ($edit->nid) {
$output .= form_hidden("nid", $edit->nid);
}
2001-11-20 22:51:06 +00:00
if (isset($edit->uid)) {
/*
** The use of isset() is mandatory in the context of user IDs as uid
** 0 denotes the anonymous user.
*/
2001-11-01 11:00:51 +00:00
$output .= form_hidden("uid", $edit->uid);
}
if ($edit->created) {
$output .= form_hidden("created", $edit->created);
}
$output .= form_hidden("type", $edit->type);
/*
** Add the buttons:
*/
$output .= form_submit(t("Preview"));
if ($edit->title && $edit->type && !$error) {
$output .= form_submit(t("Submit"));
}
2003-05-10 13:54:38 +00:00
elseif (!variable_get("node_preview", 0)) {
$output .= form_submit(t("Submit"));
}
2001-11-01 11:00:51 +00:00
2001-11-01 17:04:20 +00:00
if ($edit->nid && node_access("delete", $edit)) {
2001-11-01 11:00:51 +00:00
$output .= form_submit(t("Delete"));
}
2003-06-05 18:09:39 +00:00
$output .= "</div></div>";
2001-11-05 22:59:11 +00:00
2002-03-05 20:15:17 +00:00
return form($output, ($param["method"] ? $param["method"] : "post"), $param["action"], $param["options"]);
2001-11-01 11:00:51 +00:00
}
function node_add($type) {
2003-05-13 18:36:38 +00:00
global $user;
$edit = $_POST["edit"];
2001-11-01 11:00:51 +00:00
2001-12-05 20:22:58 +00:00
/*
2001-12-06 11:48:09 +00:00
** If a node type has been specified, validate it existence. If no
2001-12-05 20:22:58 +00:00
** (valid) node type has been provied, display a node type overview.
*/
2001-12-06 17:33:05 +00:00
if ($type && node_access("create", $type)) {
2003-05-19 18:36:58 +00:00
// Initialize settings:
2003-03-07 22:11:44 +00:00
$node = array("uid" => $user->uid, "name" => $user->name, "type" => $type);
2003-05-19 18:36:58 +00:00
/*
** Allow the following fields to be initialized via $_GET (eg. for use
** with a "blog it" bookmarklet):
*/
2002-10-17 09:21:03 +00:00
foreach (array("title", "teaser", "body") as $field) {
2003-05-19 18:36:58 +00:00
if ($_GET["edit"][$field]) {
2003-06-06 21:06:08 +00:00
$node[$field] = $_GET["edit"][$field];
2002-10-17 09:21:03 +00:00
}
2002-10-22 18:46:43 +00:00
}
2002-10-17 09:21:03 +00:00
$output = node_form($node);
2001-11-01 11:00:51 +00:00
}
else {
2001-11-01 17:04:20 +00:00
2001-11-20 22:51:06 +00:00
/*
** Compile a list with the different node types and their explanation:
*/
2001-11-07 18:14:46 +00:00
2001-11-01 17:04:20 +00:00
foreach (module_list() as $name) {
2002-12-10 20:35:20 +00:00
if (module_hook($name, "node") && node_access("create", $name)) {
2001-11-07 18:14:46 +00:00
$output .= "<li>";
2003-01-06 19:51:01 +00:00
$output .= " ". l(module_invoke($name, "node", "name"), "node/add/$name", array("title" => t("Add a new %s.", array("%s" => module_invoke($name, "node", "name")))));
2001-11-07 18:14:46 +00:00
$output .= " <div style=\"margin-left: 20px;\">". module_invoke($name, "node", "description") ."</div>";
$output .= "</li>";
2001-11-01 17:04:20 +00:00
}
2001-11-01 11:00:51 +00:00
}
2001-11-07 18:14:46 +00:00
$output = t("Choose the appropriate item from the list:") ."<ul>$output</ul>";
2001-11-01 11:00:51 +00:00
}
return $output;
}
function node_edit($id) {
global $user;
$node = node_load(array("nid" => $id));
2001-11-01 17:04:20 +00:00
if (node_access("update", $node)) {
$output = node_form($node);
}
else {
$output = message_access();
}
return $output;
2001-11-01 11:00:51 +00:00
}
- Bugfix: just before submitting a node, one could change the content of
that node to something that would not have passed the preview pages.
Patch by Revar:
"If you uploaded a valid file, and filled out the form right, you will
get a Submit button. The problem comes in when you choose a different
file to upload, and then click Submit. The filestore_save() function
cannot do proper validation and handling of the form data, as it only
returns a list of what node fields to save. On error, a node entry is
still created, but with only the nid field set. The user can't be
forced to fix their bad entry."
"Add a _form_validate() node hook to process and validate any form
results. That way even on Submit, the node code would check the
validity of the data, and if bad, it could drop you back to the preview
screen with the current bad data warnings. Have it return an array of
errors that can be passed in as $error to the _form() hook. If it
returns a null array, then there's no errors, and the submit can go
through."
2002-05-26 09:23:46 +00:00
function node_preview($node, $error = NULL) {
2001-12-08 13:11:33 +00:00
/*
** Convert the array to an object:
*/
2001-12-30 16:16:38 +00:00
$node = array2object($node);
2001-11-01 11:00:51 +00:00
2002-12-30 13:02:47 +00:00
if (node_access("create", $node) || node_access("update", $node)) {
2001-11-01 11:00:51 +00:00
2001-12-08 13:11:33 +00:00
/*
2002-12-30 13:02:47 +00:00
** Load the user's name when needed:
2001-12-08 13:11:33 +00:00
*/
2002-12-30 13:02:47 +00:00
if (isset($node->name)) {
/*
** The use of isset() is mandatory in the context of user IDs as uid
** 0 denotes the anonymous user.
*/
if ($user = user_load(array("name" => $node->name))) {
$node->uid = $user->uid;
}
else {
$node->uid = 0; // anonymous user
}
2001-11-20 22:51:06 +00:00
}
2002-12-30 13:02:47 +00:00
else if ($node->uid) {
$user = user_load(array("uid" => $node->uid));
$node->name = $user->name;
2001-11-20 22:51:06 +00:00
}
2001-11-01 11:00:51 +00:00
2002-12-30 13:02:47 +00:00
/*
** Set the created time when needed:
*/
2001-11-01 11:00:51 +00:00
2002-12-30 13:02:47 +00:00
if (empty($node->created)) {
$node->created = time();
}
2001-11-01 11:00:51 +00:00
2002-12-30 13:02:47 +00:00
/*
2003-04-15 19:50:04 +00:00
** Extract a teaser:
2002-12-30 13:02:47 +00:00
*/
2002-12-10 20:35:20 +00:00
2002-12-30 13:02:47 +00:00
$node->teaser = node_teaser($node->body);
2002-12-10 20:35:20 +00:00
2002-12-30 13:02:47 +00:00
/*
** Apply the required filters:
*/
2001-11-18 13:21:35 +00:00
2002-12-30 13:02:47 +00:00
if ($node->nid) {
$view = array2object(array_merge(object2array($node), module_invoke($node->type, "save", "update", $node)));
}
else {
$view = array2object(array_merge(object2array($node), module_invoke($node->type, "save", "create", $node)));
}
2001-11-18 13:21:35 +00:00
2002-12-30 13:02:47 +00:00
/*
2003-04-15 19:50:04 +00:00
** Display a preview of the node:
2002-12-30 13:02:47 +00:00
*/
2002-12-12 22:31:39 +00:00
2002-12-30 13:02:47 +00:00
if ($view->teaser && $view->teaser != $view->body) {
print "<h3>". t("Preview trimmed version") ."</h3>";
node_view($view, 1);
2003-05-24 16:26:13 +00:00
print "<p><i>". t("The trimmed version of your post shows how your post looks like when promoted to the main page or when exported for syndication. You can insert a delimiter '<!--break-->' (without the quotes) to fine-tune where your post gets split.") ."</i></p>";
2002-12-30 13:02:47 +00:00
print "<h3>". t("Preview full version") ."</h3>";
node_view($view, 0);
}
else {
node_view($view, 0);
}
2001-11-01 11:00:51 +00:00
2002-12-30 13:02:47 +00:00
return node_form($node, $error);
}
2001-11-01 11:00:51 +00:00
}
2001-11-01 17:04:20 +00:00
function node_submit($node) {
2003-02-15 11:39:56 +00:00
global $user;
2002-05-30 20:26:08 +00:00
2002-12-10 20:35:20 +00:00
/*
** Fixup the node when required:
*/
- Bugfix: just before submitting a node, one could change the content of
that node to something that would not have passed the preview pages.
Patch by Revar:
"If you uploaded a valid file, and filled out the form right, you will
get a Submit button. The problem comes in when you choose a different
file to upload, and then click Submit. The filestore_save() function
cannot do proper validation and handling of the form data, as it only
returns a list of what node fields to save. On error, a node entry is
still created, but with only the nid field set. The user can't be
forced to fix their bad entry."
"Add a _form_validate() node hook to process and validate any form
results. That way even on Submit, the node code would check the
validity of the data, and if bad, it could drop you back to the preview
screen with the current bad data warnings. Have it return an array of
errors that can be passed in as $error to the _form() hook. If it
returns a null array, then there's no errors, and the submit can go
through."
2002-05-26 09:23:46 +00:00
2002-12-10 20:35:20 +00:00
$node = node_validate($node, $error);
- Bugfix: just before submitting a node, one could change the content of
that node to something that would not have passed the preview pages.
Patch by Revar:
"If you uploaded a valid file, and filled out the form right, you will
get a Submit button. The problem comes in when you choose a different
file to upload, and then click Submit. The filestore_save() function
cannot do proper validation and handling of the form data, as it only
returns a list of what node fields to save. On error, a node entry is
still created, but with only the nid field set. The user can't be
forced to fix their bad entry."
"Add a _form_validate() node hook to process and validate any form
results. That way even on Submit, the node code would check the
validity of the data, and if bad, it could drop you back to the preview
screen with the current bad data warnings. Have it return an array of
errors that can be passed in as $error to the _form() hook. If it
returns a null array, then there's no errors, and the submit can go
through."
2002-05-26 09:23:46 +00:00
2002-12-10 20:35:20 +00:00
/*
** If something went wrong, go back to the preview form:
*/
2001-11-01 11:00:51 +00:00
2002-12-10 20:35:20 +00:00
if ($error) {
return node_preview($node, $error);
}
2001-11-25 12:18:51 +00:00
2002-12-10 20:35:20 +00:00
/*
** Prepare the node's body:
*/
2001-11-25 12:18:51 +00:00
2002-12-10 20:35:20 +00:00
if ($node->nid) {
2002-08-20 19:29:16 +00:00
2002-12-10 20:35:20 +00:00
/*
** Check whether the current user has the proper access rights to
** perform this operation:
*/
2001-11-25 12:18:51 +00:00
2002-12-10 20:35:20 +00:00
if (node_access("update", $node)) {
2003-03-07 22:11:44 +00:00
$nid = node_save($node);
2003-01-06 19:51:01 +00:00
watchdog("special", "$node->type: updated '$node->title'", l("view post", "node/view/$node->nid"));
2003-04-15 19:50:04 +00:00
$output = t("The %name has been updated.", array ("%name" => module_invoke($node->type, "node", "name")));
2002-12-10 20:35:20 +00:00
}
}
else {
2001-12-30 16:16:38 +00:00
2002-12-10 20:35:20 +00:00
/*
** Check whether the current user has the proper access rights to
** perform this operation:
*/
2001-11-01 11:00:51 +00:00
2002-12-10 20:35:20 +00:00
if (node_access("create", $node)) {
2002-08-20 19:29:16 +00:00
2002-12-10 20:35:20 +00:00
/*
** Verify a user's submission rate and avoid duplicate nodes being
** inserted:
*/
2001-11-01 11:00:51 +00:00
2002-12-10 20:35:20 +00:00
throttle("node", variable_get("max_node_rate", 900));
2002-04-14 20:46:41 +00:00
2003-03-07 22:11:44 +00:00
$nid = node_save($node);
2003-01-06 19:51:01 +00:00
watchdog("special", "$node->type: added '$node->title'", l("view post", "node/view/$nid"));
2002-12-10 20:35:20 +00:00
$output = t("Thanks for your submission.");
2001-12-06 17:33:05 +00:00
}
2002-12-10 20:35:20 +00:00
}
2001-12-06 17:33:05 +00:00
2002-12-10 20:35:20 +00:00
/*
** Reload the node from the database:
*/
$node = node_load(array("nid" => $nid));
/*
** For usability's sake, make sure to present the user with some
** useful links as where to go next.
*/
2001-12-06 17:33:05 +00:00
2002-12-10 20:35:20 +00:00
if ($referer = referer_load()) {
$links[] = "<a href=\"$referer\">". t("return") ."</a>";
2001-11-01 11:00:51 +00:00
}
2002-12-10 20:35:20 +00:00
if ($nid && node_access("view", $node)) {
2003-01-06 19:51:01 +00:00
$links[] = l(t("view"), "node/view/$nid");
2001-11-25 12:18:51 +00:00
}
2001-11-01 11:00:51 +00:00
2002-12-10 20:35:20 +00:00
if ($nid && node_access("update", $node)) {
2003-01-06 19:51:01 +00:00
$links[] = l(t("edit"), "node/edit/$nid");
2002-12-10 20:35:20 +00:00
}
2003-02-15 11:39:56 +00:00
$output .= "<p>". theme("links", $links) ."</p>";
2002-12-10 20:35:20 +00:00
2001-11-01 11:00:51 +00:00
return $output;
}
2001-11-03 18:38:30 +00:00
function node_delete($edit) {
2001-11-01 11:00:51 +00:00
2001-11-01 17:04:20 +00:00
$node = node_load(array("nid" => $edit["nid"]));
if (node_access("delete", $node)) {
2001-11-03 18:38:30 +00:00
2001-11-01 17:04:20 +00:00
if ($edit["confirm"]) {
2001-11-01 11:00:51 +00:00
2001-11-03 18:38:30 +00:00
/*
2003-04-15 19:50:04 +00:00
** Delete the specified node:
2001-11-03 18:38:30 +00:00
*/
db_query("DELETE FROM node WHERE nid = '$node->nid'");
2002-11-26 19:39:07 +00:00
2001-11-03 18:38:30 +00:00
/*
** Call the node specific callback (if any):
*/
2003-03-07 22:11:44 +00:00
node_invoke($node, "delete");
node_invoke_all($node, "nodeapi", "delete");
2001-11-03 18:38:30 +00:00
2003-03-16 21:47:15 +00:00
/*
** Clear the cache so an anonymous poster can see the node being
** deleted.
*/
cache_clear_all();
2001-11-24 10:02:15 +00:00
watchdog("special", "$node->type: deleted '$node->title'");
2001-11-01 17:04:20 +00:00
$output = t("The node has been deleted.");
}
else {
2002-12-31 12:34:07 +00:00
$output .= form_item(t("Confirm deletion"), $node->title);
2001-11-01 17:04:20 +00:00
$output .= form_hidden("nid", $node->nid);
$output .= form_hidden("confirm", 1);
$output .= form_submit(t("Delete"));
2001-11-24 10:02:15 +00:00
$output = form($output);
2001-11-01 17:04:20 +00:00
}
2001-11-01 11:00:51 +00:00
}
return $output;
}
2001-07-15 16:56:44 +00:00
function node_page() {
2003-05-13 18:36:38 +00:00
global $id, $user, $or, $and;
$op = $_POST["op"];
$edit = $_POST["edit"];
2001-07-15 16:56:44 +00:00
2003-01-06 19:51:01 +00:00
if (user_access("access content")) {
if (empty($op)) {
$op = arg(1);
}
2001-11-01 11:00:51 +00:00
2003-01-06 19:51:01 +00:00
if ($op == "feed") {
node_feed();
return;
}
2001-11-18 16:25:37 +00:00
2003-05-31 12:34:11 +00:00
if ($op == "view") {
2003-06-01 06:32:55 +00:00
$node = node_load(array("nid" => arg(2), "status" => 1), $_GET["revision"]);
2003-05-31 12:34:11 +00:00
}
theme("header", $node->title);
2003-05-25 07:08:21 +00:00
2003-04-15 19:50:04 +00:00
$name = module_invoke(arg(2), "node", "name");
2003-05-25 07:08:21 +00:00
2003-01-06 19:51:01 +00:00
switch ($op) {
case "add":
2003-04-15 19:50:04 +00:00
theme("box", t("Create new $name"), node_add(arg(2)));
2003-01-06 19:51:01 +00:00
break;
case "edit":
2003-04-15 19:50:04 +00:00
theme("box", t("Edit $name"), node_edit(arg(2)));
2003-01-06 19:51:01 +00:00
break;
case "view":
2003-05-31 12:34:11 +00:00
print node_show($node, arg(3));
2003-01-06 19:51:01 +00:00
break;
case t("Preview"):
$edit = node_validate($edit, $error);
2003-04-15 19:50:04 +00:00
theme("box", t("Preview $name"), node_preview($edit, $error));
2003-01-06 19:51:01 +00:00
break;
case t("Submit"):
2003-04-15 19:50:04 +00:00
theme("box", t("Submit $name"), node_submit($edit));
2003-01-06 19:51:01 +00:00
break;
case t("Delete"):
2003-04-15 19:50:04 +00:00
theme("box", t("Delete $name"), node_delete($edit));
2003-01-06 19:51:01 +00:00
break;
default:
2003-02-09 17:39:40 +00:00
$result = pager_query("SELECT nid, type FROM node WHERE promote = '1' AND status = '1' ORDER BY static DESC, created DESC", variable_get("default_nodes_main", 10));
2002-04-14 20:46:41 +00:00
2002-05-22 23:28:48 +00:00
while ($node = db_fetch_object($result)) {
node_view(node_load(array("nid" => $node->nid, "type" => $node->type)), 1);
}
2003-02-09 17:39:40 +00:00
print pager_display(NULL, variable_get("default_nodes_main", 10));
2002-04-14 20:46:41 +00:00
}
2003-05-25 07:08:21 +00:00
theme("footer");
2003-01-06 19:51:01 +00:00
}
else {
2003-05-25 07:08:21 +00:00
theme("header");
2003-02-15 11:39:56 +00:00
theme("box", t("Access denied"), message_access());
2003-05-25 07:08:21 +00:00
theme("footer");
2003-01-06 19:51:01 +00:00
}
2001-11-01 11:00:51 +00:00
2001-07-15 16:56:44 +00:00
}
2001-11-01 11:00:51 +00:00
2002-03-05 20:15:17 +00:00
function node_update_index() {
// Return an array of values to dictate how to update the search index
// for this particular type of node.
//
2002-03-26 21:33:23 +00:00
// "last_update"'s value is used with variable_set to set the
2002-03-05 20:15:17 +00:00
// last time this node type had an index update run.
//
// "node_type"'s value is used to identify the node type in the search
// index.
//
// "select"'s value is used to select the node id and text fields from
2002-03-26 21:33:23 +00:00
// the table we are indexing. In this case, we also check against the
2002-03-05 20:15:17 +00:00
// last run date for the nodes update.
return array("last_update" => "node_cron_last",
2002-03-26 21:33:23 +00:00
"node_type" => "node",
2003-02-23 21:36:29 +00:00
"select" => "SELECT n.nid as lno, n.title as text1, n.body as text2 FROM node n WHERE n.status = 1 AND moderate = 0 and (created > " . variable_get("node_cron_last", 1) . " or changed > " . variable_get("node_cron_last", 1) . ")");
}
2002-03-05 20:15:17 +00:00
2003-02-23 21:36:29 +00:00
function node_nodeapi(&$node, $op, $arg = 0) {
switch ($op) {
2003-03-08 14:35:42 +00:00
case "settings":
2003-03-09 17:19:50 +00:00
$output[t("publish")] = form_checkbox("", "node_status_$node->type", 1, variable_get("node_status_$node->type", 1));
$output[t("promote")] = form_checkbox("", "node_promote_$node->type", 1, variable_get("node_promote_$node->type", 1));
$output[t("moderate")] = form_checkbox("", "node_moderate_$node->type", 1, variable_get("node_moderate_$node->type", 0));
$output[t("static")] = form_checkbox("", "node_static_$node->type", 1, variable_get("node_static_$node->type", 0));
$output[t("revision")] = form_checkbox("", "node_revision_$node->type", 1, variable_get("node_revision_$node->type", 0));
2003-03-07 22:11:44 +00:00
return $output;
2003-02-23 21:36:29 +00:00
case "fields":
2003-03-09 17:19:50 +00:00
return array("nid", "uid", "type", "title", "teaser", "body", "revisions", "status", "promote", "moderate", "static", "created", "changed");
2003-02-16 14:57:35 +00:00
}
}
2003-02-23 21:36:29 +00:00
?>