Your IP : 216.73.216.134


Current Path : /home/bijouxly/www/templates/carparts_161108/app/
Upload File :
Current File : /home/bijouxly/www/templates/carparts_161108/app/index.php

<?php

define('_JEXEC', 1);
define('DS', DIRECTORY_SEPARATOR);

define('EXPORT_APP', __DIR__ . '/classes');

$data = array_merge($_GET, $_POST);

require_once EXPORT_APP . '/LoggingTime.php';
$timeLogging = LoggingTime::getInstance();
$timeLogging->start('[PHP] Joomla start of work');

$timeLogging->start('[PHP] Initializing Joomla');
if (isset($data['frontend']) && $data['frontend'] == true) {
    define('JPATH_BASE', dirname(dirname(dirname(dirname(__FILE__)))));
    require_once JPATH_BASE . DS . 'includes' . DS . 'defines.php';
    require_once JPATH_BASE . DS . 'includes' . DS . 'framework.php';
    $app = JFactory::getApplication('site');
} else {
    define('JPATH_BASE', dirname(dirname(dirname(dirname(__FILE__)))) . DS . 'administrator');
    require_once JPATH_BASE . DS . 'includes' . DS . 'defines.php';
    require_once JPATH_BASE . DS . 'includes' . DS . 'framework.php';
    require_once JPATH_BASE . DS . 'includes' . DS . 'helper.php';
    require_once JPATH_BASE . DS . 'includes' . DS . 'toolbar.php';
    $app = JFactory::getApplication('administrator');
}
$timeLogging->end('[PHP] Initializing Joomla');

require_once EXPORT_APP . '/PermissionsException.php';
require_once EXPORT_APP . '/Helper.php';
require_once EXPORT_APP . '/ExportController.php';

$controller = new ExportController();
$controller->execute($data);