summaryrefslogtreecommitdiffstats
path: root/application/modules/user/views/scripts/session/index.phtml
diff options
context:
space:
mode:
Diffstat (limited to 'application/modules/user/views/scripts/session/index.phtml')
-rw-r--r--application/modules/user/views/scripts/session/index.phtml31
1 files changed, 31 insertions, 0 deletions
diff --git a/application/modules/user/views/scripts/session/index.phtml b/application/modules/user/views/scripts/session/index.phtml
new file mode 100644
index 0000000..bb9f1e2
--- /dev/null
+++ b/application/modules/user/views/scripts/session/index.phtml
@@ -0,0 +1,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; ?>