Skip to content
page.module 4.57 KiB
Newer Older
Dries Buytaert's avatar
 
Dries Buytaert committed
<?php
// $Id$

Dries Buytaert's avatar
 
Dries Buytaert committed
function page_help() {
Dries Buytaert's avatar
 
Dries Buytaert committed
  $output .= "<p>The page module is used to create a <i>static page</i>.  Unlike a story, a static page is a persistent web page on your site which usually shortcuts the typical lifecycle of user generated content (i.e. submit -&gt; moderate -&gt; post -&gt; comment).  A static page is usually linked from the main navigation bar, using whatever text the author wishes.  To create a static page without this navigation link, simply skip the form field which requests link text.</p>";
  $output .= "<p>Site pages, unlike many other forms of Drupal content, may be made of PHP code in addition to HTML and text. All Drupal objects and functions are available to a site administrator.</p>";

Dries Buytaert's avatar
 
Dries Buytaert committed
  return $output;
}

Dries Buytaert's avatar
 
Dries Buytaert committed
function page_system($field) {
  $system["description"] = t("Enables the creation of a static pages that can be added to the navigation system.");
Dries Buytaert's avatar
 
Dries Buytaert committed
function page_perm() {
  return array("maintain static pages");
}

Dries Buytaert's avatar
 
Dries Buytaert committed
function page_node($field) {
Dries Buytaert's avatar
 
Dries Buytaert committed
  $info["name"] = t("static page");
  $info["description"] = t("If you just want to add a page with a link in the menu to your site, this would be the best choice.  Unlike a story, a static page by-passes the submission queue.");
Dries Buytaert's avatar
 
Dries Buytaert committed

  return $info[$field];
}

function page_access($op, $node) {
  if ($op == "view") {
    return $node->status;
  }
Dries Buytaert's avatar
 
Dries Buytaert committed

  if ($op == "create") {
    return user_access("maintain static pages");
  }

  if ($op == "update") {
    return user_access("maintain static pages");
  }

  if ($op == "delete") {
    return user_access("maintain static pages");
  }
Dries Buytaert's avatar
 
Dries Buytaert committed
}

function page_save($op, $node) {
  if ($op == "approve") {
    return array("status" => 1);
  }

  if ($op == "decline") {
    return array("status" => 0);
  }
}

function page_insert($node) {
Dries Buytaert's avatar
 
Dries Buytaert committed
  db_query("INSERT INTO page (nid, format, link, description) VALUES (%d, %d, '%s', '%s')", $node->nid, $node->format, $node->link, $node->description);
Dries Buytaert's avatar
 
Dries Buytaert committed
}

function page_update($node) {
Dries Buytaert's avatar
 
Dries Buytaert committed
db_query("UPDATE page SET format = %d, link = '%s', description = '%s' WHERE nid = %d", $node->format, $node->link, $node->description, $node->nid);
Dries Buytaert's avatar
 
Dries Buytaert committed
  }
Dries Buytaert's avatar
 
Dries Buytaert committed

function page_delete(&$node) {
Dries Buytaert's avatar
 
Dries Buytaert committed
  db_query("DELETE FROM page WHERE nid = %d", $node->nid);
Dries Buytaert's avatar
 
Dries Buytaert committed
}

function page_load($node) {
Dries Buytaert's avatar
 
Dries Buytaert committed
  $page = db_fetch_object(db_query("SELECT format, link, description FROM page WHERE nid = %d", $node->nid));
Dries Buytaert's avatar
 
Dries Buytaert committed

Dries Buytaert's avatar
 
Dries Buytaert committed
  return $page;
}

function page_link($type) {
Dries Buytaert's avatar
 
Dries Buytaert committed

  $links = array();

  if ($type == "page" && user_access("access content")) {
Dries Buytaert's avatar
 
Dries Buytaert committed
    $result = db_query("SELECT n.nid, n.title, p.link, p.description FROM page p LEFT JOIN node n ON p.nid = n.nid WHERE n.status = '1' AND p.link != '' ORDER BY p.link");
Dries Buytaert's avatar
 
Dries Buytaert committed
    while ($page = db_fetch_object($result)) {
Dries Buytaert's avatar
 
Dries Buytaert committed
      $links[] = l($page->link, "node/view/$page->nid", array("title" => $page->description));
Dries Buytaert's avatar
 
Dries Buytaert committed
    }
  }

Dries Buytaert's avatar
 
Dries Buytaert committed
  if ($type == "menu.create" && user_access("maintain static pages")) {
Dries Buytaert's avatar
 
Dries Buytaert committed
    $links[] = l(t("create static page"), "node/add/page", array("title" => t("Add a new static page.")));
Dries Buytaert's avatar
 
Dries Buytaert committed
  }

Dries Buytaert's avatar
 
Dries Buytaert committed
  return $links;
Dries Buytaert's avatar
 
Dries Buytaert committed
}

Dries Buytaert's avatar
 
Dries Buytaert committed
function page_view($node, $main = 0) {
  /*
  ** Extract the page body.  If body is dynamic (using PHP code), the body
  ** will be generated.
  */
Dries Buytaert's avatar
 
Dries Buytaert committed

Dries Buytaert's avatar
 
Dries Buytaert committed
  if ($node->format == 0) {
    // HTML type
Dries Buytaert's avatar
 
Dries Buytaert committed
    $node->teaser = check_output($node->teaser);
    $node->body = check_output($node->body);
Dries Buytaert's avatar
 
Dries Buytaert committed
  }
  else {
    // PHP type
Dries Buytaert's avatar
 
Dries Buytaert committed
    ob_start();
    eval($node->body);
Dries Buytaert's avatar
 
Dries Buytaert committed
    $node->teaser = $node->body = ob_get_contents();
Dries Buytaert's avatar
 
Dries Buytaert committed
    ob_end_clean();
Dries Buytaert's avatar
 
Dries Buytaert committed
  }
Dries Buytaert's avatar
 
Dries Buytaert committed

Dries Buytaert's avatar
 
Dries Buytaert committed
    theme("node", $node, $main);
Dries Buytaert's avatar
 
Dries Buytaert committed

Dries Buytaert's avatar
 
Dries Buytaert committed
    theme("box", $node->title, "$node->body<div style=\"text-align: right;\">". theme("links", link_node($node, $main)) ."</div>");
Dries Buytaert's avatar
 
Dries Buytaert committed
}

function page_form(&$node, &$help, &$error) {
  if (function_exists("taxonomy_node_form")) {
    $output .= implode("", taxonomy_node_form("page", $node));
  }

Dries Buytaert's avatar
 
Dries Buytaert committed
  $output .= form_textarea(t("Body"), "body", $node->body, 60, 20);
Dries Buytaert's avatar
 
Dries Buytaert committed
  $output .= form_textfield(t("Link name"), "link", $node->link, 60, 64, t("To make the page show up in the navigation links, enter the name of the link, otherwise leave blank."));
Dries Buytaert's avatar
 
Dries Buytaert committed
  $output .= form_textfield(t("Link description"), "description", $node->description, 60, 64, t("The description displayed when hovering over the page's link.  Leave blank when you don't want a description."));
Dries Buytaert's avatar
 
Dries Buytaert committed
  $output .= form_select(t("Type"), "format", $node->format, array(0 => "HTML", 1 => "PHP"));
Dries Buytaert's avatar
 
Dries Buytaert committed

  return $output;
}

function page_validate(&$node) {
  if ($node->format && user_access("create php content")) {
    // Do not filter PHP code, do not auto-extract a teaser
    $node->teaser = $node->body;
  }
  else {
    $node->format = 0;
  }
}

Dries Buytaert's avatar
 
Dries Buytaert committed
?>