
LCARS is a template for the GetSimple CMS that mimics the monitor appearance in the television series Star Trek: The Next Generation
32 lines
812 B
PHP
32 lines
812 B
PHP
<?php
|
|
/**
|
|
* Configuration File
|
|
*
|
|
* @package GetSimple
|
|
* @subpackage Config
|
|
*/
|
|
|
|
$site_full_name = 'GetSimple';
|
|
$site_version_no = '3.3.2';
|
|
$name_url_clean = lowercase(str_replace(' ','-',$site_full_name));
|
|
$ver_no_clean = str_replace('.','',$site_version_no);
|
|
$site_link_back_url = 'http://get-simple.info/';
|
|
|
|
$cookie_name = lowercase($name_url_clean) .'_cookie_'. $ver_no_clean;
|
|
$cookie_login = 'index.php';
|
|
$cookie_time = '10800'; // in seconds, 3 hours
|
|
|
|
$api_url = 'http://get-simple.info/api/start/v3.php';
|
|
# $api_timeout = 800; // time in ms defaults to 500
|
|
|
|
|
|
if (isset($_GET['redirect'])){
|
|
$cookie_redirect = $_GET['redirect'];
|
|
} else {
|
|
$cookie_redirect = 'pages.php';
|
|
}
|
|
|
|
if (!defined('GSVERSION')) define('GSVERSION', $site_version_no);
|
|
|
|
?>
|