". ucfirst($name) ." type"; print module_invoke($name, "help"); } } } } function node_access($op, $node = 0) { if (user_access("administer nodes")) { return 1; } else { /* ** Convert the node to an object if necessary: */ if (is_array($node)) { $node = node_object($node); } /* ** Construct a function: */ $function = $node->type ."_access"; if (function_exists($function)) { return $function($op, $node); } else { return 0; } } } function node_perm() { return array("administer nodes", "access content", "post content"); } function node_search($keys) { global $PHP_SELF; $result = db_query("SELECT n.nid, n.title, n.created, u.uid, u.name FROM node n LEFT JOIN users u ON n.uid = u.uid WHERE n.status = 1 AND (n.title LIKE '%$keys%' OR n.teaser LIKE '%$keys%' OR n.body LIKE '%$keys%') ORDER BY n.created DESC LIMIT 20"); while ($node = db_fetch_object($result)) { $find[$i++] = array("title" => check_output($node->title), "link" => (strstr($PHP_SELF, "admin.php") ? "admin.php?mod=node&type=node&op=edit&id=$node->nid" : "node.php?id=$node->nid"), "user" => $node->name, "date" => $node->created); } return $find; } function node_conf_options() { $output .= form_select(t("Default number of nodes to display"), "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 nodes to display on the main page.")); $output .= form_select(t("Minimum number of words in teaser"), "minimum_teaser_size", variable_get("minimum_teaser_size", 0), array(0 => "0 words", 10 => "10 words", 25 => "25 words", 50 => "50 words", 75 => "75 words", 100 => "100 words", 125 => "125 words", 150 => "150 words", 175 => "175 words", 200 => "200 words"), t("The minimum number of words a teaser should consist of. This can be useful to rule out submissions that do not meet the site's standards, such as short test post.")); return $output; } function node_conf_filters() { $output .= form_select(t("Enable HTML tags"), "filter_html", variable_get("filter_html", 0), array("Disabled", "Enabled"), t("Allow HTML and PHP tags in user-contributed content.")); $output .= form_textfield(t("Allowed HTML tags"), "allowed_html", variable_get("allowed_html", "
      • "), 64, 128, t("If enabled, optionally specify tags which should not be stripped. 'STYLE' attributes, 'ON' attributes and unclosed tags are always stripped.")); $output .= "
        "; $output .= form_select(t("Enable link tags"), "filter_link", variable_get("filter_link", 0), array("Disabled", "Enabled"), t("Substitute special [[nodesubject|text]] tags. Your browser will display 'text', and when you click on it your browser will open the node with the subject 'nodesubject'. Please be aware that you'll need to copy the subject of the target node exactly in order to use this feature.")); $output .= "
        "; return $output; } function node_filter_html($text) { $text = eregi_replace("([ \f\r\t\n\'\"])style=[^>]+", "\\1", $text); $text = eregi_replace("([ \f\r\t\n\'\"])on[a-z]+=[^>]+", "\\1", $text); $text = strip_tags($text, variable_get("allowed_html", "")); return $text; } function node_filter_link($text) { $src = array("/\[\[(([^\|]*?)(\|([^\|]*?))?)\]\]/e"); // [link|description] $dst = array(format_tag('\\2', '\\4')); // [link|description] return preg_replace($src, $dst, $text); } function node_filter_line($text) { /* ** If HTML mark-up is being used, strip regular mark-up: */ if (strstr($text, "
        ") || strstr($text, "

        ")) { $text = ereg_replace("[\r\n]", "", $text); } /* ** Replace '
        ', '
        ', '

        ' and '

        ' by '\n': */ $text = eregi_replace("
        ", "\n", $text); $text = eregi_replace("
        ", "\n", $text); $text = eregi_replace("

        ", "\n", $text); $text = eregi_replace("
        ", "\n", $text); /* ** Replace "\r\n" by "\n": */ $text = ereg_replace("\r\n", "\n", $text); /* ** Replace some new line charachters: */ while (strpos($text, "\n\n\n")) { $text = ereg_replace("\n\n\n", "\n\n", $text); } return trim($text); } function node_filter($text) { if (variable_get("filter_html", 0)) $text = node_filter_html($text); if (variable_get("filter_link", 0)) $text = node_filter_link($text); return node_filter_line($text); } function node_link($type, $node = 0, $main = 0) { if ($type == "admin" && user_access("administer nodes")) { $links[] = "
        content management"; } if ($type == "page" && user_access("post content")) { $links[] = "submit"; } if ($type == "node") { if ($node->links) { $links = $node->links; } if ($main && $node->teaser != $node->body) { $links[] = "nid\">". t("read more") .""; } if (module_invoke($node->type, "access", "update", $node)) { $links[] = "nid\">". t("edit") .""; } if (user_access("administer nodes")) { $links[] = "nid\">". t("administer") .""; } } return $links ? $links : array(); } function node_admin_settings($edit = array()) { global $op; if ($op == t("Save configuration")) { /* ** Save the configuration options: */ foreach ($edit as $name => $value) { variable_set($name, $value); } } if ($op == t("Reset to defaults")) { /* ** Reset the configuration options to their default value: */ foreach ($edit as $name=>$value) { variable_del($name); } } $output .= "

        ". t("Global node settings") ."

        "; $output .= node_conf_options(); foreach (module_list() as $name) { if (module_hook($name, "conf_options") && module_hook($name, "node")) { $output .= "

        ". ucfirst(module_invoke($name, "node", "name") ." settings") ."

        "; $output .= module_invoke($name, "conf_options"); } } $output .= form_submit(t("Save configuration")); $output .= form_submit(t("Reset to defaults")); return form($output); } function node_admin_edit($node) { if (is_numeric($node)) { $node = node_load(array("nid" => $node)); } /* ** Edit node: */ $output .= "

        ". t("Edit") ." ". module_invoke($node->type, "node", "name") ."

        "; $output .= node_form($node); /* ** Edit revisions: */ if ($node->revisions) { $output .= "

        ". t("Edit revisions") ."

        "; $output .= ""; $output .= " "; foreach ($node->revisions as $key => $revision) { $output .= " "; } $output .= "
        older revisionsoperations
        ". sprintf(t("revision #%d revised by %s on %s"), $key, format_name(user_load(array("uid" => $revision["uid"]))), format_date($revision["timestamp"], "small")) . ($revision["history"] ? "
        ". $revision["history"] ."" : "") ."
        nid&revision=$key\">". t("view revision") ."nid&revision=$key\">". t("rollback revision") ."nid&revision=$key\">". t("delete revision") ."
        "; } /* ** Edit comments: */ $output .= "

        ". t("Edit comments") ."

        "; $result = db_query("SELECT c.cid, c.subject, u.uid, u.name FROM comments c LEFT JOIN users u ON u.uid = c.uid WHERE lid = '$node->nid' ORDER BY c.timestamp"); $output .= ""; $output .= " "; while ($comment = db_fetch_object($result)) { $output .= ""; } $output .= "
        titleauthoroperations
        nid&cid=$comment->cid#$comment->cid\">$comment->subject". format_name($comment) ."nid&cid=$comment->cid#$comment->cid\">". t("view comment") ."cid\">". t("edit comment") ."cid\">". t("delete comment") ."
        "; return $output; } function node_admin_nodes() { global $query; $queries = array(array("ORDER BY n.created DESC", "new nodes"), array("ORDER BY n.changed DESC", "updated nodes"), array("WHERE n.status = 1 AND n.moderate = 0 ORDER BY n.nid DESC", "published nodes"), array("WHERE n.status = 0 AND n.moderate = 0 ORDER BY n.nid DESC", "non-published nodes"), array("WHERE n.status = 1 AND n.moderate = 1 ORDER BY n.nid DESC", "pending nodes"), array("WHERE n.status = 1 AND n.promote = 1 ORDER BY n.nid DESC", "promoted nodes")); $result = db_query("SELECT n.*, u.name, u.uid FROM node n LEFT JOIN users u ON n.uid = u.uid ". $queries[$query ? $query : 0][0] ." LIMIT 50"); foreach ($queries as $key => $value) { $links[] = "$value[1]"; } $output .= "". implode(" :: ", $links) ."
        "; $output .= "\n"; $output .= " \n"; while ($node = db_fetch_object($result)) { $output .= ""; } $output .= "
        titletypeauthorstatusoperations
        nid\">". check_output($node->title) ."$node->type". format_name($node) ."". ($node->status ? t("published") : t("not published")) ."nid\">". t("edit node") ."nid\">". t("delete node") ."
        "; return $output; } /* ** 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. */ function node_revision_create($node) { global $user; /* ** 'revision' is the name of the field used to indicicate that we ** have to create a new revision of a node. */ if ($node->nid && $node->revision) { $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); } return $node; } /* ** Roll-back to the revision with the specified revision number. */ function node_revision_rollback($node, $revision) { global $user; /* ** 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); watchdog("special", "$node->type: rollbacked to revision #$revision of '$node->title'"); } /* ** Delete the revision with specified revision number. */ function node_revision_delete($node, $revision) { unset($node->revisions[$revision]); node_save($node, array("nid", "revisions")); watchdog("special", "$node->type: removed revision #$revision of '$node->title'"); } /* ** 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(); } } function node_admin() { global $op, $id, $revision, $edit; if (user_access("administer nodes")) { /* ** Compile a list of the administrative links: */ $links[] = "nodes"; $links[] = "search content"; $links[] = "settings"; $links[] = "help"; print "". implode(" · ", $links) ."
        "; switch ($op) { case "help": print node_help(); break; case "search": print search_type("node", "admin.php?mod=node&op=search"); break; case t("Save configuration"): case t("Reset to defaults"): case "settings": print node_admin_settings($edit); break; case "edit": print node_admin_edit($id); break; case "delete": print node_delete(array("nid" => $id)); break; case "rollback revision": print node_revision_rollback(node_load(array("nid" => $id)), $revision); print node_admin_edit($id); break; case "delete revision": print node_revision_delete(node_load(array("nid" => $id)), $revision); print node_admin_edit($id); break; case t("Preview"): print node_preview($edit); break; case t("Submit"): print node_submit($edit); print node_admin_nodes(); break; case t("Delete"): print node_delete($edit); break; default: print node_admin_nodes(); } } else { print message_access(); } } function node_block() { global $theme; $block[0][subject] = t("Syndicate"); $block[0][content] = "\n"; $block[0][info] = "Syndicate"; return $block; } function node_feed() { $result = db_query("SELECT nid, type FROM node WHERE promote = '1' AND status = '1' ORDER BY created DESC LIMIT 15"); while ($node = db_fetch_object($result)) { $item = node_load(array("nid" => $node->nid, "type" => $node->type)); $link = path_uri() ."node.php?id=$item->nid"; $items .= format_rss_item($item->title, $link, $item->teaser); } $output .= "\n"; // $output .= "\n"; $output .= "\n"; $output .= format_rss_channel(variable_get("site_name", "drupal"), path_uri(), variable_get("site_slogan", ""), $items); $output .= "\n"; header("Content-Type: text/xml"); print $output; } function node_validate($node, &$error) { global $user; /* ** Convert the node to an object if necessary: */ $node = node_object($node); /* ** Validate the title field: */ if (isset($node->title) && !$node->title) { $error["title"] = "
        ". t("You have to specify a valid title.") ."
        "; } if (user_access("administer nodes")) { /* ** Setup default values if required: */ if (!$node->created) { $node->created = time(); } if (!$node->date) { $node->date = date("M j, Y g:i a", $node->created); } /* ** Validate the "authored by"-field: */ 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))) { $node->uid = $account->uid; } else { $error["name"] = "
        ". sprintf(t("The name '%s' does not exist."), $node->name) ."
        "; } /* ** Validate the "authored on"-field: */ if (strtotime($node->date) > 1000) { $node->created = strtotime($node->date); } else { $error["date"] = "
        ". t("You have to specifiy a valid date.") ."
        "; } /* ** Validate the "teaser"-field: */ if ($node->teaser && count(explode(" ", $node->teaser)) < variable_get("minimum_teaser_size", 0)) { $error["teaser"] = "
        ". t("Your teaser is too short.") ."
        "; } } return $node; } function node_form($edit) { /* ** Validate the node: */ $edit = node_validate($edit, $error); /* ** Get the node specific bits: */ $function = $edit->type ."_form"; if (function_exists($function)) { $form .= $function($edit, $help, $error); } /* ** Add the help text: */ if ($help) { $output .= "

        $help

        "; } $output .= ""; $output .= " "; $output .= " "; $output .= " "; $output .= "
        "; /* ** Add the default fields: */ $output .= form_textfield(t("Title"), "title", $edit->title, 60, 64, $error["title"]); if ($edit->body && !$edit->teaser) { $edit->teaser = node_teaser($edit->body); } if ($edit->teaser) { $output .= form_textarea(t("Teaser"), "teaser", $edit->teaser, 60, 5, $error["teaser"]); } /* ** Add the node specific fields: */ $output .= $form; /* ** Add the hidden fields: */ if ($edit->nid) { $output .= form_hidden("nid", $edit->nid); } if (isset($edit->uid)) { /* ** The use of isset() is mandatory in the context of user IDs as uid ** 0 denotes the anonymous user. */ $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")); } if ($edit->nid && node_access("delete", $edit)) { $output .= form_submit(t("Delete")); } /* ** Add the admin specific parts: */ if (user_access("administer nodes")) { $output .= ""; $output .= form_textfield(t("Authored by"), "name", $edit->name, 20, 25, $error["name"]); $output .= form_textfield(t("Authored on"), "date", $edit->date, 20, 25, $error["date"]); $output .= "
        "; $output .= form_select(t("Set public/published"), "status", $edit->status, array("Disabled", "Enabled")); $output .= form_select(t("Allow users comments"), "comment", $edit->comment, array("Disabled", "Enabled")); $output .= form_select(t("Promote to front page"), "promote", $edit->promote, array("Disabled", "Enabled")); $output .= form_select(t("Create new revision"), "revision", $edit->revision, array("Disabled", "Enabled")); } $output .= "
        "; return form($output); } function node_add($type) { global $user; if ($type) { $output = node_form(array("uid" => $user->uid, "name" => $user->name, "type" => $type)); } else { /* ** Compile a list with the different node types and their explanation: */ foreach (module_list() as $name) { if (module_hook($name, "node") && node_access("create", array("type" => $name))) { $output .= "
      • "; $output .= " ". module_invoke($name, "node", "name") .""; $output .= "
        ". module_invoke($name, "node", "description") ."
        "; $output .= "
      • "; } } $output = t("Choose the appropriate item from the list:") ."
          $output
        "; } return $output; } function node_edit($id) { global $user; $node = node_load(array("nid" => $id)); if (node_access("update", $node)) { $output = node_form($node); } else { $output = message_access(); } return $output; } function node_preview($edit) { /* ** Load the user's name when needed: */ if (isset($edit["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" => $edit["name"]))) { $edit["uid"] = $user->uid; } else { $edit["uid"] = 0; // anonymous user } } else if ($edit["uid"]) { $user = user_load(array("uid" => $edit["uid"])); $edit["name"] = $user->name; } /* ** Set the created time when needed: */ if (empty($edit["nid"])) { $edit["created"] = time(); } /* ** Apply the required filters: */ foreach ($edit as $key => $value) { $node->$key = check_input($value); } /* ** Display a preview of the node: */ node_view($node); return node_form($edit); } function node_submit($node) { global $user; if (user_access("post content")) { /* ** Verify a user's submission rate and avoid duplicate nodes being ** inserted: */ throttle("node", variable_get("max_node_rate", 900)); /* ** Fixup the node when required: */ $node = node_validate($node, $error); /* ** Apply the filters: */ $node->teaser = filter($node->teaser); $node->title = filter($node->title); $node->body = filter($node->body); /* ** Create a new revision when required: */ $node = node_revision_create($node); if ($node->nid) { /* ** Check whether the current user has the proper access rights to ** perform this operation: */ if (node_access("update", $node)) { /* ** Compile a list of the node fields and their default values that users ** and administrators are allowed to save when updating a node. */ if (user_access("administer nodes")) { $fields = array("nid", "uid", "body", "comment", "created", "promote", "moderate", "revisions", "status", "teaser", "title", "type" => $node->type); } else { $fields = array("nid", "uid" => ($user->uid ? $user->uid : 0), "body", "teaser", "title", "type" => $node->type); } node_save($node, array_merge($fields, module_invoke($node->type, "save", "update", $node))); watchdog("special", "$node->type: updated '$node->title'"); $output = t("The node has been updated."); } else { watchdog("warning", "$node->type: not authorized to update node"); $output = t("You are not authorized to update this node."); } } else { /* ** Check whether the current user has the proper access rights to ** perform this operation: */ if (node_access("create", $node)) { /* ** Compile a list of the node fields and their default values that users ** and administrators are allowed to save when inserting a new node. */ if (user_access("administer nodes")) { $fields = array("uid", "body", "comment" => 1, "promote", "moderate", "status" => 1, "teaser", "title", "type" => $node->type); } else { $fields = array("uid" => ($user->uid ? $user->uid : 0), "body", "comment" => 1, "teaser", "title", "type" => $node->type); } node_save($node, array_merge($fields, module_invoke($node->type, "save", "create", $node))); watchdog("special", "$node->type: added '$node->title'"); $output = t("Thanks for your submission."); } else { watchdog("warning", "$node->type: not authorized to create node"); $output = t("You are not authorized to create this node."); } } } else { $output = message_access(); } return $output; } function node_delete($edit) { $node = node_load(array("nid" => $edit["nid"])); if (node_access("delete", $node)) { if ($edit["confirm"]) { /* ** Delete the specified node and its comments: */ db_query("DELETE FROM node WHERE nid = '$node->nid'"); db_query("DELETE FROM comments WHERE lid = '$node->nid'"); /* ** Call the node specific callback (if any): */ module_invoke($node->type, "delete", $node); watchdog("special", "$node->type: deleted '$node->title'"); $output = t("The node has been deleted."); } else { $output .= form_item(t("Confirm deletion"), check_output($node->title)); $output .= form_hidden("nid", $node->nid); $output .= form_hidden("confirm", 1); $output .= form_submit(t("Delete")); $output = form($output); } } else { watchdog("warning", "$node->type: not authorized to remove node"); $output = t("You are not authorized to remove this node."); } return $output; } function node_page() { global $op, $id, $user, $edit, $type, $theme, $meta, $date; if ($op == "feed") { node_feed(); return; } /* ** Try to find a good title: */ if ($type) { $title = ucfirst(module_invoke($type, "node", "name")); } else if ($edit["type"]) { $title = ucfirst(module_invoke($edit["type"], "node", "name")); } else { $title = t("Submission form"); } $theme->header(); switch ($op) { case "add": $theme->box($title, node_add($type)); break; case "edit": $theme->box($title, node_edit($id)); break; case t("Preview"): $theme->box($title, node_preview($edit)); break; case t("Submit"): $theme->box($title, node_submit($edit)); break; case t("Delete"): $theme->box($title, node_delete($edit)); break; default: $result = db_query("SELECT nid, type FROM node WHERE ". ($meta ? "attributes LIKE '%". check_input($meta) ."%' AND " : "") ." promote = '1' AND status = '1' AND created <= '". ($date > 0 ? check_input($date) : time()) ."' ORDER BY created DESC LIMIT ". ($user->nodes ? $user->nodes : variable_get("default_nodes_main", 10))); while ($node = db_fetch_object($result)) { node_view(node_load(array("nid" => $node->nid, "type" => $node->type)), 1); } } $theme->footer(); } ?>