📄 messall.php.svn-base
字号:
<?php
/**
* messall.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);
includeLang('admin');
$parse = $lang;
if ($user['authlevel'] >= 1) {
if ($_POST && $mode == "change") {
if (isset($_POST["tresc"]) && $_POST["tresc"] != '') {
$game_config['tresc'] = $_POST['tresc'];
}
if (isset($_POST["temat"]) && $_POST["temat"] != '') {
$game_config['temat'] = $_POST['temat'];
}
if ($user['authlevel'] == 3) {
$kolor = 'red';
$ranga = 'Administrator';
} elseif ($user['authlevel'] == 4) {
$kolor = 'skyblue';
$ranga = 'GameOperator';
} elseif ($user['authlevel'] == 5) {
$kolor = 'yellow';
$ranga = 'SuperGameOperator';
}
if ($game_config['tresc'] != '' and $game_config['temat']) {
$sq = doquery("SELECT `id` FROM {{table}}", "users");
$Time = time();
$From = "<font color=\"". $kolor ."\">". $ranga ." ".$user['username']."</font>";
$Subject = "<font color=\"". $kolor ."\">". $game_config['temat'] ."</font>";
$Message = "<font color=\"". $kolor ."\"><b>". $game_config['tresc'] ."</b></font>";
while ($u = mysql_fetch_array($sq)) {
SendSimpleMessage ( $u['id'], $user['id'], $Time, 97, $From, $Subject, $Message);
}
message("<font color='lime'>{$lang['adm_ma_send_ok']}</font>", $lang['adm_ma_complete'], "../overview." . $phpEx, 3);
}
} else {
//$parse = $game_config;
$parse['dpath'] = $dpath;
$parse['debug'] = ($game_config['debug'] == 1) ? " checked='checked'/":'';
$page .= parsetemplate(gettemplate('admin/messall_body'), $parse);
display($page, $lang['adm_ma_page'] , false,'', true);
}
} else {
message($lang['sys_noalloaw'], $lang['sys_noaccess']);
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -