This repository has been archived on 2025-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
host_friseurteam/friseurteam/page/page_friseurteam.php

21 lines
818 B
PHP

<?php
class page_friseurteam extends \SYSTEM\API\api_default {
public static function get_apigroup(){
return 1;}
public static function get_class($params = null){
return self::class;}
public static function get_default_state(){
return 'start';}
public static function default_page($_escaped_fragment_ = NULL){
return (new default_page())->html($_escaped_fragment_);}
public static function page_default_content(){
return (new default_content())->html();}
public static function page_default_team(){
return (new default_team())->html();}
public static function page_default_galerie(){
return (new default_galerie())->html();}
public static function page_default_preise(){
return (new default_preise())->html();}
}