summaryrefslogtreecommitdiffstats
path: root/application/modules/user/views/scripts/session/index.phtml
blob: bb9f1e29126cd073f833986fc11b3fa6c05dd04f (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
<h1>Session</h1>
<?php echo $this->searchform; ?>
<table>
<tr>
	<th>ID <span class='code'>sessionID</span></th>
	<th>alphasessionID <span class='code'>alphasessionID</span></th>
	<th>ClientID <span class='code'>clientID</span></th>
	<th>BootmenuentryID <span class='code'>bootmenyentryID</span></th>
	<th>BootOsID <span class='code'>bootosID</span></th>
	<th>BootIsoID <span class='code'>bootisoID</span></th>
	<th>MembershipID <span class='code'>membershipID</span></th>
	<th>Time <span class='code'>time</span></th>
	<th>IP <span class='code'>ip</span></th>
	<th>IPv6 <span class='code'>ip6</span></th>
</tr>
<?php foreach ($this->sessions as $session): ?>
	<tr class=entry>
		<td><?php echo $this->escape($session->getID()) ?></td>
		<td><?php echo $this->escape($session->getAlphasessionID()) ?></td>
		<td><?php echo $this->escape($session->getClientID()) ?></td>
		<td><?php echo $this->escape($session->getBootmenuentryID()) ?></td>
		<td><?php echo $this->escape($session->getBootosID()) ?></td>
		<td><?php echo $this->escape($session->getBootisoID()) ?></td>
		<td><?php echo $this->escape($session->getMembershipID()) ?></td>		
		<td><?php echo date('d.m.Y H:i',$this->escape($session->getTime())) ?></td>
		<td><?php echo $this->escape($session->getIp()) ?></td>
		<td><?php echo $this->escape($session->getIp6()) ?></td>		
	</tr>
<?php endforeach ?> 
</table>
<?php echo $this->pagination; ?>