Added Node Session

This commit is contained in:
Deon George
2012-12-12 15:00:03 +11:00
parent b415296c62
commit cf7f5256ae
7 changed files with 149 additions and 19 deletions

View File

@@ -0,0 +1,19 @@
<!-- $o = ORM::factory('NODE')->actlog_session() -->
<table class="box-full">
<tr>
<td class="head" colspan="2">Client Session Detail</td>
</tr>
<tr>
<td class="spacer">&nbsp;</td>
</tr>
<tr>
<td>Start</td>
<td>Message</td>
</tr>
<?php $i=0; foreach ($o as $alo) { ?>
<tr class="<?php echo $i++%2 ? 'odd' : 'even'; ?>">
<td class="data"><?php echo $alo->display('DATE_TIME'); ?></td>
<td class="data"><?php echo $alo->display('MESSAGE'); ?></td>
</tr>
<?php } ?>
</table>