Your IP : 216.73.216.89


Current Path : /home/azimutno/www/demo/modules/mod_location_map_j3/
Upload File :
Current File : /home/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;
			}
		}

	}
}