nextcloud/settings/templates/admin.php

42 lines
1.1 KiB
PHP
Raw Normal View History

<?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.
2011-10-16 23:08:44 +04:00
*/
$levels=array('Debug','Info','Warning','Error','Fatal');
?>
<?php foreach($_['forms'] as $form){
echo $form;
2011-10-16 23:08:44 +04:00
};?>
<fieldset class="personalblock">
2012-04-16 14:21:12 +04:00
<legend><strong><?php echo $l->t('Log');?></strong></legend>
Log level: <select name='loglevel' id='loglevel'>
2011-10-16 23:08:44 +04:00
<option value='<?php echo $_['loglevel']?>'><?php echo $levels[$_['loglevel']]?></option>
<?php for($i=0;$i<5;$i++):
if($i!=$_['loglevel']):?>
<option value='<?php echo $i?>'><?php echo $levels[$i]?></option>
<?php endif;
endfor;?>
</select>
2012-04-16 14:21:12 +04:00
<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 OC_Util::formatDate($entry->time);?>
</td>
</tr>
<?php endforeach;?>
</table>
<input id='moreLog' type='button' value='<?php echo $l->t('More');?>...'></input>
2011-10-16 23:08:44 +04:00
</fieldset>