16 lines
472 B
PHP
16 lines
472 B
PHP
<?php
|
|
/*=======================================================================
|
|
*
|
|
* phoenix.css
|
|
*
|
|
* Autor: Carsten Annacker, Marc Vollmann
|
|
*
|
|
=======================================================================*/
|
|
|
|
include_once ("../include/global.inc.php");
|
|
|
|
$file_contents = file_get_contents("https://maps.googleapis.com/maps/api/js?key=" . get_api_key() . "&libraries&libraries=places&language=de");
|
|
|
|
echo str_replace("Standort", "Adresse", $file_contents);
|
|
?>
|