mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
simple listview-pages now use one shared template (instead of having the same file multiple times) some bug fixing here and there - achievement: faction is no longer out of range (need to reparse the faction :/) - item: quality is prepended to the name again and wont be left out in case of heirlooms (is 0) - general: forgot to change some error()-calls in index - and some more wich i forgot..
94 lines
2.5 KiB
PHP
94 lines
2.5 KiB
PHP
<?php
|
|
|
|
if (!defined('AOWOW_REVISION'))
|
|
die('illegal access');
|
|
|
|
|
|
$cat = Util::extractURLParams($pageParam)[0];
|
|
$condition = [];
|
|
$path = [0, 11];
|
|
$validCats = [0, 1, 2, 3];
|
|
$title = [Lang::$game['events']];
|
|
$cacheKey = implode('_', [CACHETYPE_PAGE, TYPE_WORLDEVENT, -1, $cat, User::$localeId]);
|
|
|
|
if (!in_array($cat, $validCats))
|
|
$smarty->error();
|
|
|
|
$path[] = $cat;
|
|
|
|
if (isset($cat))
|
|
array_unshift($title, Lang::$event['category'][$cat]);
|
|
|
|
if (!$smarty->loadCache($cacheKey, $pageData))
|
|
{
|
|
if ($cat !== null)
|
|
{
|
|
switch ($cat)
|
|
{
|
|
case 0:
|
|
$condition[] = ['e.holidayId', 0];
|
|
break;
|
|
case 1:
|
|
$condition[] = ['h.scheduleType', -1];
|
|
break;
|
|
case 2:
|
|
$condition[] = ['h.scheduleType', [0, 1]];
|
|
break;
|
|
case 3:
|
|
$condition[] = ['h.scheduleType', 2];
|
|
break;
|
|
}
|
|
}
|
|
|
|
$events = new WorldEventList($condition);
|
|
|
|
$deps = [];
|
|
while ($events->iterate())
|
|
if ($d = $events->getField('requires'))
|
|
$deps[$events->id] = $d;
|
|
|
|
$pageData = array(
|
|
'file' => 'event',
|
|
'data' => $events->getListviewData(),
|
|
'deps' => $deps,
|
|
'calendar' => false, // todo: fix it Felix!
|
|
'params' => array(
|
|
'tabs' => '$myTabs'
|
|
)
|
|
);
|
|
|
|
$events->addGlobalsToJScript($pageData);
|
|
|
|
$smarty->saveCache($cacheKey, $pageData);
|
|
}
|
|
|
|
// recalculate dates with now(); can't be cached, obviously
|
|
foreach ($pageData['data'] as &$data)
|
|
{
|
|
// is a followUp-event
|
|
if (!empty($pageData['deps'][$data['id']]))
|
|
{
|
|
$data['startDate'] = $data['endDate'] = false;
|
|
continue;
|
|
}
|
|
|
|
$updated = WorldEventList::updateDates($data['startDate'], $data['endDate'], $data['rec']);
|
|
$data['startDate'] = $updated['start'] ? date(Util::$dateFormatLong, $updated['start']) : false;
|
|
$data['endDate'] = $updated['end' ] ? date(Util::$dateFormatLong, $updated['end']) : false;
|
|
}
|
|
|
|
|
|
$page = array(
|
|
'tab' => 0, // for g_initHeader($tab)
|
|
'title' => implode(" - ", $title),
|
|
'path' => "[".implode(", ", $path)."]"
|
|
);
|
|
|
|
$smarty->updatePageVars($page);
|
|
$smarty->assign('lang', Lang::$main);
|
|
$smarty->assign('mysql', DB::Aowow()->getStatistics());
|
|
$smarty->assign('lvData', $pageData);
|
|
$smarty->display('generic-no-filter.tpl');
|
|
|
|
?>
|