get('dashboard_title')); //Delete installation files if (file_exists('install.php')) { if (unlink('install.php')) { echo msg('info', $lang->get('delete_config_success')); } } $installedApps = $apps->getApps(); foreach ($installedApps as $appuri => $installedApp) { if (array_key_exists('install', $installedApp)) { $appInstaller = '../apps/' . $installedApp['app_path'] . '/' . $installedApp['install']; if (file_exists($appInstaller)) { if (unlink($appInstaller)) { echo msg('info', $lang->get('delete_config_success' . $installedApp['app_name'])); } } } } if (hasPerm('view_dashboard')) { echo '
' . substr(php_uname(), 0, strpos(php_uname(), ' ')) . '' . $lang->get('os') . '
'; echo '
' . $_SERVER['SERVER_SOFTWARE'] . '' . $lang->get('server_software') . '
'; echo '
' . str_replace(substr(PHP_VERSION, strpos(PHP_VERSION, '-')), '', PHP_VERSION) . '' . $lang->get('php_version') . '
'; echo '
' . str_replace(substr($db->version(), strpos($db->version(), '-')), '', $db->version()) . '' . $lang->get('mysql_version') . '
'; echo '
' . date('H:i:s') . '' . $lang->get('system_time') . '
'; ?>
get('general_config'); ?>

get('logfiles'); ?>

get('manage_pages'); ?>

get('manage_contents'); ?>

get('manage_files'); ?>
'; //Find Dashboard files $apps = new apps(); $appUri = '../apps/'; foreach ($apps->getApps() as $app => $appconf) { require $appUri . $appconf['app_path'] . '/config.php'; if (isset($_CONF['dashboard']) && $_CONF['dashboard'] != '') { if (file_exists($appUri . $appconf['app_path'] . '/' . $_CONF['dashboard'])) { echo '
'; require $appUri . $appconf['app_path'] . '/' . $_CONF['dashboard']; echo '
'; } } $_CONF['dashboard'] = ''; } echo ''; require_once '../inc/footer.php';