Orders Admin Log Button
This commit is contained in:
parent
cc5ddcf537
commit
3b44d73108
|
@ -445,6 +445,9 @@ span.version {
|
||||||
table.grid td.date{
|
table.grid td.date{
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
#log-section p {
|
||||||
|
margin-top:20px;
|
||||||
|
}
|
||||||
|
|
||||||
/* ADMIN */
|
/* ADMIN */
|
||||||
#security-warning li {
|
#security-warning li {
|
||||||
|
|
|
@ -514,6 +514,16 @@ if ($_['cronErrors']) {
|
||||||
</tr>
|
</tr>
|
||||||
<?php endforeach;?>
|
<?php endforeach;?>
|
||||||
</table>
|
</table>
|
||||||
|
<p><?php p($l->t('What to log'));?> <select name='loglevel' id='loglevel'>
|
||||||
|
<?php for ($i = 0; $i < 5; $i++):
|
||||||
|
$selected = '';
|
||||||
|
if ($i == $_['loglevel']):
|
||||||
|
$selected = 'selected="selected"';
|
||||||
|
endif; ?>
|
||||||
|
<option value='<?php p($i)?>' <?php p($selected) ?>><?php p($levelLabels[$i])?></option>
|
||||||
|
<?php endfor;?>
|
||||||
|
</select></p>
|
||||||
|
|
||||||
<?php if ($_['logFileSize'] > 0): ?>
|
<?php if ($_['logFileSize'] > 0): ?>
|
||||||
<a href="<?php print_unescaped(OC::$server->getURLGenerator()->linkToRoute('settings.LogSettings.download')); ?>" class="button" id="downloadLog"><?php p($l->t('Download logfile'));?></a>
|
<a href="<?php print_unescaped(OC::$server->getURLGenerator()->linkToRoute('settings.LogSettings.download')); ?>" class="button" id="downloadLog"><?php p($l->t('Download logfile'));?></a>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
@ -528,16 +538,6 @@ if ($_['cronErrors']) {
|
||||||
</em>
|
</em>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<p><?php p($l->t('What to log'));?> <select name='loglevel' id='loglevel'>
|
|
||||||
<?php for ($i = 0; $i < 5; $i++):
|
|
||||||
$selected = '';
|
|
||||||
if ($i == $_['loglevel']):
|
|
||||||
$selected = 'selected="selected"';
|
|
||||||
endif; ?>
|
|
||||||
<option value='<?php p($i)?>' <?php p($selected) ?>><?php p($levelLabels[$i])?></option>
|
|
||||||
<?php endfor;?>
|
|
||||||
</select></p>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="section" id="admin-tips">
|
<div class="section" id="admin-tips">
|
||||||
|
|
Loading…
Reference in New Issue