mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
(is now a lot closer to the original, shouldn't require updating new scripts as the structure should fit) also some minor bugfixes
28 lines
624 B
PHP
28 lines
624 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'
|
|
)
|
|
));
|
|
$smarty->assign('lang', array_merge(Lang::$main, Lang::$maps));
|
|
|
|
// load the page
|
|
$smarty->display('maps.tpl');
|
|
|
|
?>
|