Your IP : 10.10.0.253


Current Path : /var/www/components/com_qf3/
Upload File :
Current File : /var/www/components/com_qf3/qf3.php

<?php
/**
 * @package		Joomla & QuickForm
* @Copyright ((c) plasma-web.ru
        * @license    GPLv2 or later
        */

defined('_JEXEC') or die;

header ("Content-type: text/html; charset=utf-8");

defined('QF3_PLUGIN_URL') or define('QF3_PLUGIN_URL', JUri::root().'components/com_qf3/');
defined('QF3_PLUGIN_DIR') or define('QF3_PLUGIN_DIR', JPATH_ROOT.'/components/com_qf3/');
defined('QF3_ADMIN_DIR') or define('QF3_ADMIN_DIR', JPATH_ROOT.'/administrator/components/com_qf3/');

$xml = simplexml_load_file(QF3_ADMIN_DIR .'qf3.xml');
defined('QF3_VERSION') or define('QF3_VERSION', (string) $xml->version);

\JFactory::getLanguage()->load('com_qf3', QF3_PLUGIN_DIR);

require_once(QF3_PLUGIN_DIR . 'classes.php');

if (isset($_POST['option']) && $_POST['option'] == 'com_qf3') {
	require_once(QF3_PLUGIN_DIR . 'controller.php');
	new QuickForm\controller();
}