| Current Path : /home/azimutno/azimutno/azimutno/www/demo/modules/mod_location_map_j3/ |
| Current File : /home/azimutno/azimutno/azimutno/www/demo/modules/mod_location_map_j3/helper.php |
<?php
defined('_JEXEC') or die;
class modLocationHelper
{
public static function getLink(&$params)
{
$document = JFactory::getDocument();
foreach ($document->_links as $link => $value)
{
$value = JArrayHelper::toString($value);
if (strpos($value, 'application/'.$params->get('format').'+xml'))
{
return $link;
}
}
}
}