|
1 <?php |
|
2 // $Id: blog.module,v 1.297.2.4 2009/02/25 12:21:53 goba Exp $ |
|
3 |
|
4 /** |
|
5 * @file |
|
6 * Enables keeping an easily and regularly updated web page or a blog. |
|
7 */ |
|
8 |
|
9 /** |
|
10 * Implementation of hook_node_info(). |
|
11 */ |
|
12 function blog_node_info() { |
|
13 return array( |
|
14 'blog' => array( |
|
15 'name' => t('Blog entry'), |
|
16 'module' => 'blog', |
|
17 'description' => t('A <em>blog entry</em> is a single post to an online journal, or <em>blog</em>.'), |
|
18 ) |
|
19 ); |
|
20 } |
|
21 |
|
22 /** |
|
23 * Implementation of hook_perm(). |
|
24 */ |
|
25 function blog_perm() { |
|
26 return array('create blog entries', 'delete own blog entries', 'delete any blog entry', 'edit own blog entries', 'edit any blog entry'); |
|
27 } |
|
28 |
|
29 /** |
|
30 * Implementation of hook_access(). |
|
31 */ |
|
32 function blog_access($op, $node, $account) { |
|
33 switch ($op) { |
|
34 case 'create': |
|
35 // Anonymous users cannot post even if they have the permission. |
|
36 return user_access('create blog entries', $account) && $account->uid ? TRUE : NULL; |
|
37 case 'update': |
|
38 return user_access('edit any blog entry', $account) || (user_access('edit own blog entries', $account) && ($node->uid == $account->uid)) ? TRUE : NULL; |
|
39 case 'delete': |
|
40 return user_access('delete any blog entry', $account) || (user_access('delete own blog entries', $account) && ($node->uid == $account->uid)) ? TRUE : NULL; |
|
41 } |
|
42 } |
|
43 |
|
44 /** |
|
45 * Implementation of hook_user(). |
|
46 */ |
|
47 function blog_user($type, &$edit, &$user) { |
|
48 if ($type == 'view' && user_access('create blog entries', $user)) { |
|
49 $user->content['summary']['blog'] = array( |
|
50 '#type' => 'user_profile_item', |
|
51 '#title' => t('Blog'), |
|
52 // l() escapes the attributes, so we should not escape !username here. |
|
53 '#value' => l(t('View recent blog entries'), "blog/$user->uid", array('attributes' => array('title' => t("Read !username's latest blog entries.", array('!username' => $user->name))))), |
|
54 '#attributes' => array('class' => 'blog'), |
|
55 ); |
|
56 } |
|
57 } |
|
58 |
|
59 /** |
|
60 * Implementation of hook_help(). |
|
61 */ |
|
62 function blog_help($path, $arg) { |
|
63 switch ($path) { |
|
64 case 'admin/help#blog': |
|
65 $output = '<p>'. t('The blog module allows registered users to maintain an online journal, or <em>blog</em>. Blogs are made up of individual <em>blog entries</em>, and the blog entries are most often displayed in descending order by creation time.') .'</p>'; |
|
66 $output .= '<p>'. t('There is an (optional) <em>Blogs</em> menu item added to the Navigation menu, which displays all blogs available on your site, and a <em>My blog</em> item displaying the current user\'s blog entries. The <em>Blog entry</em> menu item under <em>Create content</em> allows new blog entries to be created.') .'</p>'; |
|
67 $output .= '<p>'. t('Each blog entry is displayed with an automatic link to other blogs created by the same user. By default, blog entries have comments enabled and are automatically promoted to the site front page. The blog module also creates a <em>Recent blog posts</em> block that may be enabled at the <a href="@blocks">blocks administration page</a>.', array('@blocks' => url('admin/build/block'))) .'</p>'; |
|
68 $output .= '<p>'. t('When using the aggregator module an automatic <em>blog it</em> icon is displayed next to the items in a feed\'s <em>latest items</em> block. Clicking this icon populates a <em>blog entry</em> with a title (the title of the feed item) and body (a link to the source item on its original site and illustrative content suitable for use in a block quote). Blog authors can use this feature to easily comment on items of interest that appear in aggregator feeds from other sites. To use this feature, be sure to <a href="@modules">enable</a> the aggregator module, <a href="@feeds">add and configure</a> a feed from another site, and <a href="@blocks">position</a> the feed\'s <em>latest items</em> block.', array('@modules' => url('admin/build/modules'), '@feeds' => url('admin/content/aggregator'), '@blocks' => url('admin/build/block'))) .'</p>'; |
|
69 $output .= '<p>'. t('For more information, see the online handbook entry for <a href="@blog">Blog module</a>.', array('@blog' => 'http://drupal.org/handbook/modules/blog/')) .'</p>'; |
|
70 return $output; |
|
71 } |
|
72 } |
|
73 |
|
74 /** |
|
75 * Implementation of hook_form(). |
|
76 */ |
|
77 function blog_form(&$node) { |
|
78 global $nid; |
|
79 $iid = isset($_GET['iid']) ? (int)$_GET['iid'] : 0; |
|
80 $type = node_get_types('type', $node); |
|
81 |
|
82 |
|
83 if (empty($node->body)) { |
|
84 // If the user clicked a "blog it" link, we load the data from the |
|
85 // database and quote it in the blog. |
|
86 if ($nid && $blog = node_load($nid)) { |
|
87 $node->body = '<em>'. $blog->body .'</em> ['. l($blog->name, "node/$nid") .']'; |
|
88 } |
|
89 |
|
90 if ($iid && $item = db_fetch_object(db_query('SELECT i.*, f.title as ftitle, f.link as flink FROM {aggregator_item} i, {aggregator_feed} f WHERE i.iid = %d AND i.fid = f.fid', $iid))) { |
|
91 $node->title = $item->title; |
|
92 // Note: $item->description has been validated on aggregation. |
|
93 $node->body = '<a href="'. check_url($item->link) .'">'. check_plain($item->title) .'</a> - <em>'. $item->description .'</em> [<a href="'. check_url($item->flink) .'">'. check_plain($item->ftitle) ."</a>]\n"; |
|
94 } |
|
95 |
|
96 } |
|
97 |
|
98 $form['title'] = array('#type' => 'textfield', '#title' => check_plain($type->title_label), '#required' => TRUE, '#default_value' => !empty($node->title) ? $node->title : NULL, '#weight' => -5); |
|
99 $form['body_field'] = node_body_field($node, $type->body_label, $type->min_word_count); |
|
100 return $form; |
|
101 } |
|
102 |
|
103 /** |
|
104 * Implementation of hook_view(). |
|
105 */ |
|
106 function blog_view($node, $teaser = FALSE, $page = FALSE) { |
|
107 if ($page) { |
|
108 // Breadcrumb navigation. l() escapes the title, so we should not escape !name. |
|
109 drupal_set_breadcrumb(array(l(t('Home'), NULL), l(t('Blogs'), 'blog'), l(t("!name's blog", array('!name' => $node->name)), 'blog/'. $node->uid))); |
|
110 } |
|
111 return node_prepare($node, $teaser); |
|
112 } |
|
113 |
|
114 /** |
|
115 * Implementation of hook_link(). |
|
116 */ |
|
117 function blog_link($type, $node = NULL, $teaser = FALSE) { |
|
118 $links = array(); |
|
119 |
|
120 if ($type == 'node' && $node->type == 'blog') { |
|
121 if (arg(0) != 'blog' || arg(1) != $node->uid) { |
|
122 // This goes to l() and therefore escapes !username in both the title and attributes. |
|
123 $links['blog_usernames_blog'] = array( |
|
124 'title' => t("!username's blog", array('!username' => $node->name)), |
|
125 'href' => "blog/$node->uid", |
|
126 'attributes' => array('title' => t("Read !username's latest blog entries.", array('!username' => $node->name))) |
|
127 ); |
|
128 } |
|
129 } |
|
130 |
|
131 return $links; |
|
132 } |
|
133 |
|
134 /** |
|
135 * Implementation of hook_menu(). |
|
136 */ |
|
137 function blog_menu() { |
|
138 $items['blog'] = array( |
|
139 'title' => 'Blogs', |
|
140 'page callback' => 'blog_page_last', |
|
141 'access arguments' => array('access content'), |
|
142 'type' => MENU_SUGGESTED_ITEM, |
|
143 'file' => 'blog.pages.inc', |
|
144 ); |
|
145 $items['blog/%user_uid_optional'] = array( |
|
146 'title' => 'My blog', |
|
147 'page callback' => 'blog_page_user', |
|
148 'page arguments' => array(1), |
|
149 'access callback' => 'blog_page_user_access', |
|
150 'access arguments' => array(1), |
|
151 'file' => 'blog.pages.inc', |
|
152 ); |
|
153 $items['blog/%user/feed'] = array( |
|
154 'title' => 'Blogs', |
|
155 'page callback' => 'blog_feed_user', |
|
156 'page arguments' => array(1), |
|
157 'access callback' => 'blog_page_user_access', |
|
158 'access arguments' => array(1), |
|
159 'type' => MENU_CALLBACK, |
|
160 'file' => 'blog.pages.inc', |
|
161 ); |
|
162 $items['blog/feed'] = array( |
|
163 'title' => 'Blogs', |
|
164 'page callback' => 'blog_feed_last', |
|
165 'access arguments' => array('access content'), |
|
166 'type' => MENU_CALLBACK, |
|
167 'file' => 'blog.pages.inc', |
|
168 ); |
|
169 |
|
170 return $items; |
|
171 } |
|
172 |
|
173 /** |
|
174 * Access callback for user blog pages. |
|
175 */ |
|
176 function blog_page_user_access($account) { |
|
177 // The visitor must be able to access the site's content. |
|
178 // For a blog to 'exist' the user must either be able to |
|
179 // create new blog entries, or it must have existing posts. |
|
180 return $account->uid && user_access('access content') && (user_access('create blog entries', $account) || _blog_post_exists($account)); |
|
181 } |
|
182 |
|
183 /** |
|
184 * Helper function to determine if a user has blog posts already. |
|
185 */ |
|
186 function _blog_post_exists($account) { |
|
187 return (bool)db_result(db_query_range(db_rewrite_sql("SELECT 1 FROM {node} n WHERE n.type = 'blog' AND n.uid = %d AND n.status = 1"), $account->uid, 0, 1)); |
|
188 } |
|
189 |
|
190 /** |
|
191 * Implementation of hook_block(). |
|
192 * |
|
193 * Displays the most recent 10 blog titles. |
|
194 */ |
|
195 function blog_block($op = 'list', $delta = 0) { |
|
196 global $user; |
|
197 if ($op == 'list') { |
|
198 $block[0]['info'] = t('Recent blog posts'); |
|
199 return $block; |
|
200 } |
|
201 else if ($op == 'view') { |
|
202 if (user_access('access content')) { |
|
203 $result = db_query_range(db_rewrite_sql("SELECT n.nid, n.title, n.created FROM {node} n WHERE n.type = 'blog' AND n.status = 1 ORDER BY n.created DESC"), 0, 10); |
|
204 if ($node_title_list = node_title_list($result)) { |
|
205 $block['content'] = $node_title_list; |
|
206 $block['content'] .= theme('more_link', url('blog'), t('Read the latest blog entries.')); |
|
207 $block['subject'] = t('Recent blog posts'); |
|
208 return $block; |
|
209 } |
|
210 } |
|
211 } |
|
212 } |
|
213 |