945 lines
34 KiB
PHP
945 lines
34 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* This file is part of HESK - PHP Help Desk Software.
|
|
*
|
|
* (c) Copyright Klemen Stirn. All rights reserved.
|
|
* https://www.hesk.com
|
|
*
|
|
* For the full copyright and license agreement information visit
|
|
* https://www.hesk.com/eula.php
|
|
*
|
|
*/
|
|
|
|
/* Check if this is a valid include */
|
|
if (!defined('IN_SCRIPT')) {die('Invalid attempt');}
|
|
|
|
// List of staff and check their permissions
|
|
$admins = array();
|
|
$can_assign_to = array();
|
|
$res2 = hesk_dbQuery("SELECT `id`,`name`,`isadmin`,`heskprivileges` FROM `".hesk_dbEscape($hesk_settings['db_pfix'])."users` ORDER BY `name` ASC");
|
|
while ($row = hesk_dbFetchAssoc($res2))
|
|
{
|
|
$admins[$row['id']] = $row['name'];
|
|
|
|
if ($row['isadmin'] || strpos($row['heskprivileges'], 'can_view_tickets') !== false)
|
|
{
|
|
$can_assign_to[$row['id']] = $row['name'];
|
|
}
|
|
}
|
|
|
|
/* List of categories */
|
|
if ( ! isset($hesk_settings['categories']))
|
|
{
|
|
$hesk_settings['categories'] = array();
|
|
$res2 = hesk_dbQuery('SELECT `id`, `name` FROM `'.hesk_dbEscape($hesk_settings['db_pfix']).'categories` WHERE ' . hesk_myCategories('id') . ' ORDER BY `cat_order` ASC');
|
|
while ($row=hesk_dbFetchAssoc($res2))
|
|
{
|
|
$hesk_settings['categories'][$row['id']] = $row['name'];
|
|
}
|
|
}
|
|
|
|
/* Current MySQL time */
|
|
$mysql_time = hesk_dbTime();
|
|
|
|
/* Get number of tickets and page number */
|
|
$result = hesk_dbQuery($sql_count);
|
|
|
|
while ($row = hesk_dbFetchAssoc($result))
|
|
{
|
|
// Total tickets found
|
|
$totals['filtered']['all'] += $row['cnt'];
|
|
|
|
// Total by status
|
|
if (isset($totals['filtered']['by_status'][$row['status']]))
|
|
{
|
|
$totals['filtered']['by_status'][$row['status']] += $row['cnt'];
|
|
}
|
|
else
|
|
{
|
|
$totals['filtered']['by_status'][$row['status']] = $row['cnt'];
|
|
}
|
|
|
|
// Count all filtered open tickets
|
|
if (isset($row['status']) && $row['status'] != 3)
|
|
{
|
|
$totals['filtered']['open'] += $row['cnt'];
|
|
}
|
|
|
|
// Totals by assigned to
|
|
if (isset($row['assigned_to'])):
|
|
switch ($row['assigned_to'])
|
|
{
|
|
case 1:
|
|
$totals['filtered']['assigned_to_me'] += $row['cnt'];
|
|
break;
|
|
case 2:
|
|
$totals['filtered']['assigned_to_others'] += $row['cnt'];
|
|
break;
|
|
case 3:
|
|
$totals['filtered']['assigned_to_others'] += $row['cnt'];
|
|
$totals['filtered']['assigned_to_others_by_me'] += $row['cnt'];
|
|
break;
|
|
default:
|
|
$totals['filtered']['unassigned'] += $row['cnt'];
|
|
}
|
|
endif;
|
|
|
|
// Total by due date; ignore for Resolved tickets
|
|
if ($row['status'] != 3)
|
|
{
|
|
switch ($row['due'])
|
|
{
|
|
case 1:
|
|
$totals['filtered']['due_soon'] += $row['cnt'];
|
|
break;
|
|
case 2:
|
|
$totals['filtered']['overdue'] += $row['cnt'];
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Quick link: assigned to me
|
|
if ($is_quick_link == 'my')
|
|
{
|
|
$total = $totals['filtered']['assigned_to_me'];
|
|
}
|
|
// Quick link: assigned to other
|
|
elseif ($is_quick_link == 'ot')
|
|
{
|
|
$total = $totals['filtered']['assigned_to_others'];
|
|
}
|
|
// Quick link: unassigned
|
|
elseif ($is_quick_link == 'un')
|
|
{
|
|
$total = $totals['filtered']['unassigned'];
|
|
}
|
|
// Quick link: due soon
|
|
elseif ($is_quick_link == 'due')
|
|
{
|
|
$total = $totals['filtered']['due_soon'];
|
|
}
|
|
// Quick link: overdue
|
|
elseif ($is_quick_link == 'ovr')
|
|
{
|
|
$total = $totals['filtered']['overdue'];
|
|
}
|
|
// Quick link: all open
|
|
elseif ($is_quick_link == 'alo')
|
|
{
|
|
$total = $totals['open'];
|
|
}
|
|
// Quick link: all
|
|
elseif ($is_quick_link == 'all')
|
|
{
|
|
$total = $totals['all'];
|
|
}
|
|
// No quick link
|
|
else
|
|
{
|
|
$total = $totals['filtered']['all'];
|
|
}
|
|
|
|
if ($total > 0 || $is_quick_link)
|
|
{
|
|
|
|
/* This query string will be used to browse pages */
|
|
if ($href == 'admin_main.php' || $href == 'show_tickets.php')
|
|
{
|
|
#$query = 'status='.$status;
|
|
|
|
$query = '';
|
|
$query .= 's' . implode('=1&s',array_keys($status)) . '=1';
|
|
$query .= '&p' . implode('=1&p',array_keys($priority)) . '=1';
|
|
|
|
$query .= '&category='.$category;
|
|
$query .= '&sort='.$sort;
|
|
$query .= '&asc='.$asc;
|
|
$query .= '&limit='.$maxresults;
|
|
$query .= '&archive='.$archive[1];
|
|
$query .= '&s_my='.$s_my[1];
|
|
$query .= '&s_ot='.$s_ot[1];
|
|
$query .= '&s_un='.$s_un[1];
|
|
|
|
$query .= '&cot='.$cot;
|
|
$query .= '&g='.$group;
|
|
}
|
|
else
|
|
{
|
|
$query = 'q='.$q;
|
|
$query .= '&what='.$what;
|
|
$query .= '&category='.$category;
|
|
$query .= '&owner='.$owner_input;
|
|
$query .= '&dt='.urlencode($date_input);
|
|
$query .= '&sort='.$sort;
|
|
$query .= '&asc='.$asc;
|
|
$query .= '&limit='.$maxresults;
|
|
$query .= '&archive='.$archive[2];
|
|
$query .= '&s_my='.$s_my[2];
|
|
$query .= '&s_ot='.$s_ot[2];
|
|
$query .= '&s_un='.$s_un[2];
|
|
}
|
|
|
|
$query_for_quick_links = $query;
|
|
|
|
if ($is_quick_link !== false)
|
|
{
|
|
$query .= '&ql=' . $is_quick_link;
|
|
}
|
|
|
|
$query_for_pagination = $query . '&page=';
|
|
|
|
$pages = ceil($total/$maxresults) or $pages = 1;
|
|
if ($page > $pages)
|
|
{
|
|
$page = $pages;
|
|
}
|
|
$limit_down = ($page * $maxresults) - $maxresults;
|
|
|
|
$prev_page = ($page - 1 <= 0) ? 0 : $page - 1;
|
|
$next_page = ($page + 1 > $pages) ? 0 : $page + 1;
|
|
|
|
/* We have the full SQL query now, get tickets */
|
|
$sql .= " LIMIT ".hesk_dbEscape($limit_down)." , ".hesk_dbEscape($maxresults)." ";
|
|
$result = hesk_dbQuery($sql);
|
|
|
|
/* Uncomment for debugging */
|
|
# echo "SQL: $sql\n<br>";
|
|
|
|
/* This query string will be used to order and reverse display */
|
|
if ($href == 'admin_main.php' || $href == 'show_tickets.php')
|
|
{
|
|
#$query = 'status='.$status;
|
|
|
|
$query = '';
|
|
$query .= 's' . implode('=1&s',array_keys($status)) . '=1';
|
|
$query .= '&p' . implode('=1&p',array_keys($priority)) . '=1';
|
|
|
|
$query .= '&category='.$category;
|
|
#$query .= '&asc='.(isset($is_default) ? 1 : $asc_rev);
|
|
$query .= '&limit='.$maxresults;
|
|
$query .= '&archive='.$archive[1];
|
|
$query .= '&s_my='.$s_my[1];
|
|
$query .= '&s_ot='.$s_ot[1];
|
|
$query .= '&s_un='.$s_un[1];
|
|
$query .= '&page=1';
|
|
#$query .= '&sort=';
|
|
|
|
$query .= '&cot='.$cot;
|
|
$query .= '&g='.$group;
|
|
|
|
}
|
|
else
|
|
{
|
|
$query = 'q='.$q;
|
|
$query .= '&what='.$what;
|
|
$query .= '&category='.$category;
|
|
$query .= '&owner='.$owner_input;
|
|
$query .= '&dt='.urlencode($date_input);
|
|
#$query .= '&asc='.$asc;
|
|
$query .= '&limit='.$maxresults;
|
|
$query .= '&archive='.$archive[2];
|
|
$query .= '&s_my='.$s_my[2];
|
|
$query .= '&s_ot='.$s_ot[2];
|
|
$query .= '&s_un='.$s_un[2];
|
|
$query .= '&page=1';
|
|
#$query .= '&sort=';
|
|
}
|
|
|
|
if ($is_quick_link !== false)
|
|
{
|
|
$query .= '&ql=' . $is_quick_link;
|
|
}
|
|
|
|
$query .= '&asc=';
|
|
|
|
/* Print the table with tickets */
|
|
$random=rand(10000,99999);
|
|
|
|
$modal_id = hesk_generate_delete_modal($hesklang['confirm'],
|
|
$hesklang['confirm_execute'],
|
|
"javascript:document.getElementById('delete-tickets-form').submit()",
|
|
$hesklang['confirm']);
|
|
|
|
// Are some open tickets hidden?
|
|
if ($href != 'find_tickets.php' && $totals['filtered']['open'] != $totals['open'])
|
|
{
|
|
hesk_show_info($hesklang['not_aos'], ' ', false, 'no-padding-top');
|
|
}
|
|
?>
|
|
<section style="display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px">
|
|
<div class="filters__listing">
|
|
<!--
|
|
<a href="<?php echo $href . '?' . $query_for_quick_links . '&ql=all&s_my=1&s_ot=1&s_un=1&category=0'; ?>" class="btn btn-transparent <?php if ($is_quick_link == 'all') echo 'is-bold is-selected'; ?>"><span><?php echo $hesklang['ql_all']; ?></span> <span class="filters__btn-value"><?php echo $totals['all']; ?></span></a>
|
|
<a href="<?php echo $href . '?' . $query_for_quick_links . '&ql=alo&s_my=1&s_ot=1&s_un=1&category=0'; ?>" class="btn btn-transparent <?php if ($is_quick_link == 'alo') echo 'is-bold is-selected'; ?>"><span><?php echo $hesklang['ql_alo']; ?></span> <span class="filters__btn-value"><?php echo $totals['open']; ?></span></a>
|
|
-->
|
|
<a href="<?php echo $href . '?' . $query_for_quick_links . '&ql=&s_my=1&s_ot=1&s_un=1'; ?>" class="btn btn-transparent <?php if (empty($is_quick_link)) echo 'is-bold is-selected'; ?>"><span><?php
|
|
if ($href == 'find_tickets.php') {
|
|
echo $hesklang['tickets_found'];
|
|
}
|
|
elseif ($totals['filtered']['open'] == $totals['open'] && $totals['filtered']['open'] == $totals['filtered']['all']) {
|
|
echo $hesklang['open_tickets'];
|
|
}
|
|
else {
|
|
echo $hesklang['ql_fit'];
|
|
}
|
|
?></span> <span class="filters__btn-value"><?php echo $totals['filtered']['all']; ?></span></a>
|
|
<a href="<?php echo $href . '?' . $query_for_quick_links . '&ql=my'; ?>" class="btn btn-transparent <?php if ($is_quick_link == 'my') echo 'is-bold is-selected'; ?>"><span><?php echo $hesklang['ql_a2m']; ?></span> <span class="filters__btn-value"><?php echo $totals['filtered']['assigned_to_me']; ?></span></a>
|
|
<?php if ($can_view_ass_others || $can_view_ass_by): ?>
|
|
<a href="<?php echo $href . '?' . $query_for_quick_links . '&ql=ot'; ?>" class="btn btn-transparent <?php if ($is_quick_link == 'ot') echo 'is-bold is-selected'; ?>"><span><?php echo $hesklang['ql_a2o']; ?></span> <span class="filters__btn-value"><?php echo $totals['filtered']['assigned_to_others']; ?></span></a>
|
|
<?php endif; ?>
|
|
<?php if ($can_view_unassigned): ?>
|
|
<a href="<?php echo $href . '?' . $query_for_quick_links . '&ql=un'; ?>" class="btn btn-transparent <?php if ($is_quick_link == 'un') echo 'is-bold is-selected'; ?>"><span><?php echo $hesklang['ql_una']; ?></span> <span class="filters__btn-value"><?php echo $totals['filtered']['unassigned']; ?></span></a>
|
|
<?php endif; ?>
|
|
<a href="<?php echo $href . '?' . $query_for_quick_links . '&ql=due&s_my=1&s_ot=1&s_un=1'; ?>" class="btn btn-transparent is-due-soon <?php if ($is_quick_link == 'due') echo 'is-bold is-selected'; ?>"><span><?php echo $hesklang['ql_due']; ?></span> <span class="filters__btn-value"><?php echo $totals['filtered']['due_soon']; ?></span></a>
|
|
<a href="<?php echo $href . '?' . $query_for_quick_links . '&ql=ovr&s_my=1&s_ot=1&s_un=1'; ?>" class="btn btn-transparent is-overdue <?php if ($is_quick_link == 'ovr') echo 'is-bold is-selected'; ?>"><span><?php echo $hesklang['ql_ovr']; ?></span> <span class="filters__btn-value"><?php echo $totals['filtered']['overdue']; ?></span></a>
|
|
</div>
|
|
|
|
<div class="checkbox-custom">
|
|
<input type="checkbox" id="reloadCB" onclick="toggleAutoRefresh(this);">
|
|
<label for="reloadCB"><?php echo $hesklang['arp']; ?></label> <span id="timer"></span>
|
|
<script type="text/javascript">heskCheckReloading();</script>
|
|
</div>
|
|
</section>
|
|
<?php
|
|
if ($total > 0)
|
|
{
|
|
?>
|
|
<form name="form1" id="delete-tickets-form" action="delete_tickets.php" method="post">
|
|
<?php
|
|
if (empty($group))
|
|
{
|
|
hesk_print_list_head();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
hesk_show_info($hesklang['no_tickets_crit'], ' ', false);
|
|
}
|
|
|
|
$checkall = '
|
|
<div class="checkbox-custom">
|
|
<input type="checkbox" id="ticket_checkall" onclick="hesk_changeAll()">
|
|
<label for="ticket_checkall"> </label>
|
|
</div>';
|
|
|
|
$group_tmp = '';
|
|
$is_table = 0;
|
|
$space = 0;
|
|
|
|
while ($ticket=hesk_dbFetchAssoc($result))
|
|
{
|
|
// Are we grouping tickets?
|
|
if ($group)
|
|
{
|
|
require(HESK_PATH . 'inc/print_group.inc.php');
|
|
}
|
|
|
|
// Set owner (needed for row title)
|
|
$owner = '';
|
|
$first_line = '(' . $hesklang['unas'] . ')'." \n\n";
|
|
if ($ticket['owner'] == $_SESSION['id'])
|
|
{
|
|
$owner = '<svg class="icon icon-assign" style="margin-right: 3px">
|
|
<use xlink:href="'. HESK_PATH . 'img/sprite.svg#icon-assign"></use>
|
|
</svg>';
|
|
$first_line = $hesklang['tasy2'] . " \n\n";
|
|
}
|
|
elseif ($ticket['owner'])
|
|
{
|
|
if (!isset($admins[$ticket['owner']]))
|
|
{
|
|
$admins[$ticket['owner']] = $hesklang['e_udel'];
|
|
}
|
|
$owner = '<svg class="icon icon-assign-plus" style="margin-right: 3px">
|
|
<use xlink:href="'. HESK_PATH . 'img/sprite.svg#icon-assign-plus"></use>
|
|
</svg>';
|
|
$first_line = $hesklang['taso3'] . ' ' . $admins[$ticket['owner']] . " \n\n";
|
|
}
|
|
|
|
// Prepare ticket priority
|
|
switch ($ticket['priority'])
|
|
{
|
|
case 0:
|
|
$ticket['priority'] = 'critical';
|
|
break;
|
|
case 1:
|
|
$ticket['priority'] = 'high';
|
|
break;
|
|
case 2:
|
|
$ticket['priority'] = 'medium';
|
|
break;
|
|
default:
|
|
$ticket['priority'] = 'low';
|
|
}
|
|
|
|
// Set message (needed for row title)
|
|
$ticket['message'] = $first_line . hesk_mb_substr(strip_tags($ticket['message']),0,200).'...';
|
|
|
|
// Start ticket row
|
|
echo '
|
|
<tr title="'.$ticket['message'].'" class="'.($ticket['owner'] ? '' : 'new').($ticket['priority'] == 'critical' ? ' bg-critical' : '').'">
|
|
<td class="table__first_th sindu_handle">
|
|
<div class="checkbox-custom">
|
|
<input type="checkbox" id="ticket_check_'.$ticket['id'].'" name="id[]" value="'.$ticket['id'].'">
|
|
<label for="ticket_check_'.$ticket['id'].'"> </label>
|
|
</div>
|
|
</td>
|
|
';
|
|
|
|
// Print sequential ID and link it to the ticket page
|
|
if ( hesk_show_column('id') )
|
|
{
|
|
echo '<td><a href="admin_ticket.php?track='.$ticket['trackid'].'&Refresh='.$random.'">'.$ticket['id'].'</a></td>';
|
|
}
|
|
|
|
// Print tracking ID and link it to the ticket page
|
|
if ( hesk_show_column('trackid') )
|
|
{
|
|
echo '<td class="trackid">
|
|
<div class="table__td-id">
|
|
<a class="link" href="admin_ticket.php?track='.$ticket['trackid'].'&Refresh='.$random.'">'.$ticket['trackid'].'</a>
|
|
</div>
|
|
</td>';
|
|
}
|
|
|
|
// Print date submitted
|
|
if ( hesk_show_column('dt') )
|
|
{
|
|
switch ($hesk_settings['submittedformat'])
|
|
{
|
|
case 1:
|
|
$ticket['dt'] = hesk_formatDate($ticket['dt']);
|
|
break;
|
|
case 2:
|
|
$ticket['dt'] = hesk_time_lastchange($ticket['dt']);
|
|
break;
|
|
default:
|
|
$ticket['dt'] = hesk_time_since( strtotime($ticket['dt']) );
|
|
}
|
|
echo '<td>'.$ticket['dt'].'</td>';
|
|
}
|
|
|
|
// Print last modified
|
|
if ( hesk_show_column('lastchange') )
|
|
{
|
|
switch ($hesk_settings['updatedformat'])
|
|
{
|
|
case 1:
|
|
$ticket['lastchange'] = hesk_formatDate($ticket['lastchange']);
|
|
break;
|
|
case 2:
|
|
$ticket['lastchange'] = hesk_time_lastchange($ticket['lastchange']);
|
|
break;
|
|
default:
|
|
$ticket['lastchange'] = hesk_time_since( strtotime($ticket['lastchange']) );
|
|
}
|
|
echo '<td>'.$ticket['lastchange'].'</td>';
|
|
}
|
|
|
|
// Print ticket category
|
|
if ( hesk_show_column('category') )
|
|
{
|
|
$ticket['category_name'] = isset($hesk_settings['categories'][$ticket['category']]) ? $hesk_settings['categories'][$ticket['category']] : $hesklang['catd'];
|
|
echo '<td class="category-'.intval($ticket['category']).'">'.$ticket['category_name'].'</td>';
|
|
}
|
|
|
|
// Print customer name
|
|
if ( hesk_show_column('name') )
|
|
{
|
|
echo '<td>'.$ticket['name'].'</td>';
|
|
}
|
|
|
|
// Print customer email
|
|
if ( hesk_show_column('email') )
|
|
{
|
|
echo '<td><a href="mailto:'.$ticket['email'].'">'.$hesklang['clickemail'].'</a></td>';
|
|
}
|
|
|
|
// Print subject and link to the ticket page
|
|
if ( hesk_show_column('subject') )
|
|
{
|
|
echo '<td class="subject">'.($ticket['archive'] ? '<svg class="icon icon-tag '.($ticket['owner'] != $_SESSION['id'] ? 'fill-gray' : '').'" style="margin-right: 3px">
|
|
<use xlink:href="'. HESK_PATH .'img/sprite.svg#icon-tag"></use>
|
|
</svg>' : '').$owner.'<a class="link" href="admin_ticket.php?track='.$ticket['trackid'].'&Refresh='.$random.'">'.$ticket['subject'].'</a></td>';
|
|
}
|
|
|
|
// Print ticket status
|
|
if ( hesk_show_column('status') )
|
|
{
|
|
echo '<td>' . hesk_get_admin_ticket_status($ticket['status']) . ' </td>';
|
|
}
|
|
|
|
// Print ticket owner
|
|
if ( hesk_show_column('owner') )
|
|
{
|
|
if ($ticket['owner'])
|
|
{
|
|
$ticket['owner'] = isset($admins[$ticket['owner']]) ? $admins[$ticket['owner']] : $hesklang['unas'];
|
|
}
|
|
else
|
|
{
|
|
$ticket['owner'] = $hesklang['unas'];
|
|
}
|
|
echo '<td>'.$ticket['owner'].'</td>';
|
|
}
|
|
|
|
// Print number of all replies
|
|
if ( hesk_show_column('replies') )
|
|
{
|
|
echo '<td>'.$ticket['replies'].'</td>';
|
|
}
|
|
|
|
// Print number of staff replies
|
|
if ( hesk_show_column('staffreplies') )
|
|
{
|
|
echo '<td>'.$ticket['staffreplies'].'</td>';
|
|
}
|
|
|
|
// Print last replier
|
|
if ( hesk_show_column('lastreplier') )
|
|
{
|
|
if ($ticket['lastreplier'])
|
|
{
|
|
$ticket['repliername'] = isset($admins[$ticket['replierid']]) ? $admins[$ticket['replierid']] : $hesklang['staff'];
|
|
}
|
|
else
|
|
{
|
|
$ticket['repliername'] = $ticket['name'];
|
|
}
|
|
echo '<td>'.$ticket['repliername'].'</td>';
|
|
}
|
|
|
|
// Print time worked
|
|
if ( hesk_show_column('time_worked') )
|
|
{
|
|
echo '<td>'.$ticket['time_worked'].'</td>';
|
|
}
|
|
|
|
// Print due date
|
|
if (hesk_show_column('due_date')) {
|
|
$dateformat = substr($hesk_settings['timeformat'], 0, strpos($hesk_settings['timeformat'], ' '));
|
|
$due_date = $hesklang['none'];
|
|
if ($ticket['due_date'] != null) {
|
|
$due_date = hesk_date($ticket['due_date'], false, true, false);
|
|
$due_date = date($dateformat, $due_date);
|
|
}
|
|
|
|
echo '<td>'.$due_date.'</td>';
|
|
}
|
|
|
|
// Print custom fields
|
|
foreach ($hesk_settings['custom_fields'] as $key => $value)
|
|
{
|
|
if ($value['use'] && hesk_show_column($key) )
|
|
{
|
|
echo '<td>'.($value['type'] == 'date' ? hesk_custom_date_display_format($ticket[$key], $value['value']['date_format']) : $ticket[$key]).'</td>';
|
|
}
|
|
}
|
|
|
|
// End ticket row
|
|
echo '
|
|
<td>
|
|
<div class="dropdown priority" data-value="' . $ticket['priority'] . '" style="cursor: default">
|
|
<div class="label" style="cursor: default">
|
|
<span>' . $hesklang[$ticket['priority']] . '</span>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
';
|
|
|
|
} // End while
|
|
|
|
// Only show all this if we found any tickets
|
|
if ($total > 0)
|
|
{
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="pagination-wrap">
|
|
<div class="pagination">
|
|
<?php
|
|
if ($pages > 1) {
|
|
/* List pages */
|
|
if ($pages >= 7) {
|
|
if ($page > 2) {
|
|
echo '
|
|
<a href="'.$href.'?'.$query_for_pagination.'1" class="btn pagination__nav-btn">
|
|
<svg class="icon icon-chevron-left" style="margin-right:-6px">
|
|
<use xlink:href="'. HESK_PATH .'img/sprite.svg#icon-chevron-left"></use>
|
|
</svg>
|
|
<svg class="icon icon-chevron-left">
|
|
<use xlink:href="'. HESK_PATH .'img/sprite.svg#icon-chevron-left"></use>
|
|
</svg>
|
|
'.$hesklang['pager_first'].'
|
|
</a>';
|
|
}
|
|
|
|
if ($prev_page)
|
|
{
|
|
echo '
|
|
<a href="'.$href.'?'.$query_for_pagination.$prev_page.'" class="btn pagination__nav-btn">
|
|
<svg class="icon icon-chevron-left">
|
|
<use xlink:href="'. HESK_PATH .'img/sprite.svg#icon-chevron-left"></use>
|
|
</svg>
|
|
'.$hesklang['pager_previous'].'
|
|
</a>';
|
|
}
|
|
}
|
|
|
|
echo '<ul class="pagination__list">';
|
|
for ($i=1; $i<=$pages; $i++)
|
|
{
|
|
if ($i <= ($page+5) && $i >= ($page-5))
|
|
{
|
|
if ($i == $page)
|
|
{
|
|
echo '
|
|
<li class="pagination__item is-current">
|
|
<a href="javascript:" class="pagination__link">'.$i.'</a>
|
|
</li>';
|
|
}
|
|
else
|
|
{
|
|
echo '
|
|
<li class="pagination__item ">
|
|
<a href="'.$href.'?'.$query_for_pagination.$i.'" class="pagination__link">'.$i.'</a>
|
|
</li>';
|
|
}
|
|
}
|
|
}
|
|
echo '</ul>';
|
|
|
|
if ($pages >= 7)
|
|
{
|
|
if ($next_page)
|
|
{
|
|
echo '
|
|
<a href="'.$href.'?'.$query_for_pagination.$next_page.'" class="btn pagination__nav-btn">
|
|
'.$hesklang['pager_next'].'
|
|
<svg class="icon icon-chevron-right">
|
|
<use xlink:href="'. HESK_PATH .'img/sprite.svg#icon-chevron-right"></use>
|
|
</svg>
|
|
</a>';
|
|
}
|
|
|
|
if ($page < ($pages - 1))
|
|
{
|
|
echo '
|
|
<a href="'.$href.'?'.$query_for_pagination.$pages.'" class="btn pagination__nav-btn">
|
|
'.$hesklang['pager_last'].'
|
|
<svg class="icon icon-chevron-right">
|
|
<use xlink:href="'. HESK_PATH .'img/sprite.svg#icon-chevron-right"></use>
|
|
</svg>
|
|
<svg class="icon icon-chevron-right" style="margin-left:-6px">
|
|
<use xlink:href="'. HESK_PATH .'img/sprite.svg#icon-chevron-right"></use>
|
|
</svg>
|
|
</a>';
|
|
}
|
|
}
|
|
} // end PAGES > 1
|
|
?>
|
|
</div>
|
|
<p class="pagination__amount"><?php echo sprintf($hesklang['tickets_on_pages'],$total,$pages); ?></p>
|
|
</div>
|
|
|
|
<section class="tickets__legend">
|
|
<div>
|
|
<?php
|
|
if (hesk_checkPermission('can_add_archive',0))
|
|
{
|
|
?>
|
|
<div>
|
|
<svg class="icon icon-tag">
|
|
<use xlink:href="<?php echo HESK_PATH; ?>img/sprite.svg#icon-tag"></use>
|
|
</svg>
|
|
<?php echo $hesklang['archived2']; ?>
|
|
</div>
|
|
<?php
|
|
}
|
|
?>
|
|
<div>
|
|
<svg class="icon icon-assign">
|
|
<use xlink:href="<?php echo HESK_PATH; ?>img/sprite.svg#icon-assign"></use>
|
|
</svg> <?php echo $hesklang['tasy2']; ?>
|
|
</div>
|
|
<?php
|
|
if (hesk_checkPermission('can_view_ass_others',0) || hesk_checkPermission('can_view_ass_by',0))
|
|
{
|
|
?>
|
|
<div>
|
|
<svg class="icon icon-assign-plus">
|
|
<use xlink:href="<?php echo HESK_PATH; ?>img/sprite.svg#icon-assign-plus"></use>
|
|
</svg> <?php echo $hesklang['taso2']; ?>
|
|
</div>
|
|
<?php
|
|
}
|
|
?>
|
|
</div>
|
|
<div class="bulk-actions">
|
|
<?php echo $hesklang['with_selected']; ?>
|
|
<div class="inline-bottom">
|
|
<select name="a">
|
|
<option value="low" selected="selected"><?php echo $hesklang['set_pri_to'].' '.$hesklang['low']; ?></option>
|
|
<option value="medium"><?php echo $hesklang['set_pri_to'].' '.$hesklang['medium']; ?></option>
|
|
<option value="high"><?php echo $hesklang['set_pri_to'].' '.$hesklang['high']; ?></option>
|
|
<option value="critical"><?php echo $hesklang['set_pri_to'].' '.$hesklang['critical']; ?></option>
|
|
<?php
|
|
if ( hesk_checkPermission('can_resolve', 0) )
|
|
{
|
|
?>
|
|
<option value="close"><?php echo $hesklang['close_selected']; ?></option>
|
|
<?php
|
|
}
|
|
|
|
if ( hesk_checkPermission('can_add_archive', 0) )
|
|
{
|
|
?>
|
|
<option value="tag"><?php echo $hesklang['add_archive_quick']; ?></option>
|
|
<option value="untag"><?php echo $hesklang['remove_archive_quick']; ?></option>
|
|
<?php
|
|
}
|
|
|
|
?>
|
|
<option value="print"><?php echo $hesklang['print_selected']; ?></option>
|
|
<?php
|
|
|
|
if ( ! defined('HESK_DEMO') )
|
|
{
|
|
|
|
if ( hesk_checkPermission('can_merge_tickets', 0) )
|
|
{
|
|
?>
|
|
<option value="merge"><?php echo $hesklang['mer_selected']; ?></option>
|
|
<?php
|
|
}
|
|
if ( hesk_checkPermission('can_export', 0) )
|
|
{
|
|
?>
|
|
<option value="export"><?php echo $hesklang['export_selected']; ?></option>
|
|
<?php
|
|
}
|
|
if ( hesk_checkPermission('can_privacy', 0) )
|
|
{
|
|
?>
|
|
<option value="anonymize"><?php echo $hesklang['anon_selected']; ?></option>
|
|
<?php
|
|
}
|
|
if ( hesk_checkPermission('can_del_tickets', 0) )
|
|
{
|
|
?>
|
|
<option value="delete"><?php echo $hesklang['del_selected']; ?></option>
|
|
<?php
|
|
}
|
|
|
|
} // End demo
|
|
?>
|
|
</select>
|
|
</div>
|
|
<input type="hidden" name="token" value="<?php hesk_token_echo(); ?>" />
|
|
<button onclick="document.getElementById('action-type').value = 'bulk'" type="button" class="btn btn-full" ripple="ripple" data-modal="[data-modal-id='<?php echo $modal_id; ?>']">
|
|
<?php echo $hesklang['execute']; ?>
|
|
</button>
|
|
|
|
<?php
|
|
if (hesk_checkPermission('can_assign_others',0))
|
|
{
|
|
?>
|
|
<div style="height:6px"></div>
|
|
|
|
<?php echo $hesklang['assign_selected']; ?>
|
|
<div class="inline-bottom">
|
|
<select name="owner">
|
|
<option value="" selected="selected"><?php echo $hesklang['select']; ?></option>
|
|
<option value="-1"> > <?php echo $hesklang['unas']; ?> < </option>
|
|
<?php
|
|
foreach ($can_assign_to as $k=>$v)
|
|
{
|
|
echo '<option value="'.$k.'">'.$v.'</option>';
|
|
}
|
|
?>
|
|
</select>
|
|
</div>
|
|
<button type="button" name="assign" class="btn btn-full" data-modal="[data-modal-id='<?php echo $modal_id; ?>']"
|
|
onclick="document.getElementById('action-type').value = 'assi'">
|
|
<?php echo $hesklang['assi']; ?>
|
|
</button>
|
|
<?php
|
|
}
|
|
?>
|
|
</div>
|
|
</section>
|
|
<input id="action-type" name="action-type" type="hidden" value="-1">
|
|
</form>
|
|
<?php
|
|
} // END ticket list if total > 0
|
|
} // END ticket list if total > 0 or if this is a quick link
|
|
else
|
|
{
|
|
if (isset($is_search) || $href == 'find_tickets.php')
|
|
{
|
|
hesk_show_notice($hesklang['no_tickets_crit']);
|
|
}
|
|
else
|
|
{
|
|
echo '<p> <br /> <b><i>'.$hesklang['no_tickets_open'].'</i></b><br /> </p>';
|
|
}
|
|
}
|
|
|
|
|
|
function hesk_print_list_head()
|
|
{
|
|
global $hesk_settings, $href, $query, $sort_possible, $hesklang;
|
|
?>
|
|
<div class="table-wrap">
|
|
<table class="table sindu-table ticket-list sindu_origin_table" id="default-table">
|
|
<thead>
|
|
<tr>
|
|
<th class="table__first_th sindu_handle">
|
|
<div class="checkbox-custom">
|
|
<input type="checkbox" id="ticket_checkall" name="checkall" value="2" onclick="hesk_changeAll(this)">
|
|
<label for="ticket_checkall"> </label>
|
|
</div>
|
|
</th>
|
|
<?php
|
|
$sort = hesk_GET('sort', 'status');
|
|
$sort_direction = '';
|
|
if (isset($_GET['asc'])) {
|
|
$sort_direction = intval($_GET['asc']) == 0 ? 'desc' : 'asc';
|
|
} else {
|
|
$sort_direction = 'asc';
|
|
}
|
|
|
|
foreach ($hesk_settings['ticket_list'] as $field)
|
|
{
|
|
if (!key_exists($field, $hesk_settings['possible_ticket_list'])) {
|
|
continue;
|
|
}
|
|
|
|
echo '<th class="sindu-handle '.($sort == $field ? $sort_direction : '').' '.($field == 'trackid' ? 'trackid' : '').'">
|
|
<a href="' . $href . '?' . $query . $sort_possible[$field] . '&sort=' . $field . '">
|
|
<div class="sort">
|
|
<span>' . $hesk_settings['possible_ticket_list'][$field] . '</span>
|
|
<i class="handle"></i>
|
|
</div>
|
|
</a>
|
|
</th>';
|
|
}
|
|
?>
|
|
<th class="sindu-handle <?php echo $sort == 'priority' ? $sort_direction : ''; ?>">
|
|
<a href="<?php echo $href . '?' . $query . $sort_possible['priority'] . '&sort='; ?>priority">
|
|
<div class="sort">
|
|
<span><?php echo $hesklang['priority']; ?></span>
|
|
<i class="handle"></i>
|
|
</div>
|
|
</a>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
} // END hesk_print_list_head()
|
|
|
|
|
|
function hesk_time_since($original)
|
|
{
|
|
global $hesk_settings, $hesklang, $mysql_time;
|
|
|
|
/* array of time period chunks */
|
|
$chunks = array(
|
|
array(60 * 60 * 24 * 365 , $hesklang['abbr']['year']),
|
|
array(60 * 60 * 24 * 30 , $hesklang['abbr']['month']),
|
|
array(60 * 60 * 24 * 7, $hesklang['abbr']['week']),
|
|
array(60 * 60 * 24 , $hesklang['abbr']['day']),
|
|
array(60 * 60 , $hesklang['abbr']['hour']),
|
|
array(60 , $hesklang['abbr']['minute']),
|
|
array(1 , $hesklang['abbr']['second']),
|
|
);
|
|
|
|
/* Invalid time */
|
|
if ($mysql_time < $original)
|
|
{
|
|
// DEBUG return "T: $mysql_time (".date('Y-m-d H:i:s',$mysql_time).")<br>O: $original (".date('Y-m-d H:i:s',$original).")";
|
|
return "0".$hesklang['abbr']['second'];
|
|
}
|
|
|
|
$since = $mysql_time - $original;
|
|
|
|
// $j saves performing the count function each time around the loop
|
|
for ($i = 0, $j = count($chunks); $i < $j; $i++) {
|
|
|
|
$seconds = $chunks[$i][0];
|
|
$name = $chunks[$i][1];
|
|
|
|
// finding the biggest chunk (if the chunk fits, break)
|
|
if (($count = floor($since / $seconds)) != 0) {
|
|
// DEBUG print "<!-- It's $name -->\n";
|
|
break;
|
|
}
|
|
}
|
|
|
|
$print = "$count{$name}";
|
|
|
|
if ($i + 1 < $j) {
|
|
// now getting the second item
|
|
$seconds2 = $chunks[$i + 1][0];
|
|
$name2 = $chunks[$i + 1][1];
|
|
|
|
// add second item if it's greater than 0
|
|
if (($count2 = floor(($since - ($seconds * $count)) / $seconds2)) != 0) {
|
|
$print .= "$count2{$name2}";
|
|
}
|
|
}
|
|
return $print;
|
|
} // END hesk_time_since()
|
|
|
|
|
|
function hesk_time_lastchange($original)
|
|
{
|
|
global $hesk_settings, $hesklang;
|
|
|
|
// Save time format setting so we can restore it later
|
|
$copy = $hesk_settings['timeformat'];
|
|
|
|
// We need this time format for this function
|
|
$hesk_settings['timeformat'] = 'Y-m-d H:i:s';
|
|
|
|
// Get HESK time-adjusted start of today if not already
|
|
if ( ! defined('HESK_TIME_TODAY') )
|
|
{
|
|
// Adjust for HESK time and define constants for alter use
|
|
define('HESK_TIME_TODAY', date('Y-m-d 00:00:00', hesk_date(NULL, false, false, false) ) );
|
|
define('HESK_TIME_YESTERDAY', date('Y-m-d 00:00:00', strtotime(HESK_TIME_TODAY)-86400) ) ;
|
|
}
|
|
|
|
// Adjust HESK time difference and get day name
|
|
$ticket_time = hesk_date($original, true);
|
|
|
|
if ($ticket_time >= HESK_TIME_TODAY)
|
|
{
|
|
// For today show HH:MM
|
|
$day = substr($ticket_time, 11, 5);
|
|
}
|
|
elseif ($ticket_time >= HESK_TIME_YESTERDAY)
|
|
{
|
|
// For yesterday show word "Yesterday"
|
|
$day = $hesklang['r2'];
|
|
}
|
|
else
|
|
{
|
|
// For other days show DD MMM YY
|
|
list($y, $m, $d) = explode('-', substr($ticket_time, 0, 10) );
|
|
$day = '<span style="white-space: nowrap;">' . $d . ' ' . $hesklang['ms'.$m] . ' ' . substr($y, 2) . '</span>';
|
|
}
|
|
|
|
// Restore original time format setting
|
|
$hesk_settings['timeformat'] = $copy;
|
|
|
|
// Return value to display
|
|
return $day;
|
|
|
|
} // END hesk_time_lastchange()
|