index.phtml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <div class="section">
  2. <div class="row">
  3. <div class="small-12 columns text-center">
  4. <h1><i class="fa fa-list-alt"></i> Audit Log</h1>
  5. </div>
  6. </div>
  7. <div class="row">
  8. <div class="small-12 columns">
  9. <?php
  10. if(count($this->audit) > 0)
  11. {
  12. echo "
  13. <table width=\"100%\">
  14. <thead>
  15. <tr>
  16. <th>Time Stamp</th>
  17. <th>Account</th>
  18. <th>Action</th>
  19. <th>Item</th>
  20. </tr>
  21. </thead>
  22. <tbody>
  23. ";
  24. foreach($this->audit as $log)
  25. {
  26. echo "
  27. <tr>
  28. <td>".$log['timestamp']."</td>
  29. <td><span data-tooltip aria-haspopup=\"true\" class=\"has-tip\" title=\"".$log['account']['firstName']." ".$log['account']['lastName']."\">".$log['account']['username']."</span></td>
  30. <td>".$log['action']."</td>
  31. <td>".$log['item']."</td>
  32. </tr>
  33. ";
  34. }
  35. echo "
  36. </tbody>
  37. </table>";
  38. }
  39. ?>
  40. </div>
  41. </div>
  42. </div>