parent
a8ee2f46f6
commit
c7e58da11f
@ -1,6 +1,38 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
function show_ticket_log(){
|
function show_ticket_log(){
|
||||||
|
|
||||||
|
//if logged in
|
||||||
|
if(WebUsers::isLoggedIn() && isset($_GET['id'])){
|
||||||
|
|
||||||
|
$result['ticket_id'] = filter_var($_GET['id'], FILTER_SANITIZE_NUMBER_INT);
|
||||||
|
$target_ticket = new Ticket();
|
||||||
|
$target_ticket->load_With_TId($result['ticket_id']);
|
||||||
|
|
||||||
|
if(($target_ticket->getAuthor() == $_SESSION['ticket_user']->getTUserId()) || WebUsers::isAdmin() ){
|
||||||
|
|
||||||
|
$result['ticket_title'] = $target_ticket->getTitle();
|
||||||
|
$ticket_logs = Ticket_Log::getLogsOfTicket( $result['ticket_id']);
|
||||||
|
$result['ticket_logs'] = Gui_Elements::make_table($ticket_logs, Array("getTLogId","getTimestamp","getAuthor()->getExternId","getAction","getArgument()"), Array("tLogId","timestamp","authorExtern","action","argument"));
|
||||||
|
$i = 0;
|
||||||
|
foreach( $result['ticket_logs'] as $log){
|
||||||
|
$result['ticket_logs'][$i]['author'] = WebUsers::getUsername($log['authorExtern']);
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
if(WebUsers::isAdmin()){
|
||||||
|
$result['isAdmin'] = "TRUE";
|
||||||
|
}
|
||||||
|
return $result;
|
||||||
|
|
||||||
|
}else{
|
||||||
|
//ERROR: No access!
|
||||||
|
$_SESSION['error_code'] = "403";
|
||||||
|
header("Location: index.php?page=error");
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
//ERROR: not logged in!
|
||||||
|
header("Location: index.php");
|
||||||
|
exit;
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue