source: sipes/cord/modules/blog/blog.module @ 8a8efa8

stableversion-3.0
Last change on this file since 8a8efa8 was b354002, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio del cord

  • Propiedad mode establecida a 100755
File size: 8.7 KB
Línea 
1<?php
2
3/**
4 * @file
5 * Enables keeping an easily and regularly updated web page or a blog.
6 */
7
8/**
9 * Implementation of hook_node_info().
10 */
11function blog_node_info() {
12  return array(
13    'blog' => array(
14      'name' => t('Blog entry'),
15      'module' => 'blog',
16      'description' => t('A <em>blog entry</em> is a single post to an online journal, or <em>blog</em>.'),
17    )
18  );
19}
20
21/**
22 * Implementation of hook_perm().
23 */
24function blog_perm() {
25  return array('create blog entries', 'delete own blog entries', 'delete any blog entry', 'edit own blog entries', 'edit any blog entry');
26}
27
28/**
29 * Implementation of hook_access().
30 */
31function blog_access($op, $node, $account) {
32  switch ($op) {
33    case 'create':
34      // Anonymous users cannot post even if they have the permission.
35      return user_access('create blog entries', $account) && $account->uid ? TRUE : NULL;
36    case 'update':
37      return user_access('edit any blog entry', $account) || (user_access('edit own blog entries', $account) && ($node->uid == $account->uid)) ? TRUE : NULL;
38    case 'delete':
39      return user_access('delete any blog entry', $account) || (user_access('delete own blog entries', $account) && ($node->uid == $account->uid)) ? TRUE : NULL;
40  }
41}
42
43/**
44 * Implementation of hook_user().
45 */
46function blog_user($type, &$edit, &$user) {
47  if ($type == 'view' && user_access('create blog entries', $user)) {
48    $user->content['summary']['blog'] =  array(
49      '#type' => 'user_profile_item',
50      '#title' => t('Blog'),
51      // l() escapes the attributes, so we should not escape !username here.
52      '#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))))),
53      '#attributes' => array('class' => 'blog'),
54    );
55  }
56}
57
58/**
59 * Implementation of hook_help().
60 */
61function blog_help($path, $arg) {
62  switch ($path) {
63    case 'admin/help#blog':
64      $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>';
65      $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>';
66      $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>';
67      $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>';
68      $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>';
69      return $output;
70  }
71}
72
73/**
74 * Implementation of hook_form().
75 */
76function blog_form(&$node) {
77  global $nid;
78  $iid = isset($_GET['iid']) ? (int)$_GET['iid'] : 0;
79  $type = node_get_types('type', $node);
80
81
82  if (empty($node->body)) {
83    // If the user clicked a "blog it" link, we load the data from the
84    // database and quote it in the blog.
85    if ($nid && $blog = node_load($nid)) {
86      $node->body = '<em>'. $blog->body .'</em> ['. l($blog->name, "node/$nid") .']';
87    }
88
89    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))) {
90      $node->title = $item->title;
91      // Note: $item->description has been validated on aggregation.
92      $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";
93    }
94
95  }
96
97  $form['title'] = array('#type' => 'textfield', '#title' => check_plain($type->title_label), '#required' => TRUE, '#default_value' => !empty($node->title) ? $node->title : NULL, '#weight' => -5);
98  $form['body_field'] = node_body_field($node, $type->body_label, $type->min_word_count);
99  return $form;
100}
101
102/**
103 * Implementation of hook_view().
104 */
105function blog_view($node, $teaser = FALSE, $page = FALSE) {
106  if ($page) {
107    // Breadcrumb navigation. l() escapes the title, so we should not escape !name.
108    drupal_set_breadcrumb(array(l(t('Home'), NULL), l(t('Blogs'), 'blog'), l(t("!name's blog", array('!name' => $node->name)), 'blog/'. $node->uid)));
109  }
110  return node_prepare($node, $teaser);
111}
112
113/**
114 * Implementation of hook_link().
115 */
116function blog_link($type, $node = NULL, $teaser = FALSE) {
117  $links = array();
118
119  if ($type == 'node' && $node->type == 'blog') {
120    if (arg(0) != 'blog' || arg(1) != $node->uid) {
121      // This goes to l() and therefore escapes !username in both the title and attributes.
122      $links['blog_usernames_blog'] = array(
123        'title' => t("!username's blog", array('!username' => $node->name)),
124        'href' => "blog/$node->uid",
125        'attributes' => array('title' => t("Read !username's latest blog entries.", array('!username' => $node->name)))
126      );
127    }
128  }
129
130  return $links;
131}
132
133/**
134 * Implementation of hook_menu().
135 */
136function blog_menu() {
137  $items['blog'] = array(
138    'title' => 'Blogs',
139    'page callback' => 'blog_page_last',
140    'access arguments' => array('access content'),
141    'type' => MENU_SUGGESTED_ITEM,
142    'file' => 'blog.pages.inc',
143  );
144  $items['blog/%user_uid_optional'] = array(
145    'title' => 'My blog',
146    'page callback' => 'blog_page_user',
147    'page arguments' => array(1),
148    'access callback' => 'blog_page_user_access',
149    'access arguments' => array(1),
150    'file' => 'blog.pages.inc',
151  );
152  $items['blog/%user/feed'] = array(
153    'title' => 'Blogs',
154    'page callback' => 'blog_feed_user',
155    'page arguments' => array(1),
156    'access callback' => 'blog_page_user_access',
157    'access arguments' => array(1),
158    'type' => MENU_CALLBACK,
159    'file' => 'blog.pages.inc',
160  );
161  $items['blog/feed'] = array(
162    'title' => 'Blogs',
163    'page callback' => 'blog_feed_last',
164    'access arguments' => array('access content'),
165    'type' => MENU_CALLBACK,
166    'file' => 'blog.pages.inc',
167  );
168
169  return $items;
170}
171
172/**
173 * Access callback for user blog pages.
174 */
175function blog_page_user_access($account) {
176  // The visitor must be able to access the site's content.
177  // For a blog to 'exist' the user must either be able to
178  // create new blog entries, or it must have existing posts.
179  return $account->uid && user_access('access content') && (user_access('create blog entries', $account) || _blog_post_exists($account));
180}
181
182/**
183 * Helper function to determine if a user has blog posts already.
184 */
185function _blog_post_exists($account) {
186  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));
187}
188
189/**
190 * Implementation of hook_block().
191 *
192 * Displays the most recent 10 blog titles.
193 */
194function blog_block($op = 'list', $delta = 0) {
195  global $user;
196  if ($op == 'list') {
197    $block[0]['info'] = t('Recent blog posts');
198    return $block;
199  }
200  else if ($op == 'view') {
201    if (user_access('access content')) {
202      $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);
203      if ($node_title_list = node_title_list($result)) {
204        $block['content'] = $node_title_list;
205        $block['content'] .= theme('more_link', url('blog'), t('Read the latest blog entries.'));
206        $block['subject'] = t('Recent blog posts');
207        return $block;
208      }
209    }
210  }
211}
212
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.