summaryrefslogtreecommitdiff
path: root/modules/page/page.module
blob: 09cb73cc87a588d4ba2ce98d19c9f331af714c99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<?php
// $Id$

/**
 * Implementation of hook_help().
 */
function page_help($section) {
  switch ($section) {
    case 'admin/help#page':
      return t("
      <p>The page module is used when you want to create content that optionally inserts a link into your navigation system. You can also, however, create pages that that don't have this link by skipping the link text field in the page form. At this time, not all themes support the link insertion behavior. Some themes, like xtemplate, provide alternative mechanisms for link creation. Pages are also unique in that they shortcut the typical lifecycle of user generated content (i.e. submit -&gt; moderate -&gt; post -&gt; comment). </p>
      <p>If you enable the <strong>create PHP content</strong> permission for a role, pages may consist of PHP code in addition to HTML and text.</p>
      <h3>User access permissions for pages</h3>
      <p><strong>create pages:</strong> Allows a role to create pages. They cannot edit or delete pages, even if they are the authors. You must enable this permission to in order for a role to create a page.</p>
      <p><strong>maintain personal pages:</strong> Allows a role to add/edit pages if they own the page. Use this permission if you want users to be able to edit and maintain their own pages.</p>
      ");
    case 'admin/system/modules#description':
      return t('Enables the creation of pages that can be added to the navigation system.');
    case 'node/add#page':
      return t('If you just want to add a page with a link in the menu to your site, this is the best choice.  Unlike a story, a static page bypasses the submission queue.');
  }
}

/**
 * Implementation of hook_perm().
 */
function page_perm() {
  return array('create pages', 'maintain personal pages');
}

/**
 * Implementation of hook_node_name().
 */
function page_node_name($node) {
  return t('page');
}

/**
 * Implementation of hook_access().
 */
function page_access($op, $node) {
  global $user;

  if ($op == 'view') {
    return $node->status;
  }

  if ($op == 'create') {
    return user_access('create pages');
  }

  if ($op == 'update') {
    return user_access('maintain personal pages') && ($user->uid == $node->uid);
  }

  if ($op == 'delete') {
    return user_access('maintain personal pages') && ($user->uid == $node->uid);
  }
}

/**
 * Implementation of hook_insert().
 */
function page_insert($node) {
  db_query("INSERT INTO {page} (nid, format, link, description) VALUES (%d, %d, '%s', '%s')", $node->nid, $node->format, $node->link, $node->description);
}

/**
 * Implementation of hook_update().
 */
function page_update($node) {
  db_query("UPDATE {page} SET format = %d, link = '%s', description = '%s' WHERE nid = %d", $node->format, $node->link, $node->description, $node->nid);
}

/**
 * Implementation of hook_delete().
 */
function page_delete(&$node) {
  db_query('DELETE FROM {page} WHERE nid = %d', $node->nid);
}

/**
 * Implementation of hook_load().
 */
function page_load($node) {
  return db_fetch_object(db_query('SELECT format, link, description FROM {page} WHERE nid = %d', $node->nid));
}

/**
 * Implementation of hook_link().
 */
function page_link($type, $node = 0, $main) {

  $links = array();

  if ($type == 'system') {
    menu('node/add/page', t('page'), page_access('create', $node) ? MENU_FALLTHROUGH : MENU_DENIED, 0);
  }

  if ($type == 'node' && $node->type == 'page') {
    /* Don't display a redundant edit link if they are node administrators */
    if (page_access('update', $node) && !user_access('administer nodes')) {
      $links[] = l(t('edit this page'), "node/edit/$node->nid");
    }
  }

  return $links;
}

/**
 * Implementation of hook_content().
 *
 * If body is dynamic (using PHP code), the body will be generated.
 */
function page_content($node, $main = 0) {
  if ($node->format == 1) {
    // PHP type
    ob_start();
    eval($node->body);
    $node->teaser = $node->body = ob_get_contents();
    ob_end_clean();
  }
  else {
    // Assume HTML type by default
    $node = node_prepare($node, $main);
  }
  return $node;
}

/**
 * Implementation of hook_view().
 */
function page_view($node, $main = 0, $page = 0) {
  // prepare the node content
  $node = page_content($node, $main);
  // print the node
  return theme('node', $node, $main, $page);
}

/**
 * Implementation of hook_form().
 */
function page_form(&$node, &$error) {
  if (function_exists('taxonomy_node_form')) {
    $output .= implode('', taxonomy_node_form('page', $node));
  }

  if (($node->format == 1) && (!user_access('create php content'))) {
    drupal_set_message(t('Note: The body contents of this page are written in PHP and you do not have sufficient permissions to make changes to the body. You can edit the other elements of the page.'));
    $output .= form_hidden('format', $node->format);
    $hide_types = true;
  }
  else {
    $output .= form_textarea(t('Body'), 'body', $node->body, 60, 20, filter_tips_short());
  }

  $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 this blank.'));
  $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."));
  $content_type = (user_access('create php content')) ? array(0 => 'HTML', 1 => 'PHP') : false;
  if (!$hide_types && $content_type) {
    $output .= form_radios(t('Type'), 'format', $node->format, $content_type);
  }

  return $output;
}

/**
 * Implementation of hook_validate().
 */
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;
  }

  if (($node->format == 1) && (!user_access('create php content'))) {
    /* Overwrite the submitted node body since they don't have sufficient privileges. */
    $node->body = db_result(db_query('SELECT body FROM {node} WHERE nid = %d', $node->nid));
  }
}

?>