Revision 30, 472 bytes
(checked in by exi, 16 years ago)
|
Added base killmail importer, it takes killmails from a specified directory, 1 mail per file.
Changed session interface to php, that reduces siteload by one mysql query and offers room for page variables.
Removed the need to enter a password to post comments if you're logged in as admin.
|
Line | |
---|
1 | <?php |
---|
2 | require_once("class.box.php"); |
---|
3 | |
---|
4 | $menubox = new MenuBox(); |
---|
5 | $menubox->addOption("Generic", "?a=admin"); |
---|
6 | $menubox->addOption("Contracts", "?a=admin_cc&op=view&type=contract"); |
---|
7 | $menubox->addOption("Campaigns", "?a=admin_cc&op=view&type=campaign"); |
---|
8 | $menubox->addOption("Synchronization", "?a=admin_sync"); |
---|
9 | $menubox->addOption("Mods", "?a=admin_mods"); |
---|
10 | $menubox->addOption("Kill Import", "?a=kill_import"); |
---|
11 | //$menubox->addOption("Rental", "?a=admin_rental"); |
---|
12 | ?> |
---|