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

📄 overview.php.svn-base

📁 所有用户均可免费下载OGameCN源代码
💻 SVN-BASE
字号:
<?php/** * overview.php * * @version 1.0 * @copyright 2008 by ??????? for XNova */define('INSIDE'  , true);define('INSTALL' , false);define('IN_ADMIN', true);$xnova_root_path = '../';include($xnova_root_path . 'extension.inc');include($xnova_root_path . 'common.' . $phpEx);	if ($user['authlevel'] >= 1) {		includeLang('admin');		if ($_GET['cmd'] == 'sort') {			$TypeSort = $_GET['type'];		} else {			$TypeSort = "id";		}		$PageTPL  = gettemplate('admin/overview_body');		$RowsTPL  = gettemplate('admin/overview_rows');		$parse                      = $lang;		$parse['dpath']             = $dpath;		$parse['mf']                = $mf;		$parse['adm_ov_data_yourv'] = colorRed(VERSION);		$Last15Mins = doquery("SELECT * FROM {{table}} WHERE `onlinetime` >= '". (time() - 15 * 60) ."' ORDER BY `". $TypeSort ."` ASC;", 'users');		$Count      = 0;		$Color      = "lime";		while ( $TheUser = mysql_fetch_array($Last15Mins) ) {			if ($PrevIP != "") {				if ($PrevIP == $TheUser['user_lastip']) {					$Color = "red";				} else {					$Color = "lime";				}			}			$UserPoints = doquery("SELECT * FROM {{table}} WHERE `stat_type` = '1' AND `stat_code` = '1' AND `id_owner` = '" . $TheUser['id'] . "';", 'statpoints', true);			$Bloc['dpath']               = $dpath;			$Bloc['adm_ov_altpm']        = $lang['adm_ov_altpm'];			$Bloc['adm_ov_wrtpm']        = $lang['adm_ov_wrtpm'];			$Bloc['adm_ov_data_id']      = $TheUser['id'];			$Bloc['adm_ov_data_name']    = $TheUser['username'];			$Bloc['adm_ov_data_agen']    = $TheUser['user_agent'];			$Bloc['current_page']    = $TheUser['current_page'];			$Bloc['usr_s_id']    = $TheUser['id'];			$Bloc['adm_ov_data_clip']    = $Color;			$Bloc['adm_ov_data_adip']    = $TheUser['user_lastip'];			$Bloc['adm_ov_data_ally']    = $TheUser['ally_name'];			$Bloc['adm_ov_data_point']   = pretty_number ( $UserPoints['total_points'] );			$Bloc['adm_ov_data_activ']   = pretty_time ( time() - $TheUser['onlinetime'] );			$Bloc['adm_ov_data_pict']    = "m.gif";			$PrevIP                      = $TheUser['user_lastip'];						//Tweaks vue g閚閞ale 						$Bloc['usr_email']    = $TheUser['email'];									$Bloc['usr_xp_raid']    = $TheUser['xpraid'];									$Bloc['usr_xp_min']    = $TheUser['xpminier'];																		if ($TheUser['urlaubs_modus'] == 1) {											$Bloc['state_vacancy']  = "<img src=\"../images/true.png\" >";									} else {											$Bloc['state_vacancy']  = "<img src=\"../images/false.png\">";									}																		if ($TheUser['bana'] == 1) {											$Bloc['is_banned']  = "<img src=\"../images/banned.png\" >";									} else {											$Bloc['is_banned']  = $lang['is_banned_lang'];									}									$Bloc['usr_planet_gal']    = $TheUser['galaxy'];									$Bloc['usr_planet_sys']    = $TheUser['system'];									$Bloc['usr_planet_pos']    = $TheUser['planet'];												$parse['adm_ov_data_table'] .= parsetemplate( $RowsTPL, $Bloc );			$Count++;		}		$parse['adm_ov_data_count']  = $Count;		$Page = parsetemplate($PageTPL, $parse);		display ( $Page, $lang['sys_overview'], false, '', true);	} else {		AdminMessage ( $lang['sys_noalloaw'], $lang['sys_noaccess'] );	}?>

⌨️ 快捷键说明

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