mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
- file inclusion:
- now only require without brackets
- classes for ListTypes are auto-loaded
- (minor) empty array to new syntax (php5+)
116 lines
4.7 KiB
PHP
116 lines
4.7 KiB
PHP
<?php
|
|
|
|
if (!defined('AOWOW_REVISION'))
|
|
die('illegal access');
|
|
|
|
|
|
require 'includes/class.community.php';
|
|
|
|
$Id = intVal($pageParam);
|
|
|
|
$cacheKeyPage = implode('_', [CACHETYPE_PAGE, TYPE_TITLE, $Id, -1, User::$localeId]);
|
|
|
|
if (!$smarty->loadCache($cacheKeyPage, $pageData))
|
|
{
|
|
$title = new Title($Id);
|
|
if ($title->template)
|
|
{
|
|
$title->addGlobalsToJScript($pageData['gTitles']);
|
|
|
|
$infobox = [];
|
|
$colon = User::$localeId == LOCALE_FR ? ' : ' : ': '; // Je suis un prick! <_<
|
|
if ($title->template['side'] == 1)
|
|
$infobox[] = Lang::$main['side'].$colon.'[span class=alliance-icon]'.Lang::$game['alliance'].'[/span]';
|
|
else if ($title->template['side'] == 2)
|
|
$infobox[] = Lang::$main['side'].$colon.'[span class=horde-icon]'.Lang::$game['horde'].'[/span]';
|
|
else
|
|
$infobox[] = Lang::$main['side'].$colon.Lang::$main['both'];
|
|
|
|
if ($title->template['gender'])
|
|
$infobox[] = Lang::$main['gender'].$colon.'[span class='.($title->template['gender'] == 2 ? 'female' : 'male').'-icon]'.Lang::$main['sex'][$title->template['gender']].'[/span]';
|
|
|
|
if ($title->template['eventId'])
|
|
$infobox[] = Lang::$game['eventShort'].$colon.'[url=?event='.$title->template['eventId'].']'.WorldEvent::getName($title->template['eventId']).'[/url]';
|
|
|
|
$pageData = array(
|
|
'page' => array(
|
|
'name' => $title->getHtmlizedName(),
|
|
'id' => $title->Id,
|
|
'expansion' => Util::$expansionString[$title->template['expansion']]
|
|
),
|
|
'infobox' => '[li][ul]'.implode('[/ul][ul]', $infobox).'[/ul][/li]',
|
|
);
|
|
|
|
foreach ($title->source as $type => $entries)
|
|
{
|
|
// todo: hidden-/visibleCols by actual use
|
|
switch ($type)
|
|
{
|
|
case 4:
|
|
$quests = new QuestList(array(['id', $entries]));
|
|
$quests->addRewardsToJscript($pageData['gItems'], $pageData['gSpells'], $pageData['gTitles']);
|
|
|
|
$pageData['page']['questReward'] = $quests->getListviewData();
|
|
$pageData['page']['questParams'] = array(
|
|
'id' => 'reward-from-quest',
|
|
'name' => '$LANG.tab_rewardfrom',
|
|
'hiddenCols' => "$['side']",
|
|
'visibleCols' => "$['category']"
|
|
);
|
|
break;
|
|
case 12:
|
|
$acvs = new AchievementList(array(['id', $entries]));
|
|
$acvs->addGlobalsToJScript($pageData['gAchievements']);
|
|
$acvs->addRewardsToJscript($pageData['gItems'], $pageData['gTitles']);
|
|
|
|
$pageData['page']['acvReward'] = $acvs->getListviewData();
|
|
$pageData['page']['acvParams'] = array(
|
|
'id' => 'reward-from-achievement',
|
|
'name' => '$LANG.tab_rewardfrom',
|
|
'visibleCols' => "$['category']",
|
|
'sort' => "$['reqlevel', 'name']"
|
|
);
|
|
break;
|
|
case 13:
|
|
// not displayed
|
|
}
|
|
}
|
|
$pageData['title'] = ucFirst(trim(str_replace('%s', '', str_replace(',', '', $title->name[0]))));
|
|
|
|
$smarty->saveCache($cacheKeyPage, $pageData);
|
|
}
|
|
else
|
|
{
|
|
$smarty->updatePageVars(array(
|
|
'subject' => ucfirst(Lang::$game['title']),
|
|
'id' => $Id,
|
|
'notFound' => sprintf(Lang::$main['pageNotFound'], Lang::$game['title']),
|
|
));
|
|
$smarty->assign('lang', Lang::$main);
|
|
$smarty->display('404.tpl');
|
|
exit();
|
|
}
|
|
}
|
|
|
|
$smarty->updatePageVars(array(
|
|
'title' => $pageData['title']." - ".ucfirst(Lang::$game['title']),
|
|
'path' => "[0, 10, ".$title->template['category']."]",
|
|
'tab' => 0, // for g_initHeader($tab)
|
|
'type' => TYPE_TITLE, // 11:Titles
|
|
'typeId' => $Id
|
|
));
|
|
|
|
// Announcements
|
|
$announcements = DB::Aowow()->Select('SELECT * FROM ?_announcements WHERE flags & 0x10 AND (page = "title" OR page = "*")');
|
|
foreach ($announcements as $k => $v)
|
|
$announcements[$k]['text'] = Util::localizedString($v, 'text');
|
|
|
|
$smarty->assign('community', CommunityContent::getAll(TYPE_TITLE, $Id)); // comments, screenshots, videos
|
|
$smarty->assign('lang', array_merge(Lang::$main));
|
|
$smarty->assign('data', $pageData);
|
|
$smarty->assign('mysql', DB::Aowow()->getStatistics());
|
|
$smarty->assign('announcements', $announcements);
|
|
$smarty->display('title.tpl');
|
|
|
|
?>
|