tpl_logs.php

来自「一款文件上传程序」· PHP 代码 · 共 45 行

PHP
45
字号
<!-- tpl_logs.php -->
<h1>Daily logs</h1>

<p style="background-color:#FAFAFA;padding:5px;margin-bottom:4px;color:#404040;">
    <strong class="s2">Actions:</strong> &nbsp;
    <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/default/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 + =
减小字号Ctrl + -
显示快捷键?