Revert to stable version 3.5.4

This commit is contained in:
Hypolite Petovan 2018-02-11 19:00:01 -05:00
commit 5360f08f42
355 changed files with 21449 additions and 4957 deletions

View file

@ -7,40 +7,35 @@
*
*/
use Friendica\Core\Cache;
require_once('include/cache.php');
function googlemaps_install()
{
function googlemaps_install() {
register_hook('render_location', 'addon/googlemaps/googlemaps.php', 'googlemaps_location');
logger("installed googlemaps");
}
function googlemaps_uninstall()
{
function googlemaps_uninstall() {
unregister_hook('render_location', 'addon/googlemaps/googlemaps.php', 'googlemaps_location');
logger("removed googlemaps");
}
function googlemaps_location($a, &$item)
{
function googlemaps_location($a, &$item) {
if(! (strlen($item['location']) || strlen($item['coord']))) {
if(! (strlen($item['location']) || strlen($item['coord'])))
return;
}
if ($item['coord'] != ""){
if ($item['coord'] != "")
$target = "http://maps.google.com/?q=".urlencode($item['coord']);
} else {
else
$target = "http://maps.google.com/?q=".urlencode($item['location']);
}
if ($item['location'] != "") {
if ($item['location'] != "")
$title = $item['location'];
} else {
else
$title = $item['coord'];
}
$item['html'] = '<a target="map" title="'.$title.'" href= "'.$target.'">'.$title.'</a>';
}