Esempio n. 1
0
 /**
  * Display Hotaru forums feed on Admin front page
  *
  * @param int $max_items
  * @param int $items_with_content
  * @param int $max_chars
  */
 public function adminNews($max_items = 10, $items_with_content = 3, $max_chars = 300)
 {
     require_once LIBS . 'Feeds.php';
     $feeds = new Feeds();
     $feeds->adminNews($this->lang, $max_items, $items_with_content, $max_chars);
 }