3 <p>This is the error log. Any PHP errors that occur are logged here along with detailed context information.</p>
5 <table style='width:100%'>
7 <th style='width:100px'>
10 <th style='width:150px'>
13 <th style='width:100px'>
16 <th style='width:75px'>
23 <?php foreach ($this->errors as $id => $error) { ?>
25 <td><a href='/simplicity/error/details/id/<?php echo $error->id; ?>'>Details</a> - <a id='del<?php echo $error->id; ?>' class='delete' href='#'>Delete</a></td>
26 <td><?php echo date('d M y H:i:s',$error->date); ?></td>
27 <td><a class='nolink' title='<?php echo $error->file; ?>' href='#'><?php echo basename($error->file); ?></a></td>
28 <td><?php echo $error->line; ?></td>
29 <td><?php echo $error->msg; ?></td>
34 <script type="text/javascript">
36 $('a.delete').click(function() {
37 if (confirm('Are you sure you want to delete this?')) {
38 var id = $(this).attr('id').replace('del','');
39 var row = $(this).parent('td').parent('tr');
42 url: '/simplicity/error/data/'+id,