25 lines
639 B
PHP
25 lines
639 B
PHP
<?php
|
|
|
|
class default_preise implements SYSTEM\PAGE\Page {
|
|
public function html() {
|
|
$text = \SYSTEM\PAGE\text::tag('friseurteam');
|
|
$vars = array();
|
|
//$vars['default_gallery'] = saimod_webcraft_gallery::getGalleryGalleria(2);
|
|
return \SYSTEM\PAGE\replace::replaceFile((new PPAGE('default_preise/default_preise.tpl'))->SERVERPATH(), $vars);}
|
|
|
|
public static function css() {
|
|
return array();
|
|
}
|
|
|
|
public static function js() {
|
|
return array();
|
|
}
|
|
|
|
public static function meta() {
|
|
return NULL;
|
|
}
|
|
|
|
public static function title() {
|
|
return NULL;
|
|
}
|
|
} |