예제 #1
0
파일: comments.php 프로젝트: baardev/lbtb
 protected function loadblogSections()
 {
     $blogSectionList = new PageList();
     $blogSectionList->filterByBlogSection(1);
     $blogSectionList->sortBy('cvName', 'asc');
     $tmpSections = $blogSectionList->get();
     $sections = array();
     foreach ($tmpSections as $_c) {
         $sections[$_c->getCollectionID()] = $_c->getCollectionName();
     }
     $this->set('sections', $sections);
 }