コード例 #1
0
 private function get_links()
 {
     $network = new Network();
     $condition = array('keyword' => $this->keyword, 'month' => $this->month);
     $this->Paging["count"] = MessageBoard::get_all_network_forum($cnt = TRUE);
     $contents = MessageBoard::get_all_network_forum($cnt = FALSE, $this->Paging["show"], $this->Paging["page"], 'created', 'DESC');
     $contents_link = $this->manage_content($contents);
     $this->links = $contents_link;
     return $this->links;
 }