23 lines
451 B
PHP
23 lines
451 B
PHP
<?php
|
|
class default_content implements SYSTEM\PAGE\Page {
|
|
public function html() {
|
|
$text = \SYSTEM\PAGE\text::tag('friseurteam');
|
|
return 'abc';}//$text['default_content'];}
|
|
|
|
public static function css() {
|
|
return array();
|
|
}
|
|
|
|
public static function js() {
|
|
return array();
|
|
}
|
|
|
|
public static function meta() {
|
|
return NULL;
|
|
}
|
|
|
|
public static function title() {
|
|
return NULL;
|
|
}
|
|
|
|
} |