23 lines
526 B
PHP
23 lines
526 B
PHP
<?php
|
|
class default_start implements SYSTEM\PAGE\Page {
|
|
public function html() {
|
|
$vars = \SYSTEM\PAGE\text::tag('friseurteam');
|
|
return \SYSTEM\PAGE\replace::replaceFile((new PPAGE('default_start/tpl/default_start.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;
|
|
}
|
|
|
|
} |