-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcorporation.php
More file actions
29 lines (24 loc) · 760 Bytes
/
corporation.php
File metadata and controls
29 lines (24 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
require_once 'config.php';
$tpl->corpID = filter_input(INPUT_GET, 'corporation', FILTER_VALIDATE_INT);
$tpl->corpName = Db::qColumn("SELECT `itemName` FROM `invUniqueNames` WHERE `itemID` = ?", array($tpl->corpID));
$tpl->lpStore = new LpStore($tpl->corpID);
$tpl->filterGroups = array(
2 => 'Blueprints',
4 => 'Ships',
9 => 'Modules',
11 => 'Charges',
19 => 'Charters',
24 => 'Implants/Boosters',
150 => 'Skills',
157 => 'Drones',
475 => 'Datacores',
// 477 => 'Starbase & Sovereignty Structures',
// 955 => 'Ship Modifications',
// 1320 => 'Planetary Infrastructure',
1396 => 'Apparel',
// 1659 => 'Special Edition Assets',
// 350001 => 'Infantry Gear'
);
asort($tpl->filterGroups);
$tpl->display('corporation.html');