18 lines
508 B
PHP
18 lines
508 B
PHP
<?php
|
|
class impressum extends \SYSTEM\PAGE\Page {
|
|
|
|
|
|
|
|
public function html(){
|
|
$vars = array();
|
|
$vars = array_merge($vars, \SYSTEM\locale::getStrings(101));
|
|
return SYSTEM\PAGE\replace::replaceFile(SYSTEM\SERVERPATH(new PPAGE(),'impressum/impressum.tpl'), $vars);
|
|
}
|
|
}
|
|
/*
|
|
* To change this license header, choose License Headers in Project Properties.
|
|
* To change this template file, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|