Revision 47, 0.7 KB
(checked in by exi, 14 years ago)
|
Added Custom Shipvalue System, to be enabled in options, as always with autoupgrade(tm) ;)
Changed commenttablefield id to lowercase via autoupgrade.php, compat added in comments.php
Disabled immediate portrait update on IGB-Access
|
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("Ship Values", "?a=admin_shp_val"); |
---|
9 | $menubox->addOption("Synchronization", "?a=admin_sync"); |
---|
10 | $menubox->addOption("Mods", "?a=admin_mods"); |
---|
11 | $menubox->addOption("Kill Import - files", "?a=kill_import"); |
---|
12 | $menubox->addOption("Kill Import - csv", "?a=kill_import_csv"); |
---|
13 | $menubox->addOption("Kill Export - csv", "?a=kill_export_search"); |
---|
14 | //$menubox->addOption("Rental", "?a=admin_rental"); |
---|
15 | ?> |
---|