74 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| /*
 | |
|  ----------------------------------------------------------------------
 | |
|  LICENSE
 | |
| 
 | |
|  This program is free software; you can redistribute it and/or
 | |
|  modify it under the terms of the GNU General Public License (GPL)
 | |
|  as published by the Free Software Foundation; either version 2
 | |
|  of the License, or (at your option) any later version.
 | |
| 
 | |
|  This program is distributed in the hope that it will be useful,
 | |
|  but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  GNU General Public License for more details.
 | |
| 
 | |
|  To read the license please visit http://www.gnu.org/copyleft/gpl.html
 | |
|  ----------------------------------------------------------------------
 | |
| */
 | |
| 
 | |
| /**
 | |
|  * Show a list of all found log files for an account
 | |
|  * and allow to see / tail / download them
 | |
|  * 
 | |
|  * @copyright AlternC-Team 2000-2017 https://alternc.com/ 
 | |
|  */
 | |
| 
 | |
| require_once("../class/config.php");
 | |
| include_once("head.php");
 | |
| 
 | |
| $list=$log->list_logs_directory_all($log->get_logs_directory());
 | |
| ?>
 | |
| <h3><?php __("Logs Listing"); ?></h3>
 | |
| <hr id="topbar"/>
 | |
| <br />
 | |
| <?php
 | |
| echo $msg->msg_html_all();
 | |
| 
 | |
| if(!$list || empty($list['dir'])){
 | |
|   $msg->raise("INFO", "logs", _("You have no web logs to list at the moment."));  
 | |
|   echo $msg->msg_html_all();
 | |
|   include_once('foot.php');
 | |
|   exit;
 | |
| }
 | |
| ?>
 | |
| <p>
 | |
| <?php __("Here are web logs of your account.<br/>You can download them to do specific extract and statistics.");?>
 | |
| </p>
 | |
| <table class="tlist">
 | |
|   <thead>
 | |
|     <tr><th><?php __("Name");?></th><th align=center><?php __("Creation Date"); ?></th><th><?php __("Size"); ?></th><th><?php __("Download link");?></th></tr>
 | |
|   </thead>
 | |
|   <tbody>
 | |
| <?php
 | |
| //listing of every logs of the current user.
 | |
| while (list($key,$val)=each($list)){
 | |
|   foreach($val as $k => $v){
 | |
|   ?>
 | |
|   <tr class="lst">
 | |
|   <td><?php echo $v['name']; ?></td>  
 | |
|   <td><?php echo $v['creation_date']; ?></td>  
 | |
|   <td><?php echo format_size($v['filesize']); ?></td>  
 | |
|   <td><?php echo "<a href=\"logs_download.php?file=".$v['downlink']."\">"._("Download")."</a>";
 | |
|     if ((time()-14400)<$v['mtime']) {
 | |
|       echo "   <a href=\"logs_tail.php?file=".$v['downlink']."\">"._("Follow")."</a>";
 | |
|     }
 | |
| ?></td>
 | |
|   </tr>
 | |
| <?php
 | |
|   } //foreach
 | |
| } // while
 | |
| ?>
 | |
|   </tbody>
 | |
| </table>
 |