public function getSidebar() { $value = ""; $value .= getRecentChanges(); $value .= getRecentBlogposts(); $value .= getStatisticsSidebar($this->db); return $value; }
public function getSidebar() { $value = ""; $value .= getStatisticsSidebar($this->db); $value .= "<h2>Tag lookup</h2>"; $value .= printTagLookup(10); $value .= "<p style='clear: both'>"; $value .= "<h2>Search</h2>"; $value .= getSimpleSearchForm(false, 10); return $value; }
public function getSidebar() { $value = ""; $value .= "<h2>Parts</h2>"; $value .= "<ol>"; foreach ($this->parts as $part) { $value .= "<li><a href='#" . partToIdentifier($part) . "'>" . $part . "</a>"; } $value .= "</ol>"; $value .= getStatisticsSidebar($this->db); return $value; }