📄 tpl_logs.php
字号:
<!-- tpl_logs.php -->
<h1>Daily logs</h1>
<p style="background-color:#FAFAFA;padding:5px;margin-bottom:4px;color:#404040;">
<strong class="s2">Actions:</strong>
<a href="<?=$delete_all_url?>" class="special" onclick="return confirm('Are you sure?');">Delete all log files</a> -
<a href="<?=$archive_url?>" class="special">Archive</a> (Combine all archives here into one single file)
</p>
<?php /* If log files found */ if ( count ( $log_files ) ) : ?>
<table id="log_tbl" cellspacing="1" cellpadding="2" style="width: 100%;">
<tr class="color3" skip_alternate="skip_alternate" style="line-height:1.7em;">
<td style="width:80%;"><strong class="s1">Log files</strong></td>
<td class="ct"><strong class="s1">Size</strong></td>
<td class="ct"><strong class="s1">Action</strong></td>
</tr>
<?php /* list log files */ reset ( $log_files ); while ( list ( $i, $file ) = each ( $log_files ) ) : ?>
<tr class="<?=$i&1?'color1':'color2'?>">
<td><a href="<?=$file['view_url']?>"><?=$file['name']?></a></td>
<td class="ct"><?=$file['size']?></td>
<td class="ct"><a href="<?=$file['delete_url']?>" class="special" onclick="return confirm('Are you sure?');"><img src="templates/default2/images/b_delete.gif" alt="" /></a></td>
</tr>
<?php endwhile; ?>
<tr>
<td colspan="3"><span class="smalltext">Total log files size: <?=$log_total_size?></span></td>
</tr>
</table>
<table cellspacing="1" cellpadding="4" style="width: 100%;margin-top:5px;">
<tr class="color3">
<td colspan="2"><strong class="s1"><?=$log_file?></strong></td>
</tr>
<tr class="color2">
<td colspan="2">
<textarea cols="166" rows="20" style="font-size:0.9em;"><?=$log_data?></textarea>
</td>
</tr>
</table>
<?php /* no logs found */ else: ?>
<p style="text-align:center;">No log files found.</p>
<?php endif; ?>
<script type="text/javascript">
alternateRowColor(getObj('log_tbl'),'tr','#F5F5F5','#FBFBFB');
</script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -