mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
- removed web-setup - new CLI parameters --account : create initial account(s) --siteconfig : edit php/aowow config values --dbconfig : set up db connection --sql : create db content from world/dbc-tables --firstrun : [NYI] step by step initial setup - some fixes by the wayside * display required arena bracket for extendedCost * achievement chains are searchable again * category trees for factions should now be correct * trainer tab on spell detail page reapeared * userMenu item 'Settings' no longer breaks the page * display abilities of shapeshift in tab on spell detail page * corrected reading ?_sourcestrings for titles * fixed error on race detail page * added simple descriptions to skill detail page * fixed tab "reward from" (achievement) on title detail page * fixed alphabetical order of some filter-dropdowns * fixed skill colors for spells * fixed power display for rune-based spells, that also cost mana * added more information to zones * also check mail_loot_template for achivements * fixed bug, where loot_template-ids would be reused for multiple templates * display sourcemore for pvp-sources
107 lines
3.2 KiB
PHP
107 lines
3.2 KiB
PHP
<?php
|
|
|
|
if (!defined('AOWOW_REVISION'))
|
|
die('illegal access');
|
|
|
|
|
|
// menuId 4: NPC g_initPath()
|
|
// tabId 0: Database g_initHeader()
|
|
class NpcsPage extends GenericPage
|
|
{
|
|
use ListPage;
|
|
|
|
protected $type = TYPE_NPC;
|
|
protected $tpl = 'npcs';
|
|
protected $path = [0, 4];
|
|
protected $tabId = 0;
|
|
protected $mode = CACHE_TYPE_PAGE;
|
|
protected $validCats = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13];
|
|
protected $js = ['filters.js'];
|
|
|
|
public function __construct($pageCall, $pageParam)
|
|
{
|
|
$this->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();
|
|
|
|
$lv = array(
|
|
'file' => 'creature',
|
|
'data' => $npcs->getListviewData(), // listview content
|
|
'params' => []
|
|
);
|
|
|
|
if (!empty($this->filter['fi']['extraCols']))
|
|
$lv['params']['extraCols'] = '$fi_getExtraCols(fi_extraCols, 0, 0)';
|
|
|
|
if ($this->category)
|
|
$lv['params']['hiddenCols'] = "$['type']";
|
|
|
|
// create note if search limit was exceeded
|
|
if ($npcs->getMatches() > CFG_SQL_LIMIT_DEFAULT)
|
|
{
|
|
$lv['params']['note'] = sprintf(Util::$tryFilteringString, 'LANG.lvnote_npcsfound', $npcs->getMatches(), CFG_SQL_LIMIT_DEFAULT);
|
|
$lv['params']['_truncated'] = 1;
|
|
}
|
|
|
|
if ($this->filterObj->error)
|
|
$lv['params']['_errors'] = '$1';
|
|
|
|
$this->lvTabs[] = $lv;
|
|
|
|
// 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'];
|
|
}
|
|
}
|
|
|
|
?>
|