- dropped property "names" and changed getField to return localized Fields if specified. Dropped stupid getNameFieldName() in the process as it was now obsolete. - made property "matches" private. Access through getMatches() that will execute the query _only_ when needed (which is basically always anyway (so much for optimization)) SpellList: parsing - ""fixed"" behavior of the amount-switch $l when used on russian text. It has 3 options instead of 2, no idea what the last one is for though - fixed extra leading whitespace occuring when parsing formulas Lang: - removed offset from getMagicShools(), apparently it is unneeded :o Util: - changed the output of formatTime() in the long version to be more correct in layout - initialized values in parseTime() to prevent empty strings returned by formatTime() - added asBin() and asHex() - helper to improve display of bitmasks (Spells are coming!) - update Spell-Effects/Auras and added misc strings to display different MiscValue-content Filter: - removed escapes from $_POST-handler. If the input is erronous it should be corrected/ignored/noted by the $_GET-handler Smarty: - added optinal parameter to saveCache(), loadCache() to better handle filter variables Search: - changed $maxResults to 10 for OpenSearches in an effort to lower execution time and appied limits to all queries - changed result calculation for OpenSearch. It should now stick to it's limit of 10 results for the list - simplified WorldEvent search global.js: - backported function to parse title-tag of dfn-elements into mouseover-tooltips - shortened document.getElementByTagName(x) calls to gE(document, x)
105 lines
3.9 KiB
PHP
105 lines
3.9 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 TitleList(array(['id', $id]));
|
|
if ($title->error)
|
|
$smarty->notFound(Lang::$game['title']);
|
|
|
|
$title->addGlobalsToJscript($pageData);
|
|
$title->reset();
|
|
|
|
$infobox = [];
|
|
$colon = User::$localeId == LOCALE_FR ? ' : ' : ': '; // Je suis un prick! <_<
|
|
|
|
if ($title->getField('side') == SIDE_ALLIANCE)
|
|
$infobox[] = Lang::$main['side'].$colon.'[span class=alliance-icon]'.Lang::$game['si'][SIDE_ALLIANCE].'[/span]';
|
|
else if ($title->getField('side') == SIDE_HORDE)
|
|
$infobox[] = Lang::$main['side'].$colon.'[span class=horde-icon]'.Lang::$game['si'][SIDE_HORDE].'[/span]';
|
|
else
|
|
$infobox[] = Lang::$main['side'].$colon.Lang::$game['si'][SIDE_BOTH];
|
|
|
|
if ($g = $title->getField('gender'))
|
|
$infobox[] = Lang::$main['gender'].$colon.'[span class='.($g == 2 ? 'female' : 'male').'-icon]'.Lang::$main['sex'][$g].'[/span]';
|
|
|
|
if ($e = $title->getField('eventId'))
|
|
$infobox[] = Lang::$game['eventShort'].$colon.'[url=?event='.$e.']'.WorldEvent::getName($e).'[/url]';
|
|
|
|
$pageData = array(
|
|
'page' => array(
|
|
'name' => $title->getHtmlizedName(),
|
|
'id' => $id,
|
|
'expansion' => Util::$expansionString[$title->getField('expansion')]
|
|
),
|
|
'infobox' => '[li][ul]'.implode('[/ul][ul]', $infobox).'[/ul][/li]',
|
|
);
|
|
|
|
if (!empty($title->sources[$id]))
|
|
{
|
|
foreach ($title->sources[$id] as $type => $entries)
|
|
{
|
|
switch ($type)
|
|
{
|
|
case 4:
|
|
$quests = new QuestList(array(['id', $entries]));
|
|
$quests->addRewardsToJscript($pageData);
|
|
|
|
$pageData['page']['questReward'] = $quests->getListviewData();
|
|
$pageData['page']['questParams'] = array(
|
|
'id' => 'reward-from-quest',
|
|
'name' => '$LANG.tab_rewardfrom',
|
|
'hiddenCols' => "$['experience', 'money']",
|
|
'visibleCols' => "$['category']"
|
|
);
|
|
break;
|
|
case 12:
|
|
$acvs = new AchievementList(array(['id', $entries]));
|
|
$acvs->addGlobalsToJscript($pageData);
|
|
$acvs->addRewardsToJscript($pageData);
|
|
|
|
$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->getField('male', true)))));
|
|
$pageData['path'] = '[0, 10, '.$title->getField('category').']';
|
|
|
|
$smarty->saveCache($cacheKeyPage, $pageData);
|
|
}
|
|
|
|
$smarty->updatePageVars(array(
|
|
'title' => $pageData['title']." - ".ucfirst(Lang::$game['title']),
|
|
'path' => $pageData['path'],
|
|
'tab' => 0, // for g_initHeader($tab)
|
|
'type' => TYPE_TITLE, // 11:Titles
|
|
'typeId' => $id
|
|
));
|
|
|
|
|
|
$smarty->assign('community', CommunityContent::getAll(TYPE_TITLE, $id)); // comments, screenshots, videos
|
|
$smarty->assign('lang', array_merge(Lang::$main));
|
|
$smarty->assign('lvData', $pageData);
|
|
$smarty->assign('mysql', DB::Aowow()->getStatistics());
|
|
$smarty->display('title.tpl');
|
|
|
|
?>
|