37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?php
|
|
|
|
class page_danube extends \SYSTEM\API\api_default {
|
|
|
|
public static function default_page($_escaped_fragment_ = NULL){
|
|
return (new default_page($_escaped_fragment_))->html();}
|
|
|
|
public static function action_googlemaps(){
|
|
return (new googlemaps())->html();
|
|
}
|
|
|
|
public static function action_osm(){
|
|
return (new osm())->html();
|
|
}
|
|
|
|
public static function action_test(){
|
|
return (new default_page())->html();
|
|
}
|
|
|
|
public static function action_prices(){
|
|
return (new default_prices())->html();}
|
|
|
|
public static function action_contact(){
|
|
return (new default_contact())->html();}
|
|
|
|
public static function action_certificates(){
|
|
return (new default_certificates())->html();}
|
|
|
|
public static function action_partners(){
|
|
return (new default_partners())->html();}
|
|
|
|
public static function action_impressions(){
|
|
return (new default_impressions())->html();}
|
|
|
|
public static function action_introduction(){
|
|
return (new default_introduction())->html();}
|
|
} |