diff options
Diffstat (limited to 'settings/templates/log.php')
-rw-r--r-- | settings/templates/log.php | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/settings/templates/log.php b/settings/templates/log.php deleted file mode 100644 index da5defc320e..00000000000 --- a/settings/templates/log.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php /** - * Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com> - * This file is licensed under the Affero General Public License version 3 or later. - * See the COPYING-README file. - */ -$levels=array('Debug','Info','Warning','Error','Fatal'); -?> - -<div id="controls"> - -</div> -<table id='log'> - <?php foreach($_['entries'] as $entry):?> - <tr> - <td> - <?php echo $levels[$entry->level];?> - </td> - <td> - <?php echo $entry->app;?> - </td> - <td> - <?php echo $entry->message;?> - </td> - <td> - <?php echo $l->l('datetime',$entry->time);?> - </td> - </tr> - <?php endforeach;?> -</table> -<input id='moreLog' type='button' value='<?php echo $l->t('More');?>...'></input> |