| Server IP : 54.36.91.62 / Your IP : 216.73.217.111 Web Server : Apache System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : coopiak ( 151928) PHP Version : 8.3.23 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/coopiak/amisdesseniors-fr/nimes/modules/mod_flexicontentmymaplocationsmaps/tmpl/ |
Upload File : |
<?php
/*
* @version 4.5.2
* @package com_mymaplocations
* @copyright JoomUnited (C) 2011. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* ***@author Created by JoomUnited (C)
*/
defined('_JEXEC') or die;
if($map_display==0)
{
$map = MyMapLocationsHelper::CreateMap($result, $width, $height, $zoom, $type);
echo "<style type='text/css'>.map{
width:100%;float:left;}</style>";
echo "<div class='map'>" . $map . "</div><div class='clearfix'></div>";
}
else
{
$s=0;
?>
<div class="resultbar">
<?php foreach($result as $item)
{
$address = MyMaplocationsHelper::formatAddress($item);
$link = MyMaplocationsHelper::getUrlLink($item);
?>
<div class="addressdata">
<address>
<?php if($item->logo) {?>
<a href="<?php echo $link;?>" style="float:left;"><img src="<?php echo $item->logo;?>" class="sidebar-icon" alt="<?php echo $item->name;?>"/></a>
<?php } ?>
<h4 class="location-title"><a href="<?php echo $link;?>"><?php echo $item->name;?></a></h4>
<?php echo $address;?>
</address>
</div>
<?php
}?>
</div>
<?php
}