aowow/pages/maps.php
Sarjuuk 41180e514c work against profiler
- implemented some session-token to limit access to profile data
 - researched structure to send onDemand data (still some minor bugs to iron out)
 - rewrote spells' access to model data and killed a redundant instance of ItemList
2014-03-28 10:37:19 +01:00

27 lines
675 B
PHP

<?php
if (!defined('AOWOW_REVISION'))
die('illegal access');
// tabId 1: Tools g_initHeader()
$smarty->updatePageVars(array(
'title' => Lang::$maps['maps'],
'tab' => 1,
'reqCSS' => array(
['string' => 'zone-picker { margin-left: 4px }'],
['path' => 'static/css/Mapper.css'],
['path' => 'static/css/Mapper_ie6.css', 'ieCond' => 'lte IE 6']
),
'reqJS' => array(
'static/js/maps.js',
'static/js/Mapper.js',
'?data=zones&locale='.User::$localeId.'&t='.$_SESSION['dataKey']
)
));
$smarty->assign('lang', array_merge(Lang::$main, Lang::$maps));
// load the page
$smarty->display('maps.tpl');
?>