Files
TravianZ/Admin/Templates/report.tpl
T
novgorodschi catalin 0dea1068b3 Fix visualisation in report
Fix visualisation in report
2026-06-26 11:14:42 +03:00

154 lines
7.8 KiB
Smarty

<?php
#################################################################################
## -= YOU MAY NOT REMOVE OR CHANGE THIS NOTICE =- ##
## --------------------------------------------------------------------------- ##
## Filename : report.tpl ##
## Type : Admin Panel Frontend ##
## --------------------------------------------------------------------------- ##
## Developed by : ronix (Original) ##
## Refactored by : iopietro ##
## Redesign by : Shadow ##
## --------------------------------------------------------------------------- ##
## Contact : cata7007@gmail.com ##
## Project : TravianZ ##
## GitHub : https://github.com/Shadowss/TravianZ ##
## --------------------------------------------------------------------------- ##
## License : TravianZ Project ##
## Copyright : TravianZ (c) 2010-2025. All rights reserved. ##
## --------------------------------------------------------------------------- ##
#################################################################################
if($_SESSION['access'] < MULTIHUNTER) die("Access Denied!");
include_once("../GameEngine/Generator.php");
include_once("../GameEngine/Technology.php");
include_once("../GameEngine/Message.php");
$bid = isset($_GET['bid'])? (int)$_GET['bid'] : 0;
$search = isset($_GET['q'])? $database->escape($_GET['q']) : '';
$filter = isset($_GET['f'])? $_GET['f'] : 'all';
$page = max(1, (int)($_GET['page']?? 1));
$limit = 50;
$offset = ($page-1)*$limit;
// ---- SINGLE REPORT - PĂSTRĂM VIZUALIZAREA CLASICĂ ----
if($bid > 0){
$rep = $database->getNotice2($bid);
if(!$rep) die("Report ID $bid doesn't exist!");
$isAdmin = true;
$message = new Message();
$message->readingNotice = $rep;
?>
<link href="../<?php echo GP_LOCATE;?>lang/en/lang.css?f4b7d" rel="stylesheet" type="text/css">
<link href="../<?php echo GP_LOCATE;?>lang/en/compact.css?f4b7i" rel="stylesheet" type="text/css">
<link href="../<?php echo GP_LOCATE;?>travian.css?e21d2" rel="stylesheet" type="text/css">
<style>
/* FIX: cifre negre - forteaza vizibilitate */
#content.reports { background:#fff; padding:15px; border-radius:6px; color:#000; }
#content.reports h1 { color:#000 !important; }
#content.reports table td,
#content.reports table th,
#content.reports div,
#content.reports span {
color:#000 !important;
opacity:1 !important;
}
#content.reports td { font-weight:600 !important; }
</style>
<div style="max-width:900px;margin:20px auto">
<a href="?p=report" style="font-size:12px"> Back to reports</a>
<div id="content" class="reports" style="margin-top:10px">
<h1>Report</h1>
<?php include("../Templates/Notice/".$message->getReportType($rep['ntype']).".tpl");?>
</div>
</div>
<?php
return;
}
// ---- LISTA RAPOARTE CU FILTRE ----
$where = "1";
if($search) $where.= " AND (n1 LIKE '%$search%' OR n2 LIKE '%$search%')";
$filterMap = [
'attacks' => "ntype IN (2,9)", // attack + artefact attack
'defences' => "ntype IN (3)",
'scouts' => "ntype IN (4,14)",
'trades' => "ntype IN (5)"
];
if(isset($filterMap[$filter])) $where.= " AND ".$filterMap[$filter];
$total = $database->query("SELECT COUNT(*) c FROM ".TB_PREFIX."ndata WHERE $where")->fetch_assoc()['c'];
$reps = $database->query("SELECT * FROM ".TB_PREFIX."ndata WHERE $where ORDER BY time DESC LIMIT $offset,$limit")->fetch_all(MYSQLI_ASSOC);
$typeNames = [1=>'reinforcement',2=>'attack',3=>'defence',4=>'scout',5=>'trade',6=>'wonder',7=>'settlement',8=>'oasis',9=>'artefact',10=>'adventure',14=>'spy'];
?>
<style>
.reports-wrap{max-width:1100px;margin:20px auto;font-family:Verdana;color:#222}
.reports-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px;flex-wrap:wrap;gap:8px}
.reports-head h1{margin:0;font-size:18px;color:#111}
.filters{display:flex;gap:6px}
.filters a{padding:6px 10px;border:1px solid #ddd;background:#f7f7f7;border-radius:4px;font-size:12px;text-decoration:none;color:#333}
.filters a.active{background:#333;color:#fff;border-color:#333}
.search-box input{padding:6px 8px;border:1px solid #ccc;border-radius:4px;font-size:12px;width:200px;background:#fff;color:#111}
.reports-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:10px}
.rep-card{background:#fff;border:1px solid #ddd;border-radius:6px;padding:10px;font-size:12px;box-shadow:0 1px 2px rgba(0,0,0,.04);transition:.15s;color:#222}
.rep-card:hover{box-shadow:0 2px 6px rgba(0,0,0,.1);transform:translateY(-1px)}
.rep-top{display:flex;justify-content:space-between;margin-bottom:6px}
.rep-id{font-weight:bold;color:#111}
.rep-time{color:#666;font-size:11px}
.rep-body{color:#333;line-height:1.4;max-height:38px;overflow:hidden}
.rep-foot{display:flex;justify-content:space-between;margin-top:8px;font-size:11px;color:#555}
.badge{padding:2px 6px;border-radius:3px;background:#eee;font-size:10px;text-transform:uppercase;color:#333}
.badge.attack{background:#ffe0e0;color:#c00}.badge.defence{background:#e0f0ff;color:#0066cc}
.badge.scout{background:#fff4e0;color:#e67e22}.badge.trade{background:#e8f5e9;color:#2e7d32}
.pagination{margin-top:14px;text-align:center}
.pagination a{padding:5px 9px;margin:0 2px;border:1px solid #ddd;text-decoration:none;color:#333;font-size:12px;border-radius:3px;background:#fff}
.pagination a.active{background:#333;color:#fff}
</style>
<div class="reports-wrap">
<div class="reports-head">
<h1>📜 Players Reports (<?php echo number_format($total);?>)</h1>
<div class="filters">
<?php foreach(['all'=>'All','attacks'=>'Attacks','defences'=>'Defences','scouts'=>'Scouts','trades'=>'Trades'] as $k=>$v){?>
<a href="?p=report&f=<?php echo $k;?>&q=<?php echo urlencode($search);?>" class="<?php echo $filter==$k?'active':'';?>"><?php echo $v;?></a>
<?php }?>
</div>
<form class="search-box" method="get">
<input type="hidden" name="p" value="report">
<input type="hidden" name="f" value="<?php echo htmlspecialchars($filter);?>">
<input type="text" name="q" placeholder="Search..." value="<?php echo htmlspecialchars($search);?>">
</form>
</div>
<div class="reports-grid">
<?php foreach($reps as $r){
$type = $typeNames[$r['ntype']]?? 'report';
$user = $database->getUserField($r['uid'],'username',0);
$time = date('d.m H:i',$r['time']);
$preview = strip_tags($r['topic']?? $r['n1'].' '.$r['n2']);
$preview = mb_substr($preview,0,80);
?>
<a href="?p=report&bid=<?php echo $r['id'];?>" style="text-decoration:none;color:inherit">
<div class="rep-card">
<div class="rep-top">
<span class="rep-id">#<?php echo $r['id'];?> <?php echo htmlspecialchars($user);?></span>
<span class="rep-time"><?php echo $time;?></span>
</div>
<div class="rep-body"><?php echo htmlspecialchars($preview);?>...</div>
<div class="rep-foot">
<span class="badge <?php echo $type;?>"><?php echo $type;?></span>
<span style="color:#666">view </span>
</div>
</div>
</a>
<?php }?>
</div>
<?php if($total > $limit){ $pages = ceil($total/$limit);?>
<div class="pagination">
<?php for($p=1;$p<=$pages && $p<=15;$p++){?>
<a href="?p=report&page=<?php echo $p;?>&f=<?php echo urlencode($filter);?>&q=<?php echo urlencode($search);?>" class="<?php echo $p==$page?'active':'';?>"><?php echo $p;?></a>
<?php }?>
</div>
<?php }?>
</div>