| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?php
- /* $Id: history.php 2899 2007-04-14 15:01:32Z b4rt $ */
- /*******************************************************************************
- 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
- *******************************************************************************/
- // prevent direct invocation
- if ((!isset($cfg['user'])) || (isset($_REQUEST['cfg']))) {
- @ob_end_clean();
- @header("location: ../../index.php");
- exit();
- }
- /******************************************************************************/
- // init template-instance
- tmplInitializeInstance($cfg["theme"], "page.history.tmpl");
- // prepare vars
- $offset = 50;
- $inx = 0;
- $min = 0;
- if (isset($_REQUEST['min']))
- $min = tfb_getRequestVar('min');
- $max = $min + $offset;
- if ($cfg['enable_restrictivetview'] == 0) {
- $sql = "SELECT user_id, file, time FROM tf_log WHERE action=".$db->qstr($cfg["constants"]["url_upload"])." OR action=".$db->qstr($cfg["constants"]["file_upload"])." ORDER BY time desc";
- } else {
- $sql = ($cfg['isAdmin'])
- ? "SELECT user_id, file, time FROM tf_log WHERE action=".$db->qstr($cfg["constants"]["url_upload"])." OR action=".$db->qstr($cfg["constants"]["file_upload"])." ORDER BY time desc"
- : "SELECT user_id, file, time FROM tf_log WHERE user_id=".$db->qstr($cfg["user"])." AND ( action=".$db->qstr($cfg["constants"]["url_upload"])." OR action=".$db->qstr($cfg["constants"]["file_upload"])." ) ORDER BY time desc";
- }
- $result = $db->SelectLimit($sql, $offset, $min);
- $file_result = array();
- while (list($user_id, $file, $time) = $result->FetchRow()) {
- $user_icon = (IsOnline($user_id)) ? "themes/".$cfg['theme']."/images/user.gif" : "themes/".$cfg['theme']."/images/user_offline.gif";
- array_push($file_result, array(
- 'user_id' => $user_id,
- 'user_icon' => $user_icon,
- 'file' => $file,
- 'date' => date($cfg['_DATETIMEFORMAT'], $time)
- )
- );
- $inx++;
- }
- // define vars
- if ($inx == 0) {
- $tmpl->setvar('inx', 1);
- $tmpl->setvar('_NORECORDSFOUND', $cfg['_NORECORDSFOUND']);
- }
- $tmpl->setloop('file_result', $file_result);
- $prev = ($min-$offset);
- if ($prev >= 0) {
- $tmpl->setvar('prevlink', 1);
- $prevlink = 1;
- } else {
- $tmpl->setvar('prevlink', 0);
- $prevlink = 0;
- }
- $next=$min+$offset;
- if ($inx >= $offset) {
- $tmpl->setvar('morelink', 1);
- $morelink = 1;
- } else {
- $tmpl->setvar('morelink', 0);
- $morelink = 0;
- }
- $tmpl->setvar('empty', 0);
- if (!empty($prevlink) && !empty($morelink))
- $tmpl->setvar('empty', 1);
- elseif ((!empty($prevlink)) && (empty($morelink)))
- $tmpl->setvar('empty', 2);
- elseif ((!empty($morelink)) && (empty($prevlink)))
- $tmpl->setvar('empty', 3);
- //
- $tmpl->setvar('prev', $prev);
- $tmpl->setvar('min', $min);
- $tmpl->setvar('max', $max);
- $tmpl->setvar('days_to_keep', $cfg["days_to_keep"]);
- //
- $tmpl->setvar('_SHOWPREVIOUS', $cfg['_SHOWPREVIOUS']);
- $tmpl->setvar('_SHOWMORE', $cfg['_SHOWMORE']);
- $tmpl->setvar('_UPLOADACTIVITY', $cfg['_UPLOADACTIVITY']);
- $tmpl->setvar('_DAYS', $cfg['_DAYS']);
- $tmpl->setvar('_USER', $cfg['_USER']);
- $tmpl->setvar('_FILE', $cfg['_FILE']);
- $tmpl->setvar('_TIMESTAMP', $cfg['_TIMESTAMP']);
- //
- $tmpl->setvar('table_admin_border', $cfg["table_admin_border"]);
- //
- tmplSetTitleBar($cfg["pagetitle"].' - '.$cfg['_UPLOADHISTORY']);
- tmplSetFoot();
- tmplSetIidVars();
- // parse template
- $tmpl->pparse();
- ?>
|