PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /home/jairosvt/public_html/publicidadaf/www/admin/ |
| Server: Linux server2.noticiasdecolima.com 4.18.0-553.30.1.el8_10.x86_64 #1 SMP Tue Nov 26 02:30:26 EST 2024 x86_64 IP: 107.161.180.42 |
| Dir : /home/jairosvt/public_html/publicidadaf/www/admin/userlog-maintenance.php |
<?php
/*
+---------------------------------------------------------------------------+
| Revive Adserver |
| http://www.revive-adserver.com |
| |
| Copyright: See the COPYRIGHT.txt file. |
| License: GPLv2 or later, see the LICENSE.txt file. |
+---------------------------------------------------------------------------+
*/
// Require the initialisation file
require_once '../../init.php';
// Required files
require_once MAX_PATH . '/lib/OA/Dal.php';
require_once MAX_PATH . '/lib/max/language/Loader.php';
require_once MAX_PATH . '/www/admin/config.php';
require_once MAX_PATH . '/lib/max/other/lib-userlog.inc.php';
// Register input variables
phpAds_registerGlobal ('start');
// Security check
OA_Permission::enforceAccount(OA_ACCOUNT_ADMIN);
/*-------------------------------------------------------*/
/* HTML framework */
/*-------------------------------------------------------*/
phpAds_PageHeader("userlog-index");
phpAds_UserlogSelection("maintenance");
// Load the required language files
Language_Loader::load('userlog');
/*-------------------------------------------------------*/
/* Main code */
/*-------------------------------------------------------*/
$doUserLog = OA_Dal::factoryDO('userlog');
if (!$count = $doUserLog->count()) {
$count = 0;
}
$limit = 10;
$start = isset($start) ? (int) $start : 0;
$doUserLog = OA_Dal::factoryDO('userlog');
$doUserLog->orderBy('timestamp DESC');
$doUserLog->limit($start * $limit, $limit);
$doUserLog->find();
echo "<br /><br />";
echo "<table border='0' width='100%' cellpadding='0' cellspacing='0'>";
echo "<tr><td height='25'> <b>".$strDate."</b></td>";
echo "<td height='25'><b>".$strAction."</b></td></tr>";
echo "<td colspan='4' bgcolor='#888888'><img src='" . OX::assetPath() . "/images/break.gif' height='1' width='100%'></td>";
if ($doUserLog->getRowCount() == 0)
{
echo "<tr height='25' bgcolor='#F6F6F6'><td height='25' colspan='4'>";
echo " ".$strNoActionsLogged."</td></tr>";
echo "<td colspan='4' bgcolor='#888888'><img src='" . OX::assetPath() . "/images/break.gif' height='1' width='100%'></td>";
}
$i=0;
while ($doUserLog->fetch() && $row = $doUserLog->toArray())
{
if ($i > 0) echo "<td colspan='4' bgcolor='#888888'><img src='" . OX::assetPath() . "/images/break-l.gif' height='1' width='100%'></td>";
echo "<tr height='25' ".($i%2==0?"bgcolor='#F6F6F6'":"").">";
// Timestamp
echo "<td height='25'> ".strftime($date_format, $row['timestamp']).", ";
echo strftime($minute_format, $row['timestamp'])."</td>";
// User
echo "<td height='25'>";
switch ($row['usertype'])
{
case phpAds_userDeliveryEngine: echo "<img src='" . OX::assetPath() . "/images/icon-generatecode.gif' align='absmiddle'> ".$strDeliveryEngine; break;
case phpAds_userMaintenance: echo "<img src='" . OX::assetPath() . "/images/icon-time.gif' align='absmiddle'> ".$strMaintenance; break;
case phpAds_userAdministrator: echo "<img src='" . OX::assetPath() . "/images/icon-advertiser.gif' align='absmiddle'> ".$strAdministrator; break;
}
echo "</td>";
// Details
echo "<td height='25' align='".$phpAds_TextAlignRight."'>";
if ($row['details'] != '')
{
echo "<img src='" . OX::assetPath() . "/images/icon-zoom.gif' align='absmiddle' border='0'> ";
echo "<a href='userlog-details.php?userlogid=".$row['userlogid']."'>";
echo $strDetails."</a>";
}
else
echo " ";
echo " </td>";
echo "</tr>";
// Space
echo "<tr height='20' valign='top' ".($i%2==0?"bgcolor='#F6F6F6'":"").">";
echo "<td> </td>";
// Action
$action = $strUserlog[$row['action']];
$action = str_replace ('{id}', $row['object'], $action);
echo "<td height='20' colspan='2'><img src='" . OX::assetPath() . "/images/spacer.gif' height='16' width='16' align='absmiddle'> ".$action."</td>";
echo "</tr>";
$i++;
}
if ($doUserLog->getRowCount() > 0)
{
echo "<tr height='1'><td colspan='4' bgcolor='#888888'><img src='" . OX::assetPath() . "/images/break.gif' height='1' width='100%'></td></tr>";
echo "<tr><td height='25' colspan='2'>";
echo "<img src='" . OX::assetPath() . "/images/icon-recycle.gif' border='0' align='absmiddle'> <a href='userlog-delete.php?token=".urlencode(phpAds_SessionGetToken())."'>".$strDeleteLog."</a>";
echo "</td><td height='25' colspan='2' align='".$phpAds_TextAlignRight."'>";
if ($start > 0)
{
echo "<a href='userlog-maintenance.php?start=".($start - 1)."'>";
echo "<img src='" . OX::assetPath() . "/images/arrow-l.gif' border='0' align='absmiddle'>".$strPrevious."</a>";
}
if ($count > ($start + 1) * $limit)
{
if ($start > 0) echo " | ";
echo "<a href='userlog-maintenance.php?start=".($start + 1)."'>";
echo $strNext."<img src='" . OX::assetPath() . "/images/arrow-r.gif' border='0' align='absmiddle'></a>";
}
echo "</td></tr>";
}
echo "</table>";
echo "<br /><br />";
/*-------------------------------------------------------*/
/* HTML framework */
/*-------------------------------------------------------*/
phpAds_PageFooter();
?>