* All rights reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * --> NOTICE <-- * This file is part of the core development branch, changing its contents will * make you unable to use the automatic updates manager. Please refer to the * documentation for further information about customizing XNova. * */ /** * * @deprecated * @param unknown_type $Galaxy * @param unknown_type $System * @param unknown_type $CurrentMIP * @param unknown_type $CurrentRC * @param unknown_type $CurrentSP */ function ShowGalaxyFooter ( $Galaxy, $System, $CurrentMIP, $CurrentRC, $CurrentSP) { global $lang, $maxfleet_count, $fleetmax, $planetcount; $Result = ""; if ($planetcount == 1) { $PlanetCountMessage = $planetcount ." ". $lang['gf_cntmone']; } elseif ($planetcount == 0) { $PlanetCountMessage = $lang['gf_cntmnone']; } else { $PlanetCountMessage = $planetcount." " . $lang['gf_cntmsome']; } $LegendPopup = GalaxyLegendPopup (); $Recyclers = pretty_number($CurrentRC); $SpyProbes = pretty_number($CurrentSP); $Result .= "\n"; $Result .= ""; $Result .= "16"; $Result .= ""; $Result .= "". $lang['gf_unknowsp'] .""; $Result .= ""; $Result .= ""; $Result .= "\n"; $Result .= ""; $Result .= "( ".$PlanetCountMessage." )"; $Result .= "". $LegendPopup .""; $Result .= ""; $Result .= "\n"; $Result .= ""; $Result .= "". $CurrentMIP ." ". $lang['gf_mi_title'] .""; $Result .= "". $maxfleet_count ."/". $fleetmax ." ". $lang['gf_fleetslt'] .""; $Result .= ""; $Result .= "". $Recyclers ." ". $lang['gf_rc_title'] ."
"; $Result .= "". $SpyProbes ." ". $lang['gf_sp_title'] .""; $Result .= ""; $Result .= "\n"; $Result .= ""; $Result .= ""; $Result .= ""; $Result .= ""; // $Result .= ""; // $Result .= ""; // $Result .= ""; $Result .= "
"; $Result .= ""; $Result .= "\n"; $Result .= ""; /*
*/ return $Result; } ?>