Files
aowow/pages/maps.php
Sarjuuk 3a6c86092b Core/Compat
* create namespace Aowow to avoid naming conflicts
 * inclues/libs/ is outside of the Aowow namespace
2025-04-01 22:32:37 +02:00

43 lines
895 B
PHP

<?php
namespace Aowow;
if (!defined('AOWOW_REVISION'))
die('illegal access');
// tabId 1: Tools g_initHeader()
class MapsPage extends GenericPage
{
protected $tpl = 'maps';
protected $tabId = 1;
protected $path = [1, 1];
protected $mode = CACHE_TYPE_NONE;
protected $scripts = array(
[SC_JS_FILE, 'js/maps.js'],
[SC_CSS_STRING, 'zone-picker { margin-left: 4px }']
);
public function __construct($pageCall, $__)
{
parent::__construct($pageCall, $__);
$this->name = Lang::maps('maps');
}
protected function generateContent()
{
// add conditional js
$this->addScript([SC_JS_FILE, '?data=zones']);
}
protected function generateTitle()
{
array_unshift($this->title, $this->name);
}
protected function generatePath() {}
}
?>