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 page_googlemaps(){
|
|
return (new googlemaps())->html();
|
|
}
|
|
|
|
public static function page_osm(){
|
|
return (new osm())->html();
|
|
}
|
|
|
|
public static function page_test(){
|
|
return (new default_page())->html();
|
|
}
|
|
|
|
public static function page_prices(){
|
|
return (new default_prices())->html();}
|
|
|
|
public static function page_contact(){
|
|
return (new default_contact())->html();}
|
|
|
|
public static function page_certificates(){
|
|
return (new default_certificates())->html();}
|
|
|
|
public static function page_partners(){
|
|
return (new default_partners())->html();}
|
|
|
|
public static function page_impressions(){
|
|
return (new default_impressions())->html();}
|
|
|
|
public static function page_introduction(){
|
|
return (new default_introduction())->html();}
|
|
} |