summaryrefslogblamecommitdiffstats
path: root/application/modules/user/views/scripts/session/index.phtml
blob: 32c8e041378727e27c2d3e702c94eecb65bd71c1 (plain) (tree)























                                                                                                
                                                                         





                                                                                        
<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 $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; ?>