source: branches/posledni/stat/stat.php

Last change on this file was 695, checked in by george, 15 years ago
  • Upraveno: Použití názvů světů v URL namísto RealmIndex.
  • Přidáno: Stránka zobrazující informace o jednotlivých světech.
  • Odebráno: Nezobrazovat kategorie aktualit. Stačí jen jedna.
  • Přidáno: Funkce pro generování XML seznamu hráčů ve stylu WoWEmu pro wowstatus.
File size: 356 bytes
Line 
1<?php
2
3include('../inc/config.php');
4include('../inc/database.php');
5include('../inc/system.php');
6include('../inc/realm.php');
7
8$System = new System($Config);
9$Realm = new Realm($System, $Config['Web']['DefaultRealmIndex']);
10
11$Output = $Realm->WoWEmuStat();
12Header('Content-Type: text/xml');
13Header('Content-Length: '.strlen($Output));
14echo($Output);
15
16?>
Note: See TracBrowser for help on using the repository browser.