forked from cs2ag/powermail
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: https://svn.typo3.org/TYPO3v4/Extensions/powermail/trunk@61502 735d13b6-9817-0410-8766-e36946ffe9aa
- Loading branch information
wunschtacho
committed
May 5, 2012
1 parent
0a4d68b
commit f67cc3b
Showing
3 changed files
with
110 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?php | ||
/*************************************************************** | ||
* Copyright notice | ||
* | ||
* (c) 2012 Alex Kellner <[email protected]>, in2code.de | ||
* | ||
* All rights reserved | ||
* | ||
* This script is part of the TYPO3 project. The TYPO3 project is | ||
* free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* The GNU General Public License can be found at | ||
* http://www.gnu.org/copyleft/gpl.html. | ||
* | ||
* This script is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* This copyright notice MUST APPEAR in all copies of the script! | ||
***************************************************************/ | ||
|
||
/** | ||
* This class could called with AJAX via eID and returns a location from geo coordinates | ||
* | ||
* @author Alex Kellner <[email protected]>, in2code. | ||
* @package TYPO3 | ||
* @subpackage eidGetLocation | ||
*/ | ||
class eidGetLocation { | ||
|
||
/** | ||
* Generates the output | ||
* | ||
* @return string from action | ||
*/ | ||
public function main() { | ||
$lat = t3lib_div::_GP('lat'); | ||
$lng = t3lib_div::_GP('lng'); | ||
|
||
$csv = t3lib_div::getUrl('http://maps.google.com/maps/geo?&output=csv&q=' . $lat . ',' . $lng); | ||
$csvParts = Tx_Extbase_Utility_Arrays::trimExplode('"', $csv, 1); | ||
return $csvParts[1]; | ||
} | ||
} | ||
|
||
$eid = t3lib_div::makeInstance('eidGetLocation'); // make instance | ||
echo $eid->main(); // print content | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters