Your IP : 216.73.216.74


Current Path : /home/bonneesp/www/administrator/components/com_contactmap/models/
Upload File :
Current File : /home/bonneesp/www/administrator/components/com_contactmap/models/contactmap.php

<?php
	/*
	* ContactMap Component Google Map for Joomla! 3.x
	* Version J3.0
	* Creation date: Août 2014
	* Author: Fabrice4821 - www.gmapfp.org
	* Author email: webmaster@gmapfp.org
	* License GNU/GPL
	*/

defined( '_JEXEC' ) or die;

class ContactMapModelContactMap extends JModelLegacy
{
	function getPublishedTabs() {
	
		$config = JComponentHelper::getParams('com_contactmap');

		$tabs = array();

		$onglet = new stdClass();
		$onglet->title = JText::_('COM_CONTACTMAP_DONATION');
		$onglet->name = 'Donation';
		$onglet->alert = false;
		$tabs[] = $onglet;

		if ($config->get('contactmap_news', 1)) {
			$onglet = new stdClass();
			$onglet->title = JText::_('COM_CONTACTMAP_NEWS');
			$onglet->name = 'News';
			$onglet->alert = false;
			$tabs[] = $onglet;
		}

		return $tabs;
	}

}
?>