Files
aowow/pages/maps.php
Sarjuuk 9f1cbc0233 HTML/Scripts
* append a filemtime timestamp to js/css files to work around browser caching after update
 * shuffle script handling around a bit
 * also user pages cant have community content
 * also fix breadcrumbs on items page
2023-04-13 17:30:23 +02:00

41 lines
877 B
PHP

<?php
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() {}
}
?>