/**
  * Renders a link that points to a complete list of blog entries
  * @return string HTML of link. 
  */
 public function renderShowAll()
 {
     if (!$this->getOption('showall')) {
         return '';
     }
     $sOut = $this->renderLink(array('href' => BsCore::getRequestURI(), 'query' => 'showall=true', 'title' => wfMessage('bs-blog-show-all')->plain()), wfMessage('bs-blog-show-all')->plain());
     return $sOut;
 }