mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
- moved search to /pages - moved g_dataKey to header.tpl and apply it on nessecary pages (restores TalentCalc) - Events: fixed relTabs with arbitrary data, when holidayId was 0 - CharClass: get heroClass-status through flags; dropped related DB-field - Achievements: fixed some criteria not being displayed in tooltips - Community: applied long forgotten changes to tplVars and use of uppercase ids - Titles: * exclude unused titles from listview * restored 'links'-button on detail-page - Quests: * added 'slain' fro proxy-npcs * use more wflags (&1 needs more research) - Factions: * fixed order of categories * fixed params to QuestList for relTabs - Profiler: * enabled 'profiles that have this char as source' in Profiler * removed the exampelChar from project * further documented more expected variables; includes/excludes-handling still not entirely clear * created datasets for reference data (create with ?build=profiler) - Localzation: * localized profiler for loc3 * corrected some single words * localized custom reward rate - table in factions - AjaxHandler: * new handler for ajax-requests *duh* * dropped data.php (index.php now calls to AjaxHandler for these cases) - moved reading of static files to own function Util::loadStaticFile()
149 lines
4.6 KiB
PHP
149 lines
4.6 KiB
PHP
<?php
|
|
|
|
define('AOWOW_REVISION', 12);
|
|
|
|
if (!file_exists('config/config.php'))
|
|
{
|
|
$cwDir = /*$_SERVER['DOCUMENT_ROOT']; //*/getcwd();
|
|
require 'setup/setup.php';
|
|
exit;
|
|
}
|
|
|
|
// include all necessities, set up basics
|
|
require 'includes/kernel.php';
|
|
|
|
if (version_compare(PHP_VERSION, '5.4.0') <= 0)
|
|
{
|
|
if (User::isInGroup(U_GROUP_EMPLOYEE))
|
|
$smarty->internalNotice(U_GROUP_EMPLOYEE, 'PHP Version 5.4.0 or higher required! Your version is '.PHP_VERSION."\nCore functions are unavailable!");
|
|
else
|
|
$smarty->brb();
|
|
}
|
|
|
|
if (CFG_MAINTENANCE && !User::isInGroup(U_GROUP_EMPLOYEE))
|
|
$smarty->brb();
|
|
else if (CFG_MAINTENANCE && User::isInGroup(U_GROUP_EMPLOYEE))
|
|
$smarty->internalNotice(U_GROUP_EMPLOYEE, 'Maintenance mode enabled!');
|
|
|
|
switch ($pageCall)
|
|
{
|
|
/* called by user */
|
|
case 'account': // account management [nyi]
|
|
case 'achievement':
|
|
case 'achievements':
|
|
// case 'arena-team':
|
|
// case 'arena-teams':
|
|
case 'class':
|
|
case 'classes':
|
|
case 'currency':
|
|
case 'currencies':
|
|
case 'compare': // tool: item comparison
|
|
case 'event':
|
|
case 'events':
|
|
case 'faction':
|
|
case 'factions':
|
|
// case 'guild':
|
|
// case 'guilds':
|
|
case 'item':
|
|
case 'items':
|
|
case 'itemset':
|
|
case 'itemsets':
|
|
case 'maps': // tool: map listing
|
|
case 'npc':
|
|
case 'npcs':
|
|
case 'object':
|
|
case 'objects':
|
|
case 'pet':
|
|
case 'pets':
|
|
case 'profile': // character profiler [nyi]
|
|
case 'profiles': // character profile listing [nyi]
|
|
case 'quest':
|
|
case 'quests':
|
|
case 'race':
|
|
case 'races':
|
|
case 'search': // tool: searches
|
|
case 'skill':
|
|
case 'skills':
|
|
// case 'sound': // db: sounds for zone, creature, spell, ...
|
|
// case 'sounds':
|
|
case 'spell':
|
|
case 'spells':
|
|
case 'title':
|
|
case 'titles':
|
|
case 'user': // tool: user profiles [nyi]
|
|
case 'zone':
|
|
case 'zones':
|
|
if (file_exists('pages/'.$pageCall.'.php'))
|
|
require 'pages/'.$pageCall.'.php';
|
|
else
|
|
$smarty->error();
|
|
break;
|
|
/* other pages */
|
|
case '': // no parameter given -> MainPage
|
|
require 'pages/main.php';
|
|
break;
|
|
case 'whats-new':
|
|
case 'searchplugins':
|
|
case 'searchbox':
|
|
case 'tooltips':
|
|
case 'help':
|
|
case 'faq':
|
|
case 'aboutus':
|
|
require 'pages/more.php';
|
|
break;
|
|
case 'latest-additions':
|
|
case 'latest-articles':
|
|
case 'latest-comments':
|
|
case 'latest-screenshots':
|
|
case 'latest-videos':
|
|
case 'unrated-comments':
|
|
case 'missing-screenshots':
|
|
case 'most-comments':
|
|
case 'random':
|
|
require 'pages/miscTools.php';
|
|
break;
|
|
case 'petcalc': // tool: pet talent calculator
|
|
$petCalc = true;
|
|
case 'talent': // tool: talent calculator
|
|
require 'pages/talent.php';
|
|
break;
|
|
/* called by script */
|
|
case 'data': // tool: dataset-loader
|
|
case 'cookie': // lossless cookies and user settings
|
|
case 'contactus':
|
|
case 'comment':
|
|
case 'locale': // subdomain-workaround, change the language
|
|
header('Content-type: application/x-javascript; charset=utf-8');
|
|
if (($_ = $ajax->handle($pageCall)) !== null)
|
|
die((string)$_);
|
|
|
|
break;
|
|
/* setup */
|
|
case 'build':
|
|
if (User::isInGroup(U_GROUP_EMPLOYEE))
|
|
{
|
|
require 'setup/tools/dataset/'.$pageParam.'.php';
|
|
break;
|
|
}
|
|
case 'sql':
|
|
if (User::isInGroup(U_GROUP_EMPLOYEE))
|
|
{
|
|
require 'setup/tools/database/_'.$pageParam.'.php';
|
|
break;
|
|
}
|
|
case 'setup':
|
|
if (User::isInGroup(U_GROUP_EMPLOYEE))
|
|
{
|
|
require 'setup/syncronize.php';
|
|
break;
|
|
}
|
|
default: // unk parameter given -> ErrorPage
|
|
if (isset($_GET['power']))
|
|
die('$WowheadPower.register(0, '.User::$localeId.', {})');
|
|
else // in conjunction with a propper rewriteRule in .htaccess...
|
|
$smarty->error();
|
|
break;
|
|
}
|
|
|
|
?>
|