This repository has been archived on 2025-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
messerbill c45cef41d2 added googlemaps
some Layout fixes
2013-04-24 13:16:52 +02:00

9 lines
286 B
PHP

<?php
class googlemaps extends SYSTEM\PAGE\Page {
public function html(){
$vars = array();
$vars['content'] = "test";
return SYSTEM\PAGE\replace::replaceFile(SYSTEM\SERVERPATH(new PPAGE(),'googlemaps/googlemaps.tpl'), $vars);
}
}