⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 about.php

📁 一个基于web的开源项目管理工具
💻 PHP
字号:
<?phprequire_once("gacl_admin.inc.php");function get_system_info() {	global $gacl_api;		//Grab system info	$system_info .= 'PHP Version: '.phpversion()."\n";	$system_info .= 'Zend Version: '.zend_version()."\n";	$system_info .= 'Web Server: '.$_SERVER['SERVER_SOFTWARE']."\n\n";	$system_info .= 'phpGACL Settings: '."\n";	$system_info .= '  phpGACL Version: '.$gacl_api->get_version()."\n";	$system_info .= '  phpGACL Schema Version: '.$gacl_api->get_schema_version()."\n";	if($gacl_api->_caching == TRUE) {		$caching = 'True';	} else {		$caching = 'False';	}	$system_info .= '  Caching Enabled: '. $caching ."\n";	if($gacl_api->_force_cache_expire == TRUE) {		$force_cache_expire = 'True';	} else {		$force_cache_expire = 'False';	}	$system_info .= '  Force Cache Expire: '.$force_cache_expire."\n";	$system_info .= '  Database Prefix: \''.$gacl_api->_db_table_prefix."'\n";	$system_info .= '  Database Type: '.$gacl_api->_db_type."\n";	$database_server_info = $gacl_api->db->ServerInfo();	$system_info .= '  Database Version: '.$database_server_info['version']."\n";	$system_info .= '  Database Description: '.$database_server_info['description']."\n\n";	$system_info .= 'Server Name: '. $_SERVER["SERVER_NAME"] ."\n";	$system_info .= ' OS: '. PHP_OS ."\n";	$system_info .= ' IP Address: '. $_SERVER["REMOTE_ADDR"] ."\n";	$system_info .= ' Browser: '. $_SERVER["HTTP_USER_AGENT"] ."\n\n";		$system_info .= 'System Information: '. php_uname() ."\n";	return trim($system_info);}function submit_system_info($system_information, $system_info_md5) {	$md5sum = md5(trim($system_information));	if (trim($system_info_md5) == $md5sum) {		$tainted = 'FALSE';	} else {		$tainted = 'TRUE';	}	mail('phpgacl@snappymail.ca', 'phpGACL Report... ', "". $system_information ."\n\nTainted: $tainted");	return $tainted;	}switch ($_POST['action']) {    case 'Submit':        $gacl_api->debug_text("Submit!!");		submit_system_info($_POST['system_information'], $_POST['system_info_md5']);			echo "<div align=center>Thanks for contributing to phpGACL. <br> Click <a href=\"acl_list.php\">here</a> to proceed to the Administration Interface.</div><br>\n";		exit;        break;    default:		$system_info = get_system_info();		//Read credits.		$smarty->assign("credits", htmlentities( implode('',file('../CREDITS')) ));		$smarty->assign("system_info", $system_info);		$smarty->assign("system_info_md5", md5($system_info) );        break;}$smarty->assign("first_run", $_GET['first_run'] );$smarty->assign("return_page", $_SERVER['PHP_SELF'] );$smarty->assign('current','about');if ($_GET['first_run']) {	$smarty->assign('page_title', 'Installation Report');	$smarty->assign('hidemenu', 1);} else {	$smarty->assign('page_title', 'About phpGACL');}$smarty->assign("phpgacl_version", $gacl_api->get_version() );$smarty->assign("phpgacl_schema_version", $gacl_api->get_schema_version() );$smarty->display('phpgacl/about.tpl');?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -