mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
- rewrote currencies, achievements, events, factions - GenericPage: * moved more checks from Util * structured and commented GenericPage to be easier to comprehend * added GenericPage::postCache() to modify cached data before display (e.g. update time for events) - fixed: * parsing events from markdown (e.g. articles) * huge padding of minibox headings (css) * Loot passing jsGlobals to template * ItemList::getExtendedCost passing jsGlobals to template * categories for factions * conflicting GenericPage::$subject when displaying 'notFound' * load of typos
91 lines
2.5 KiB
PHP
91 lines
2.5 KiB
PHP
<?php
|
|
|
|
if (!defined('AOWOW_REVISION'))
|
|
die('illegal access');
|
|
|
|
|
|
// menuId 5: Object g_initPath()
|
|
// tabId 0: Database g_initHeader()
|
|
class ObjectsPage extends GenericPage
|
|
{
|
|
use ListPage;
|
|
|
|
protected $type = TYPE_OBJECT;
|
|
protected $tpl = 'objects';
|
|
protected $path = [0, 5];
|
|
protected $tabId = 0;
|
|
protected $mode = CACHETYPE_PAGE;
|
|
protected $validCats = [-2, -3, -4, -5, -6, 0, 3, 9, 25];
|
|
protected $js = ['filters.js'];
|
|
|
|
public function __construct($pageCall, $pageParam)
|
|
{
|
|
$this->getCategoryFromUrl($pageParam);;
|
|
|
|
parent::__construct();
|
|
|
|
$this->name = Util::ucFirst(Lang::$game['gameObjects']);
|
|
$this->subCat = $pageParam ? '='.$pageParam : '';
|
|
}
|
|
|
|
protected function generateContent()
|
|
{
|
|
$conditions = [];
|
|
|
|
if ($this->category)
|
|
$conditions[] = ['typeCat', (int)$this->category[0]];
|
|
|
|
$objectFilter = new GameObjectListFilter();
|
|
|
|
// recreate form selection
|
|
$this->filter = $objectFilter->getForm('form');
|
|
$this->filter['query'] = isset($_GET['filter']) ? $_GET['filter'] : null;
|
|
$this->filter['fi'] = $objectFilter->getForm();
|
|
|
|
if ($_ = $objectFilter->getConditions())
|
|
$conditions[] = $_;
|
|
|
|
$params = $data = [];
|
|
$objects = new GameObjectList($conditions, ['extraOpts' => $objectFilter->extraOpts]);
|
|
if (!$objects->error)
|
|
{
|
|
$data = $objects->getListviewData();
|
|
if ($objects->hasSetFields(['reqSkill']))
|
|
$params['visibleCols'] = "$['skill']";
|
|
|
|
|
|
// create note if search limit was exceeded
|
|
if ($objects->getMatches() > CFG_SQL_LIMIT_DEFAULT)
|
|
{
|
|
$params['note'] = sprintf(Util::$tryFilteringString, 'LANG.lvnote_objectsfound', $objects->getMatches(), CFG_SQL_LIMIT_DEFAULT);
|
|
$params['_truncated'] = 1;
|
|
}
|
|
|
|
if ($objectFilter->error)
|
|
$params['_errors'] = '$1';
|
|
|
|
}
|
|
|
|
$this->lvData = array(
|
|
'file' => 'object',
|
|
'data' => $data,
|
|
'params' => $params
|
|
);
|
|
}
|
|
|
|
protected function generateTitle()
|
|
{
|
|
array_unshift($this->title, $this->name);
|
|
if ($this->category)
|
|
array_unshift($this->title, Lang::$gameObject['cat'][$this->category[0]]);
|
|
}
|
|
|
|
protected function generatePath()
|
|
{
|
|
if ($this->category)
|
|
$this->path[] = $this->category[0];
|
|
}
|
|
}
|
|
|
|
?>
|