Your IP : 216.73.216.134


Current Path : /home/bijouxly/www/templates/bijouxlyv2016092/app/start/
Upload File :
Current File : /home/bijouxly/www/templates/bijouxlyv2016092/app/start/templates.php

<?php

function outPutTemplates($error) {
  	require_once dirname(__DIR__) . '/classes/Config.php';

    header('Content-Type: application/javascript');
    header("Pragma: no-cache");

    // emulate request method for current language
    $_SERVER['REQUEST_METHOD'] = 'POST';
    // initialize current language
    $uri = clone JFactory::getURI();
    JFactory::getApplication('site')->getRouter()->parse($uri);

    $templates = Config::getThemeTemplates();

  	if (null !== $error) {
  		echo 'config.error = ' . json_encode($error) . ';';
    }
    echo 'config.infoData.startPage = "' . $templates['home'] . '";';
    echo 'config.infoData.templates = ' . json_encode($templates['templates']) . ';';
}

function shutdownFunc()
{
  	outPutTemplates(error_get_last());
}

register_shutdown_function("shutdownFunc");

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

define('JPATH_BASE', dirname(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');

$language = JFactory::getLanguage();
if (version_compare(JVERSION, '3.0', '>')) {
    $app->loadLanguage($language);
    JFactory::$language = $app->getLanguage();
} else {
    JFactory::$language = $language;
}

JPluginHelper::importPlugin('system');
$app->triggerEvent('onAfterInitialise');

?>