You are here

function blog_page_last in Drupal 5

Same name and namespace in other branches
  1. 4 modules/blog.module \blog_page_last()
  2. 6 modules/blog/blog.pages.inc \blog_page_last()
  3. 7 modules/blog/blog.pages.inc \blog_page_last()

Displays a Drupal page containing recent blog entries of all users.

1 call to blog_page_last()
blog_page in modules/blog/blog.module
Menu callback; displays a Drupal page containing recent blog entries.

File

modules/blog/blog.module, line 167
Enables keeping an easily and regularly updated web page or a blog.

Code

function blog_page_last() {
  global $user;
  $output = '';
  $result = pager_query(db_rewrite_sql("SELECT n.nid, n.created FROM {node} n WHERE n.type = 'blog' AND n.status = 1 ORDER BY n.sticky DESC, n.created DESC"), variable_get('default_nodes_main', 10));
  while ($node = db_fetch_object($result)) {
    $output .= node_view(node_load($node->nid), 1);
  }
  $output .= theme('pager', NULL, variable_get('default_nodes_main', 10));
  drupal_add_feed(url('blog/feed'), t('RSS - blogs'));
  return $output;
}