Пример #1
0
 /**
  * Load the data
  */
 private function loadData()
 {
     // get the current page id
     $pageId = Spoon::get('page')->getId();
     // fetch the items
     $this->items = FrontendPagesModel::getSubpages($pageId);
 }
Пример #2
0
 /**
  * Load the data
  */
 private function loadData()
 {
     // get the current page id
     if (!SITE_MULTILANGUAGE) {
         $pageId = FrontendNavigation::getPageId($this->URL->getQueryString());
     } else {
         $pageId = FrontendNavigation::getPageId(substr($this->URL->getQueryString(), 3));
     }
     // fetch the items
     $this->items = FrontendPagesModel::getSubpages($pageId);
 }