Files
aowow/pages/quests.php
Sarjuuk 3a6c86092b Core/Compat
* create namespace Aowow to avoid naming conflicts
 * inclues/libs/ is outside of the Aowow namespace
2025-04-01 22:32:37 +02:00

139 lines
4.9 KiB
PHP

<?php
namespace Aowow;
if (!defined('AOWOW_REVISION'))
die('illegal access');
// menuId 3: Quest g_initPath()
// tabId 0: Database g_initHeader()
class QuestsPage extends GenericPage
{
use TrListPage;
protected $type = Type::QUEST;
protected $tpl = 'quests';
protected $path = [0, 3];
protected $tabId = 0;
protected $mode = CACHE_TYPE_PAGE;
protected $validCats = [];
protected $scripts = [[SC_JS_FILE, 'js/filters.js']];
protected $_get = ['filter' => ['filter' => FILTER_UNSAFE_RAW]];
public function __construct($pageCall, $pageParam)
{
$this->validCats = Game::$questClasses; // not allowed to set this as default
$this->getCategoryFromUrl($pageParam);
$this->filterObj = new QuestListFilter(false, ['parentCats' => $this->category]);
parent::__construct($pageCall, $pageParam);
$this->name = Util::ucFirst(Lang::game('quests'));
$this->subCat = $pageParam ? '='.$pageParam : '';
}
protected function generateContent()
{
$conditions = [];
if (!User::isInGroup(U_GROUP_EMPLOYEE))
$conditions[] = [['cuFlags', CUSTOM_EXCLUDE_FOR_LISTVIEW, '&'], 0];
if (isset($this->category[1]))
$conditions[] = ['zoneOrSort', $this->category[1]];
else if (isset($this->category[0]))
$conditions[] = ['zoneOrSort', $this->validCats[$this->category[0]]];
if ($_ = $this->filterObj->getConditions())
$conditions[] = $_;
$quests = new QuestList($conditions, ['extraOpts' => $this->filterObj->extraOpts, 'calcTotal' => true]);
$this->extendGlobalData($quests->getJSGlobals());
// recreate form selection
$this->filter = $this->filterObj->getForm();
$this->filter['query'] = $this->_get['filter'];
$this->filter['initData'] = ['init' => 'quests'];
$rCols = $this->filterObj->getReputationCols();
$xCols = $this->filterObj->getExtraCols();
if ($rCols)
$this->filter['initData']['rc'] = $rCols;
if ($xCols)
$this->filter['initData']['ec'] = $xCols;
if ($x = $this->filterObj->getSetCriteria())
$this->filter['initData']['sc'] = $x;
$tabData = ['data' => array_values($quests->getListviewData())];
if ($rCols)
$tabData['extraCols'] = '$fi_getReputationCols('.json_encode($rCols, JSON_NUMERIC_CHECK | JSON_UNESCAPED_UNICODE).')';
else if ($xCols)
$tabData['extraCols'] = '$fi_getExtraCols(fi_extraCols, 0, 0)';
// create note if search limit was exceeded
if ($quests->getMatches() > Cfg::get('SQL_LIMIT_DEFAULT'))
{
$tabData['note'] = sprintf(Util::$tryFilteringString, 'LANG.lvnote_questsfound', $quests->getMatches(), Cfg::get('SQL_LIMIT_DEFAULT'));
$tabData['_truncated'] = 1;
}
else if (isset($this->category[1]) && $this->category[1] > 0)
$tabData['note'] = '$$WH.sprintf(LANG.lvnote_questgivers, '.$this->category[1].', g_zones['.$this->category[1].'], '.$this->category[1].')';
if ($this->filterObj->error)
$tabData['_errors'] = 1;
$this->lvTabs[] = [QuestList::$brickFile, $tabData];
}
protected function generateTitle()
{
array_unshift($this->title, $this->name);
if (isset($this->category[1]))
array_unshift($this->title, Lang::quest('cat', $this->category[0], $this->category[1]));
else if (isset($this->category[0]))
{
$c0 = Lang::quest('cat', $this->category[0]);
array_unshift($this->title, is_array($c0) ? $c0[0] : $c0);
}
}
protected function generatePath()
{
foreach ($this->category as $c)
$this->path[] = $c;
$hubs = array(
// Quest Hubs
3679 => 3519, 4024 => 3537, 25 => 46, 1769 => 361,
// Startzones: Horde
132 => 1, 9 => 12, 3431 => 3430, 154 => 85,
// Startzones: Alliance
3526 => 3524, 363 => 14, 220 => 215, 188 => 141,
// Group: Caverns of Time
2366 => 1941, 2367 => 1941, 4100 => 1941,
// Group: Hellfire Citadell
3562 => 3535, 3713 => 3535, 3714 => 3535,
// Group: Auchindoun
3789 => 3688, 3790 => 3688, 3791 => 3688, 3792 => 3688,
// Group: Tempest Keep
3847 => 3842, 3848 => 3842, 3849 => 3842,
// Group: Coilfang Reservoir
3715 => 3905, 3716 => 3905, 3717 => 3905,
// Group: Icecrown Citadel
4809 => 4522, 4813 => 4522, 4820 => 4522
);
if (isset($this->category[1]) && isset($hubs[$this->category[1]]))
array_splice($this->path, 3, 0, $hubs[$this->category[1]]);
}
}
?>