Revision 134, 1.0 KB
(checked in by exi, 14 years ago)
|
Added standings-management.
Changed installer step 3 to only use POST data now.
Character portraits should now look a bit better.
Changed all smarty template requests to use a wrapper function.
Modified standard page for IGB.
Added php compat file to reduce minimal needed version to 4.0.9.
|
Line | |
---|
1 | <?php |
---|
2 | |
---|
3 | /** |
---|
4 | * Author: Doctor Z |
---|
5 | * eMail: east4now11@hotmail.com |
---|
6 | * |
---|
7 | */ |
---|
8 | |
---|
9 | require_once("common/class.corp.php"); |
---|
10 | require_once("common/class.alliance.php"); |
---|
11 | require_once("common/class.killlist.php"); |
---|
12 | require_once("common/class.killlisttable.php"); |
---|
13 | require_once("class.rss.php"); |
---|
14 | |
---|
15 | header('Content-Type: text/xml'); |
---|
16 | $html .= "<"."?xml version=\"1.0\"?"."> |
---|
17 | <rss version=\"2.0\"> |
---|
18 | <channel> |
---|
19 | <title>".KB_TITLE."</title> |
---|
20 | <description>20 Most Recent Kills</description> |
---|
21 | <link>http://".KB_HOST."</link> |
---|
22 | <copyright>".KB_TITLE."</copyright>\n"; |
---|
23 | |
---|
24 | $klist = new KillList(); |
---|
25 | $klist->setOrdered(true); |
---|
26 | if (CORP_ID) |
---|
27 | { |
---|
28 | $klist->addInvolvedCorp(new Corporation(CORP_ID)); |
---|
29 | } |
---|
30 | if (ALLIANCE_ID) |
---|
31 | { |
---|
32 | $klist->addInvolvedAlliance(new Alliance(ALLIANCE_ID)); |
---|
33 | } |
---|
34 | |
---|
35 | if ($_GET['scl_id']) |
---|
36 | { |
---|
37 | $klist->addVictimShipClass(new ShipClass($_GET['scl_id'])); |
---|
38 | } |
---|
39 | else |
---|
40 | { |
---|
41 | $klist->setPodsNoobShips(false); |
---|
42 | } |
---|
43 | $klist->setLimit(20); |
---|
44 | |
---|
45 | $table = new RSSTable($klist); |
---|
46 | $html .= $table->generate(); |
---|
47 | |
---|
48 | $html .= "</channel> |
---|
49 | </rss>"; |
---|
50 | echo $html; |
---|
51 | ?> |
---|