Your IP : 216.73.216.134


Current Path : /home/bijouxly/www/libraries/nextend/
Upload File :
Current File : /home/bijouxly/www/libraries/nextend/configuration.php

<?php
/*
# author Roland Soos
# copyright Copyright (C) Nextendweb.com. All Rights Reserved.
# @license - http://www.gnu.org/licenses/gpl-3.0.txt GNU/GPL
*/
defined('_JEXEC') or die('Restricted access'); ?><?php
global $nextend;

$nextend = array(
    'cachetime' => 'static',
    'cachepath' => null,
    'gzip' => 0,
    'debuglng' => 0,
    'logproblems' => 1
);

function getNextend($prop, $default = ''){
    global $nextend;
    if(isset($nextend[$prop]) && $nextend[$prop] !== null) return $nextend[$prop];
    return $default;
}

function setNextend($prop, $value){
    global $nextend;
    $nextend[$prop] = $value;
}