📄 showgalaxytitles.php
字号:
<?php
/**
* ShowGalaxyTitles.php
*
* @version 1.0
* @copyright 2008 By Chlorel for XNova
*/
function ShowGalaxyTitles ( $Galaxy, $System ) {
global $lang;
$Result = "\n";
$Result .= "<tr>";
$Result .= "<td class=c colspan=8>".$lang['Solar_system']." ".$Galaxy.":".$System."</td>";
$Result .= "</tr><tr>";
$Result .= "<td class=c>".$lang['Pos']."</td>";
$Result .= "<td class=c>".$lang['Planet']."</td>";
$Result .= "<td class=c>".$lang['Name']."</td>";
$Result .= "<td class=c>".$lang['Moon']."</td>";
$Result .= "<td class=c>".$lang['Debris']."</td>";
$Result .= "<td class=c>".$lang['Player']."</td>";
$Result .= "<td class=c>".$lang['Alliance']."</td>";
$Result .= "<td class=c>".$lang['Actions']."</td>";
$Result .= "</tr>";
return $Result;
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -