| Current Path : /home/bonneesp/www/administrator/components/com_contactmap/models/ |
| Current File : /home/bonneesp/www/administrator/components/com_contactmap/models/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 ContactMapModelCss extends JModelLegacy
{
function store()
{
$file = JPATH_COMPONENT_SITE.'/views/contactmap/contactmap.css';
$csscontent = JRequest::getVar('csscontent', '', 'post', 'string', JREQUEST_ALLOWRAW);
if( $fp = @fopen( $file, 'w' )) {
fputs( $fp, stripslashes( $csscontent ) );
fclose( $fp );
return true;
}else{
return false;
}
}
}
?>