Your IP : 216.73.217.53


Current Path : /home/bonneesp/www/administrator/components/com_contactmap/views/css/
Upload File :
Current File : /home/bonneesp/www/administrator/components/com_contactmap/views/css/view.html.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 ContactMapViewCSS extends JViewLegacy
{
	function display($tpl = null)
	{
		$this->addToolbar();
		ContactMapHelper::addSubmenu('css');
		$this->sidebar = JHtmlSidebar::render();

		parent::display($tpl);
	}

	protected function addToolbar()
	{
		require_once JPATH_COMPONENT . '/helpers/contactmap.php';

		JToolBarHelper::title(   JText::_( 'COM_CONTACTMAP_CSS_MANAGER' ), 'themes.png' );
		JToolBarHelper :: custom( 'css.saveCss', 'save.png', 'save.png', 'JTOOLBAR_APPLY', false, false );
	}
}