Select Interface Language:
--Select-- Albanian Arabic Bulgarian Catalan Chinese(Simp) Chinese(Trad) Croatian Czech Danish Dutch English Estonian Filipino Finnish French Galician German Greek Hebrew Hindi Indonesian Italian Japanese Korean Latvian Lithuanian Maltese Norwegian Persian ALPHA Polish Portuguese Romanian Russian Serbian Slovak Slovenian Spanish Swedish Thai Turkish Ukrainian Vietnamese
Recent Hits:
• Today:
328
• Yesterday:
1,426
• Trend:
Yearly Hits:
• 2009:
5,463 • 2010:
70,070 • 2011:
122,282 • 2012:
139,559 • 2013:
279,738 • 2014:
211,936 • 2015:
195,374 • 2016:
153,554 • 2017:
110,448 • 2018:
53,122 • 2019:
28,252 • 2020:
70,563 • 2021:
152,497 • 2022:
555,112 • 2023:
224,993 • 2024:
193,226 • 2025:
253,628 • Total:
2,820,141
Average Hits:
• Hourly: 93
• Daily:
2,240
• Monthly:
68,147
• Yearly:
817,756
Objective
ET_Ice
The Allies have set up a position close to an Axis Outpost. Steal their secret War Documents. The Allies have set up a position close to an Axis Outpost. Don't let the Axis steal the secret War Documents!
Hits: 6
Total Maps: 85
Top-Ten Countries visiting Fogfighters Hungary 1 United States 2 China 3 Viet nam 4 Russian Federation 5 France 6 Hungary 7 unknown 8 Canada 9 Ukraine 10 United Kingdom 11 Germany 12 Netherlands 13 Taiwan, Province of China 14 Poland 15 Italy 16 Seychelles 17 Australia 18 Romania 19 Indonesia 20 India 21 Sweden 22 Thailand 23 Brazil 24 Japan 25 South Africa 26 Lithuania 27 Argentina 28 Spain 29 Iran, Islamic Republic of 30 Chile 31 Luxembourg 32 Turkey 33 Moldova, Republic of 34 Korea, Republic of 35 Belarus 36 Malaysia 37 Venezuela 38 Switzerland 39 Singapore 40 Colombia 41 Hong Kong 42 Mexico 43 Mongolia 44 Czech Republic 45 Belize 46 Greece 47 Honduras 48 Estonia 49 Latvia 50 Bulgaria View MS-Analysis
Mods: Community: Clans: League: Anticheat: Other:
International Day of Democracy
There is a problem right now with this block.
Ha a tank elérte az 1. barrikádot, a bank titkos ajtói nyithatóvá válnak, a kastélyban pedig egy újabb spawn hely válik elérhetővé
How to create a top navigation bar as in NukeNews theme
Sometimes, like in the case of the NukeNews theme, the themeheader() function will include the contents of a separate file, written in pure HTML:
$tmpl_file = "themes/NukeNews/header.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
The header.html file, which is "evaluated" here, contains HTML code that creates the "top navigation bar", the one with the "Home", "Topics", "Downloads", "Your Account" etc. links (Figure 14-3 ):
<tr valign="middle" bgcolor="#dedebb">
<td width="15%" nowrap><font class="content" color="#363636">
<b>$theuser</b></font></td>
<td align="center" height="20" width="70%"><font class="content"><B>
<A href="index.php">Home</a>
·
<A href="modules.php?name=Topics">Topics</a>
·
<A href="modules.php?name=Downloads">Downloads</a>
·
<A href="modules.php?name=Your_Account">Your Account</a>
·
<A href="modules.php?name=Submit_News">Submit News</a>
·
<A href="modules.php?name=Top">Top 10</a>
</B></font>
</td>
<td align="right" width="15%"><font class="content"><b>
<script type="text/javascript">
<!-- // Array ofmonth Names
var monthNames = new Array(
"January","February","March","April","May","June","July","August","September",
"October","November","December");
var now = new Date();
thisYear = now.getYear();
if(thisYear < 1900) {thisYear += 1900}; // corrections if Y2K display problem
document.write(monthNames[now.getMonth()] + " " + now.getDate() + ", " + thisYear);
// -->
</script></b></font></td>
<td> </td>
</tr>
Thus, if you want to delete or change this top navigation bar, you will have to delete or change the above code to reflect your needs (see How to change the top menu (top navigation bar) of PHP-Nuke and how to remove the search box from the top menu of PHP-Nuke ). A similar technique is used in the Odyssey theme, where one
uses the contents of themes/Odyssey/left_center.html, additionally to themes/Odyssey/header.html.