aboutsummaryrefslogtreecommitdiff
path: root/modules/rudi/views/view.weapons.php
blob: 2cb033cc282a19f5d54ab5b5bf950647b2014092 (plain) (blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php define('BLOCK_RIGHT_DISABLE','block_right_disable'); ?>
<?php $medals_path = $this->images_path . "/medals/"; ?>

<html>
<head>
  <title>Awards and Medals</title>

<style type="text/css">
/*th.header {
  width:175px;
  background:#333;
}

td.rudi {
  text-align: center;
  vertical-align: middle;
} */
</style>
  
</head>
<body>

<?php $weapons = $this->getWeapons("ORDER BY role ASC, caliber ASC, model ASC"); ?>
<center>
<table class="rudiroster" cellspacing="1" cellpadding="0" align="center">
<tr><th width="250px">Model</th><th width="250px">Caliber</th><th width="250px">Role</th></tr>
  <?php     
	$num=0;
	$role = "Assault";
	foreach($weapons as $weapon){
		if($role != $weapon['role']){
			echo '<tr class="null" style="height:3px;"></tr>';		
		}
		if($num%2==0)
			echo '<tr class="high">';
		else	
			echo "<tr>";
		echo "<td>".$weapon['model']."</td><td>".$weapon['caliber']."</td><td>".$weapon['role']."</td></tr>";
		$role = $weapon['role'];
		$num++;
	}

  ?>

</table>
</center>
<!-- grr wtf
    <table align="center" style="width: 100%;">
      <tr>
        <th scope="col" class="header" style="width:1px;">Image</th>
        <th scope="col" class="header" style="width:1px;">Award</th>
        <th scope="col" class="header">Description</th>
      </tr>

  
  <?php //foreach($this->awards as $award): ?>

      <tr>
        <td align='center' class="rudi"><img src="/rudi/images/medals/<?php //echo $award->image; ?>"></img>&nbsp;</td>
        <td align='center' class="rudi"><?php //echo $award->name; ?>&nbsp;</td>
        <td align='left'><?php //echo wordwrap($award->description,80,"<br/>"); ?>&nbsp;</td>
      </tr>
      
  <?php //endforeach; ?>
  

    </table>
-->
</body>
</html>