| Current Path : /home/bonneesp/www/administrator/components/com_contactmap/ |
| Current File : /home/bonneesp/www/administrator/components/com_contactmap/contactmap.php |
<?php
/*
* ContactMap Component Google Map for Joomla! 3.x
* Version J3.16F
* Creation date: Janvier 2017
* Author: Fabrice4821 - www.gmapfp.org
* Author email: webmaster@gmapfp.org
* License GNU/GPL
*/
defined('_JEXEC') or die;
JHtml::_('behavior.tabstate');
if (!JFactory::getUser()->authorise('core.manage', 'com_contact'))
{
return JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR'));
}
// Execute the task.
$controller = JControllerLegacy::getInstance('ContactMap');
$controller->execute(JFactory::getApplication()->input->get('task'));
$controller->redirect();