Spade

Mini Shell

Directory:~$ /home/lmsyaran/www/administrator/components/com_phocainstall/views/phocainstallcp/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/www/administrator/components/com_phocainstall/views/phocainstallcp/view.html.php

<?php
/* @package Joomla
 * @copyright Copyright (C) Open Source Matters. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * @extension Phoca Extension
 * @copyright Copyright (C) Jan Pavelka www.phoca.cz
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
 */
defined( '_JEXEC' ) or die();
jimport( 'joomla.application.component.view' );

class PhocaInstallCpViewPhocaInstallCp extends JViewLegacy
{
	protected $t;
	public function display($tpl = null) {
		JHTML::stylesheet(
'media/com_phocainstall/css/administrator/phocainstall.css' );
		$this->t['l'] = 'COM_PHOCAINSTALL';
		$this->t['i'] =
'media/com_phocainstall/images/administrator/';
		$this->addToolbar();
		parent::display($tpl);
	}
	
	protected function addToolbar() {
		JToolbarHelper::title( JText::_(
'COM_PHOCAINSTALL_PHOCAINSTALL' ), 'install.png' );
		JToolbarHelper::divider();
		JToolbarHelper::help( 'screen.phocainstall', true );
	}
}
?>