..different index page for the suite. It's very easy because the only thing you need to do is change the content of default.php. I don't want to create something like hello world or..
THC xConverter is a tool that makes use of (php) functions in order to calculate, fetch, convert and encrypt data
<?php
/*
Environment link map
Author: Remco Kouw
Site: http://www.hacksuite.com
Last Edit: 12-11-2014
*/
if(!defined('IN_SCRIPT')){
exit;
}
$_ENV_MAP = array();
$_ENV_MAP['modules'] = array();
foreach($_CONTEXT['modules'] as $sKey=>$aValue){
// setup the module links
$_ENV_MAP['modules'][] = array($aValue['name'],$sKey);
}
$sDest = $_PATHS['data_root']."/extra.php";
(!IsThere($sDest) ? include_once($_PATHS['end']) : include_once($sDest));
$_ENV_MAP['apps'] = array();
if(0!=($iExtra = count($aExtra))){
for($x=0;$x<$iExtra;$x++){
// setup the pages links
$_ENV_MAP['apps'][] = array($aExtra[$x][0],$aExtra[$x][1]);
}
}
?>