filterObj = new CreatureListFilter(); $this->getCategoryFromUrl($pageParam);; parent::__construct($pageCall, $pageParam); $this->name = Util::ucFirst(Lang::game('npcs')); $this->subCat = $pageParam ? '='.$pageParam : ''; } protected function generateContent() { $this->addJS('?data=zones&locale='.User::$localeId.'&t='.$_SESSION['dataKey']); $conditions = []; if (!User::isInGroup(U_GROUP_EMPLOYEE)) $conditions[] = [['cuFlags', CUSTOM_EXCLUDE_FOR_LISTVIEW, '&'], 0]; if ($this->category) { $conditions[] = ['type', $this->category[0]]; $this->petFamPanel = $this->category[0] == 1; } else $this->petFamPanel = false; if ($_ = $this->filterObj->getConditions()) $conditions[] = $_; // beast subtypes are selected via filter $npcs = new CreatureList($conditions, ['extraOpts' => $this->filterObj->extraOpts]); // recreate form selection $this->filter = array_merge($this->filterObj->getForm('form'), $this->filter); $this->filter['query'] = isset($_GET['filter']) ? $_GET['filter'] : NULL; $this->filter['fi'] = $this->filterObj->getForm(); $repCols = $this->filterObj->getForm('reputationCols'); $tabData = array( 'data' => array_values($npcs->getListviewData($repCols ? NPCINFO_REP : 0x0)), ); if ($repCols) $tabData['extraCols'] = '$fi_getReputationCols('.Util::toJSON($repCols).')'; else if (!empty($this->filter['fi']['extraCols'])) $tabData['extraCols'] = '$fi_getExtraCols(fi_extraCols, 0, 0)'; if ($this->category) $tabData['hiddenCols'] = ['type']; // create note if search limit was exceeded if ($npcs->getMatches() > CFG_SQL_LIMIT_DEFAULT) { $tabData['note'] = sprintf(Util::$tryFilteringString, 'LANG.lvnote_npcsfound', $npcs->getMatches(), CFG_SQL_LIMIT_DEFAULT); $tabData['_truncated'] = 1; } if ($this->filterObj->error) $tabData['_errors'] = 1; $this->lvTabs[] = ['creature', $tabData]; // sort for dropdown-menus Lang::sort('game', 'fa'); } protected function generateTitle() { array_unshift($this->title, $this->name); if ($this->category) array_unshift($this->title, Lang::npc('cat', $this->category[0])); } protected function generatePath() { if ($this->category) $this->path[] = $this->category[0]; $form = $this->filterObj->getForm('form'); if (isset($form['fa']) && !is_array($form['fa'])) $this->path[] = $form['fa']; } } ?>