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
2013-05-16 00:14:53 +02:00

33 lines
696 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_osm(){
return new osm();
}
public static function action_test(){
return new default_page();
}
public static function action_prices(){
return new prices();
}
public static function action_contact(){
return new contact();
}
}