Your IP : 216.73.216.240


Current Path : /home/s/u/n/sunflowe/www2/j15/administrator/components/com_easycaptcha/views/about/
Upload File :
Current File : /home/s/u/n/sunflowe/www2/j15/administrator/components/com_easycaptcha/views/about/view.html.php

<?php
/**
 * @version $Id: view.html.php 629 2008-03-16 16:59:39Z snipersister $
 * @package    EasyCaptcha
 * @link http://www.easy-joomla.org
 * @license    GNU/GPL
 */

// no direct access

defined( '_JEXEC' ) or die( 'Restricted access' );

jimport( 'joomla.application.component.view' );

/**
 * Easybook View
 *
 * @package    Easybook
 */
class EasyCaptchaViewAbout extends JView
{
	/**
	 * Easybook view display method
	 * @return void
	 **/
	function display($tpl = null)
    {        
        JToolBarHelper::title( JText::_( 'EasyCaptcha' ), 'easycaptcha' );
        JHTML::_('stylesheet', 'easycaptcha.css', 'administrator/components/com_easycaptcha/css/');
        
        parent::display($tpl);
    }
}