Your IP : 216.73.217.53


Current Path : /home/bonneesp/www/administrator/components/com_contactmap/controllers/
Upload File :
Current File : /home/bonneesp/www/administrator/components/com_contactmap/controllers/css.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 ContactMapControllerCSS extends JControllerLegacy
{

	/**
	 * save CSS
	 */
	function saveCss()
	{	
		$post	= JRequest::get('post');
		$model = $this->getModel('css');
		if ($model->store($post)) {
			$msg = JText::_( 'COM_CONTACTMAP_SAVED_CSS');
		} else {
			$msg = JText::_( 'COM_CONTACTMAP_SAVED_CSS_ERROR');
		}

		$link = 'index.php?option=com_contactmap&view=css';
		$this->setRedirect($link, $msg);
	
	}

}
?>