9 lines
286 B
PHP
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);
|
|
}
|
|
} |