blog_page_user

5 blog.module blog_page_user($uid)
6 blog.pages.inc blog_page_user($account)
7 blog.pages.inc blog_page_user($account)

Displays a Drupal page containing recent blog entries of a given user.

1 call to blog_page_user()

File

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

Code

function blog_page_user($uid) {
  global $user;

  $account = user_load(array((is_numeric($uid) ? 'uid' : 'name') => $uid, 'status' => 1));

  if ($account->uid) {
    drupal_set_title($title = t("@name's blog", array('@name' => $account->name)));

    if (($account->uid == $user->uid) && user_access('edit own blog')) {
      $output = '<li>' . l(t('Post new blog entry.'), "node/add/blog") . '</li>';
    }
    else if ($account->uid == $user->uid) {
      $output = '<li>' . t('You are not allowed to post a new blog entry.') . '</li>';
    }

    if ($output) {
      $output = '<ul>' . $output . '</ul>';
    }
    else {
      $output = '';
    }

    $result = pager_query(db_rewrite_sql("SELECT n.nid, n.sticky, n.created FROM {node} n WHERE n.type = 'blog' AND n.uid = %d AND n.status = 1 ORDER BY n.sticky DESC, n.created DESC"), variable_get('default_nodes_main', 10), 0, NULL, $account->uid);
    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/' . $account->uid . '/feed'), t('RSS - !title', array('!title' => $title)));

    return $output;
  }
  else {
    drupal_not_found();
  }
}
Login or register to post comments