countItems($key); } public function reindex() { global $pages; // Foreach category foreach ($this->db as $key=>$value) { $this->db[$key]['list'] = array(); } // Get pages database $db = $pages->getDB(false); foreach ($db as $pageKey=>$pageFields) { if (!empty($pageFields['category'])) { $categoryKey = $pageFields['category']; if (isset($this->db[$categoryKey]['list'])) { if ( ($db[$pageKey]['type']=='published') || ($db[$pageKey]['type']=='sticky') || ($db[$pageKey]['type']=='static') ) { array_push($this->db[$categoryKey]['list'], $pageKey); } } } } return $this->save(); } public function getLinkList($hideEmpty, $showCount, $class = "", $classActive = "active") { $listLink = array(); foreach ($this->db as $pageKey=>$pageFields) { $count = count($pageFields['list']); if ( (!$hideEmpty || $count > 0) ) { $link = DOMAIN_CATEGORIES . $pageKey; $name = $pageFields['name'] . ($showCount ? ' (' . $count . ')' : ''); $listLink[] = new Link($name, $link, $class, $classActive); } } return $listLink; } }