コード例 #1
0
ファイル: PageModel.php プロジェクト: laiello/cootheme2
 public function getPageTree($root_id = 0)
 {
     $page_arr = $this->getAll();
     return PageDataHelper::buildPageTree($page_arr, $root_id);
     //return $page_arr;
 }
コード例 #2
0
ファイル: Page.php プロジェクト: laiello/cootheme2
 public function getComments($args = array())
 {
     $comments = PageDataHelper::getComments($this->properties['id'], $args);
     $this->properties['comments'] = $comments;
     return $comments;
 }