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_danube/danube/page/PageApi.php

21 lines
430 B
PHP

<?php
class PageApi extends \SYSTEM\PAGE\PageClass {
public static function default_page(){
return new default_page();
}
public static function action_media(){
throw new ERROR("test");
}
public static function action_googlemaps(){
return new googlemaps();
}
public static function action_test(){
return new default_page();
}
}