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-02 15:35:46 +02:00

29 lines
604 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();
}
}