Newer
Older
<?php
//Note that ticket obj is initiated in tickets.php.
if(!defined('OSTSCPINC') || !$thisstaff || !is_object($ticket) || !$ticket->getId()) die('Invalid path');
//Make sure the staff is allowed to access the page.
if(!@$thisstaff->isStaff() || !$ticket->checkStaffPerm($thisstaff)) die('Access Denied');
//Re-use the post info on error...savekeyboards.org (Why keyboard? -> some people care about objects than users!!)
$info=($_POST && $errors)?Format::input($_POST):array();
//Get the goodies.
$dept = $ticket->getDept(); //Dept
$role = $ticket->getRole($thisstaff);
$staff = $ticket->getStaff(); //Assigned or closed by..
$user = $ticket->getOwner(); //Ticket User (EndUser)
$team = $ticket->getTeam(); //Assigned team.
$lock = $ticket->getLock(); //Ticket lock obj
if (!$lock && $cfg->getTicketLockMode() == Lock::MODE_ON_VIEW)
$lock = $ticket->acquireLock($thisstaff->getId());
$mylock = ($lock && $lock->getStaffId() == $thisstaff->getId()) ? $lock : null;
$id = $ticket->getId(); //Ticket ID.
$isManager = $dept->isManager($thisstaff); //Check if Agent is Manager
$canRelease = ($isManager || $role->hasPerm(Ticket::PERM_RELEASE)); //Check if Agent can release tickets
//Useful warnings and errors the user might want to know!
if ($ticket->isClosed() && !$ticket->isReopenable())
$warn = sprintf(
__('Current ticket status (%s) does not allow the end user to reply.'),
$ticket->getStatus());
elseif ($ticket->isAssigned()
&& (($staff && $staff->getId()!=$thisstaff->getId())
|| ($team && !$team->hasMember($thisstaff))
))
$warn.= sprintf(' <span class="Icon assignedTicket">%s</span>',
sprintf(__('Ticket is assigned to %s'),
implode('/', $ticket->getAssignees())
));
if (!$errors['err']) {
if ($lock && $lock->getStaffId()!=$thisstaff->getId())
$errors['err'] = sprintf(__('%s is currently locked by %s'),
__('This ticket'),
elseif (($emailBanned=Banlist::isBanned($ticket->getEmail())))
$errors['err'] = __('Email is in banlist! Must be removed before any reply/response');
elseif (!Validator::is_valid_email($ticket->getEmail()))
$errors['err'] = __('EndUser email address is not valid! Consider updating it before responding');
$unbannable=($emailBanned) ? BanList::includes($ticket->getEmail()) : false;
if($ticket->isOverdue())
$warn.=' <span class="Icon overdueTicket">'.__('Marked overdue!').'</span>';
?>
<div class="sticky bar">
<div class="content">
<div class="pull-right flush-right">
<?php
if ($thisstaff->hasPerm(Email::PERM_BANLIST)
|| $role->hasPerm(Ticket::PERM_EDIT)
|| ($dept && $dept->isManager($thisstaff))) { ?>
<span class="action-button pull-right" data-placement="bottom" data-dropdown="#action-dropdown-more" data-toggle="tooltip" title="<?php echo __('More');?>">
<i class="icon-caret-down pull-right"></i>
<span ><i class="icon-cog"></i></span>
</span>
<?php
if ($role->hasPerm(Ticket::PERM_EDIT)) { ?>
<span class="action-button pull-right"><a data-placement="bottom" data-toggle="tooltip" title="<?php echo __('Edit'); ?>" href="tickets.php?id=<?php echo $ticket->getId(); ?>&a=edit"><i class="icon-edit"></i></a></span>
<?php
<span class="action-button pull-right" data-placement="bottom" data-dropdown="#action-dropdown-print" data-toggle="tooltip" title="<?php echo __('Print'); ?>">
<i class="icon-caret-down pull-right"></i>
<a id="ticket-print" href="tickets.php?id=<?php echo $ticket->getId(); ?>&a=print"><i class="icon-print"></i></a>
</span>
<div id="action-dropdown-print" class="action-dropdown anchor-right">
<ul>
<li><a class="no-pjax" target="_blank" href="tickets.php?id=<?php echo $ticket->getId(); ?>&a=print¬es=0"><i
class="icon-file-alt"></i> <?php echo __('Ticket Thread'); ?></a>
<li><a class="no-pjax" target="_blank" href="tickets.php?id=<?php echo $ticket->getId(); ?>&a=print¬es=1"><i
class="icon-file-text-alt"></i> <?php echo __('Thread + Internal Notes'); ?></a>
</ul>
</div>
if ($role->hasPerm(Ticket::PERM_TRANSFER)) {?>
<span class="action-button pull-right">
<a class="ticket-action" id="ticket-transfer" data-placement="bottom" data-toggle="tooltip" title="<?php echo __('Transfer'); ?>"
href="#tickets/<?php echo $ticket->getId(); ?>/transfer"><i class="icon-share"></i></a>
</span>
<?php
if ($ticket->isOpen() && $role->hasPerm(Ticket::PERM_ASSIGN)) {?>
<span class="action-button pull-right"
data-dropdown="#action-dropdown-assign"
data-placement="bottom"
data-toggle="tooltip"
title=" <?php echo $ticket->isAssigned() ? __('Assign') : __('Reassign'); ?>"
<a class="ticket-action" id="ticket-assign"
data-redirect="tickets.php"
href="#tickets/<?php echo $ticket->getId(); ?>/assign"><i class="icon-user"></i></a>
</span>
<div id="action-dropdown-assign" class="action-dropdown anchor-right">
<ul>
if (!$ticket->getStaff()
&& (!$dept->assignMembersOnly()
|| $dept->isMember($thisstaff))
) { ?>
data-redirect="tickets.php?id=<?php echo
$ticket->getId(); ?>"
class="icon-chevron-sign-down"></i> <?php echo __('Claim'); ?></a>
<li><a class="no-pjax ticket-action"
data-redirect="tickets.php"
href="#tickets/<?php echo $ticket->getId(); ?>/assign/agents"><i
class="icon-user"></i> <?php echo __('Agent'); ?></a>
<li><a class="no-pjax ticket-action"
data-redirect="tickets.php"
href="#tickets/<?php echo $ticket->getId(); ?>/assign/teams"><i
class="icon-group"></i> <?php echo __('Team'); ?></a>
</ul>
</div>
<?php
} ?>
<div id="action-dropdown-more" class="action-dropdown anchor-right">
<ul>
if ($role->hasPerm(Ticket::PERM_EDIT)) { ?>
<li><a class="change-user" href="#tickets/<?php
echo $ticket->getId(); ?>/change-user"><i class="icon-user"></i> <?php
echo __('Change Owner'); ?></a></li>
<?php
}
if ($ticket->isAssigned() && $canRelease) { ?>
<li><a href="#tickets/<?php echo $ticket->getId();
?>/release" class="ticket-action"
data-redirect="tickets.php?id=<?php echo $ticket->getId(); ?>" >
<i class="icon-unlock"></i> <?php echo __('Release (unassign) Ticket'); ?></a></li>
<?php
}
if($ticket->isOpen() && $isManager) {
if(!$ticket->isOverdue()) { ?>
<li><a class="confirm-action" id="ticket-overdue" href="#overdue"><i class="icon-bell"></i> <?php
echo __('Mark as Overdue'); ?></a></li>
<?php
}
if($ticket->isAnswered()) { ?>
<li><a class="confirm-action" id="ticket-unanswered" href="#unanswered"><i class="icon-circle-arrow-left"></i> <?php
echo __('Mark as Unanswered'); ?></a></li>
<?php
} else { ?>
<li><a class="confirm-action" id="ticket-answered" href="#answered"><i class="icon-circle-arrow-right"></i> <?php
echo __('Mark as Answered'); ?></a></li>
<?php
}
if ($role->hasPerm(Ticket::PERM_REFER)) { ?>
<li><a href="#tickets/<?php echo $ticket->getId();
?>/referrals" class="ticket-action"
data-redirect="tickets.php?id=<?php echo $ticket->getId(); ?>" >
<i class="icon-exchange"></i> <?php echo __('Manage Referrals'); ?></a></li>
<?php
} ?>
<?php
if ($role->hasPerm(Ticket::PERM_EDIT)) { ?>
<li><a href="#ajax.php/tickets/<?php echo $ticket->getId();
?>/forms/manage" onclick="javascript:
$.dialog($(this).attr('href').substr(1), 201);
return false"
><i class="icon-paste"></i> <?php echo __('Manage Forms'); ?></a></li>
if ($role->hasPerm(Ticket::PERM_REPLY)) {
?>
<li>
<?php
$recipients = __(' Manage Collaborators');
echo sprintf('<a class="collaborators manage-collaborators"
href="#thread/%d/collaborators"><i class="icon-group"></i>%s</a>',
$ticket->getThreadId(),
$recipients);
?>
</li>
<?php if ($thisstaff->hasPerm(Email::PERM_BANLIST)
&& $role->hasPerm(Ticket::PERM_REPLY)) {
if(!$emailBanned) {?>
<li><a class="confirm-action" id="ticket-banemail"
href="#banemail"><i class="icon-ban-circle"></i> <?php echo sprintf(
Format::htmlchars(__('Ban Email <%s>')),
$ticket->getEmail()); ?></a></li>
} elseif($unbannable) { ?>
<li><a class="confirm-action" id="ticket-banemail"
href="#unbanemail"><i class="icon-undo"></i> <?php echo sprintf(
Format::htmlchars(__('Unban Email <%s>')),
$ticket->getEmail()); ?></a></li>
<?php
}
if ($role->hasPerm(Ticket::PERM_DELETE)) {
?>
<li class="danger"><a class="ticket-action" href="#tickets/<?php
echo $ticket->getId(); ?>/status/delete"
data-redirect="tickets.php"><i class="icon-trash"></i> <?php
echo __('Delete Ticket'); ?></a></li>
<?php
}
?>
</ul>
</div>
if ($role->hasPerm(Ticket::PERM_REPLY)) { ?>
<a href="#post-reply" class="post-response action-button"
data-placement="bottom" data-toggle="tooltip"
title="<?php echo __('Post Reply'); ?>"><i class="icon-mail-reply"></i></a>
<?php
} ?>
<a href="#post-note" id="post-note" class="post-response action-button"
data-placement="bottom" data-toggle="tooltip"
title="<?php echo __('Post Internal Note'); ?>"><i class="icon-file-text"></i></a>
<?php // Status change options
echo TicketStatus::status_options();
?>
<div class="flush-left">
<h2><a href="tickets.php?id=<?php echo $ticket->getId(); ?>"
title="<?php echo __('Reload'); ?>"><i class="icon-refresh"></i>
Nathan Febuary
committed
<?php echo sprintf(__('Ticket #%s'), $ticket->getNumber()); ?></a>
</h2>
</div>
</div>
</div>
</div>
<div class="clear tixTitle has_bottom_border">
<h3>
<?php $subject_field = TicketForm::getInstance()->getField('subject');
echo $subject_field->display($ticket->getSubject()); ?>
</h3>
</div>
<table class="ticket_info" cellspacing="0" cellpadding="0" width="940" border="0">
<tr>
<table border="0" cellspacing="" cellpadding="4" width="100%">
<tr>
<th width="100"><?php echo __('Status');?>:</th>
aydreeihn
committed
<?php
if ($role->hasPerm(Ticket::PERM_CLOSE)) {?>
<td>
<a class="tickets-action" data-dropdown="#action-dropdown-statuses" data-placement="bottom" data-toggle="tooltip" title="<?php echo __('Change Status'); ?>"
data-redirect="tickets.php?id=<?php echo $ticket->getId(); ?>"
href="#statuses">
<?php echo $ticket->getStatus(); ?>
</a>
</td>
<?php } else { ?>
<td><?php echo ($S = $ticket->getStatus()) ? $S->display() : ''; ?></td>
<?php } ?>
</tr>
<tr>
<th><?php echo __('Priority');?>:</th>
<?php
if ($role->hasPerm(Ticket::PERM_EDIT)) {?>
<td>
<a class="ticket-action" id="inline-update" data-placement="bottom" data-toggle="tooltip" title="<?php echo __('Update'); ?>"
data-redirect="tickets.php?id=<?php echo $ticket->getId(); ?>"
href="#tickets/<?php echo $ticket->getId(); ?>/field/priority/edit">
<?php echo $ticket->getPriority(); ?>
</a>
</td>
<?php } else { ?>
<td><?php echo $ticket->getPriority(); ?></td>
<?php } ?>
</tr>
<tr>
<th><?php echo __('Department');?>:</th>
<?php
if ($role->hasPerm(Ticket::PERM_TRANSFER)) {?>
<td>
<a class="ticket-action" id="ticket-transfer" data-placement="bottom" data-toggle="tooltip" title="<?php echo __('Transfer'); ?>"
data-redirect="tickets.php?id=<?php echo $ticket->getId(); ?>"
href="#tickets/<?php echo $ticket->getId(); ?>/transfer"><?php echo Format::htmlchars($ticket->getDeptName()); ?>
</a>
</td>
<?php
}else {?>
<td><?php echo Format::htmlchars($ticket->getDeptName()); ?></td>
</tr>
<tr>
<th><?php echo __('Create Date');?>:</th>
<td><?php echo Format::datetime($ticket->getCreateDate()); ?></td>
</tr>
</table>
</td>
<td width="50%" style="vertical-align:top">
<table border="0" cellspacing="" cellpadding="4" width="100%">
<tr>
<th width="100"><?php echo __('User'); ?>:</th>
<td><a href="#tickets/<?php echo $ticket->getId(); ?>/user"
$.userLookup('ajax.php/tickets/<?php echo $ticket->getId(); ?>/user',
function (user) {
$('#user-'+user.id+'-name').text(user.name);
$('#user-'+user.id+'-email').text(user.email);
$('#user-'+user.id+'-phone').text(user.phone);
$('select#emailreply option[value=1]').text(user.name+' <'+user.email+'>');
"><i class="icon-user"></i> <span id="user-<?php echo $ticket->getOwnerId(); ?>-name"
><?php echo Format::htmlchars($ticket->getName());
?></span></a>
if ($user) { ?>
<a href="tickets.php?<?php echo Http::build_query(array(
'status'=>'open', 'a'=>'search', 'uid'=> $user->getId()
)); ?>" title="<?php echo __('Related Tickets'); ?>"
data-dropdown="#action-dropdown-stats">
(<b><?php echo $user->getNumTickets(); ?></b>)
</a>
<div id="action-dropdown-stats" class="action-dropdown anchor-right">
<ul>
<?php
echo sprintf('<li><a href="tickets.php?a=search&status=open&uid=%s"><i class="icon-folder-open-alt icon-fixed-width"></i> %s</a></li>',
$user->getId(), sprintf(_N('%d Open Ticket', '%d Open Tickets', $open), $open));
echo sprintf('<li><a href="tickets.php?a=search&status=closed&uid=%d"><i
class="icon-folder-close-alt icon-fixed-width"></i> %s</a></li>',
$user->getId(), sprintf(_N('%d Closed Ticket', '%d Closed Tickets', $closed), $closed));
<li><a href="tickets.php?a=search&uid=<?php echo $ticket->getOwnerId(); ?>"><i class="icon-double-angle-right icon-fixed-width"></i> <?php echo __('All Tickets'); ?></a></li>
<?php if ($thisstaff->hasPerm(User::PERM_DIRECTORY)) { ?>
<li><a href="users.php?id=<?php echo
$user->getId(); ?>"><i class="icon-user
icon-fixed-width"></i> <?php echo __('Manage User'); ?></a></li>
$numCollaborators = $ticket->getThread()->getNumCollaborators();
if ($ticket->getThread()->getNumCollaborators())
$recipients = sprintf(__('%d'),
$numCollaborators);
else
$recipients = 0;
echo sprintf('<span><a class="manage-collaborators preview"
href="#thread/%d/collaborators"><span id="t%d-recipients"><i class="icon-group"></i> (%s)</span></a></span>',
$ticket->getThreadId(),
$ticket->getThreadId(),
$recipients);
}?>
<?php } # end if ($user) ?>
</td>
</tr>
<tr>
<th><?php echo __('Email'); ?>:</th>
<td>
<span id="user-<?php echo $ticket->getOwnerId(); ?>-email"><?php echo $ticket->getEmail(); ?></span>
</td>
</tr>
<?php if ($user->getOrganization()) { ?>
<tr>
<th><?php echo __('Organization'); ?>:</th>
<td><i class="icon-building"></i>
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
<?php echo Format::htmlchars($user->getOrganization()->getName()); ?>
<a href="tickets.php?<?php echo Http::build_query(array(
'status'=>'open', 'a'=>'search', 'orgid'=> $user->getOrgId()
)); ?>" title="<?php echo __('Related Tickets'); ?>"
data-dropdown="#action-dropdown-org-stats">
(<b><?php echo $user->getNumOrganizationTickets(); ?></b>)
</a>
<div id="action-dropdown-org-stats" class="action-dropdown anchor-right">
<ul>
<?php if ($open = $user->getNumOpenOrganizationTickets()) { ?>
<li><a href="tickets.php?<?php echo Http::build_query(array(
'a' => 'search', 'status' => 'open', 'orgid' => $user->getOrgId()
)); ?>"><i class="icon-folder-open-alt icon-fixed-width"></i>
<?php echo sprintf(_N('%d Open Ticket', '%d Open Tickets', $open), $open); ?>
</a></li>
<?php }
if ($closed = $user->getNumClosedOrganizationTickets()) { ?>
<li><a href="tickets.php?<?php echo Http::build_query(array(
'a' => 'search', 'status' => 'closed', 'orgid' => $user->getOrgId()
)); ?>"><i class="icon-folder-close-alt icon-fixed-width"></i>
<?php echo sprintf(_N('%d Closed Ticket', '%d Closed Tickets', $closed), $closed); ?>
</a></li>
<li><a href="tickets.php?<?php echo Http::build_query(array(
'a' => 'search', 'orgid' => $user->getOrgId()
)); ?>"><i class="icon-double-angle-right icon-fixed-width"></i> <?php echo __('All Tickets'); ?></a></li>
<?php }
<li><a href="orgs.php?id=<?php echo $user->getOrgId(); ?>"><i
class="icon-building icon-fixed-width"></i> <?php
echo __('Manage Organization'); ?></a></li>
</td>
</tr>
<?php } # end if (user->org) ?>
<tr>
<th><?php echo __('Source'); ?>:</th>
<td>
<?php
if ($role->hasPerm(Ticket::PERM_EDIT)) {?>
<a class="ticket-action" id="inline-update" data-placement="bottom" data-toggle="tooltip" title="<?php echo __('Update'); ?>"
data-redirect="tickets.php?id=<?php echo $ticket->getId(); ?>"
href="#tickets/<?php echo $ticket->getId(); ?>/field/source/edit">
<?php echo Format::htmlchars($ticket->getSource());
</a>
<?php
} else {
echo Format::htmlchars($ticket->getSource());
}
if (!strcasecmp($ticket->getSource(), 'Web') && $ticket->getIP())
echo ' <span class="faded">('.Format::htmlchars($ticket->getIP()).')</span>';
?>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<table class="ticket_info" cellspacing="0" cellpadding="0" width="940" border="0">
<tr>
<td width="50%">
<table cellspacing="0" cellpadding="4" width="100%" border="0">
<?php
if($ticket->isOpen()) { ?>
<tr>
<th width="100"><?php echo __('Assigned To');?>:</th>
<td>
<a class="ticket-action" id="ticket-assign"
data-redirect="tickets.php?id=<?php echo $ticket->getId(); ?>"
href="#tickets/<?php echo $ticket->getId(); ?>/assign">
<?php
if($ticket->isAssigned())
echo Format::htmlchars(implode('/', $ticket->getAssignees()));
else
echo '<span class="faded">— '.__('Unassigned').' —</span>';
?>
</a>
</td>
<?php
} else { ?>
<td>
<?php
if($ticket->isAssigned())
echo Format::htmlchars(implode('/', $ticket->getAssignees()));
else
echo '<span class="faded">— '.__('Unassigned').' —</span>';
?>
</td>
<?php
} ?>
</tr>
<?php
} else { ?>
<tr>
<th width="100"><?php echo __('Closed By');?>:</th>
<td>
<?php
if(($staff = $ticket->getStaff()))
echo Format::htmlchars($staff->getName());
else
echo '<span class="faded">— '.__('Unknown').' —</span>';
?>
</td>
</tr>
<?php
} ?>
<tr>
<th><?php echo __('SLA Plan');?>:</th>
<td>
<?php
if ($role->hasPerm(Ticket::PERM_EDIT)) {?>
<a class="ticket-action" id="inline-update" data-placement="bottom" data-toggle="tooltip" title="<?php echo __('Update'); ?>"
data-redirect="tickets.php?id=<?php echo $ticket->getId(); ?>"
href="#tickets/<?php echo $ticket->getId(); ?>/field/sla/edit">
<?php echo $sla?Format::htmlchars($sla->getName()):'<span class="faded">— '.__('None').' —</span>'; ?>
</a>
<?php } else { ?>
<?php echo $sla?Format::htmlchars($sla->getName()):'<span class="faded">— '.__('None').' —</span>'; ?>
<?php } ?>
</td>
</tr>
<?php
if($ticket->isOpen()){ ?>
<tr>
<th><?php echo __('Due Date');?>:</th>
<?php
if ($role->hasPerm(Ticket::PERM_EDIT)) {?>
<td>
<a class="ticket-action" id="inline-update" data-placement="bottom" data-toggle="tooltip" title="<?php echo __('Update'); ?>"
data-redirect="tickets.php?id=<?php echo $ticket->getId(); ?>"
href="#tickets/<?php echo $ticket->getId();
?>/field/duedate/edit">
<?php echo Format::datetime($ticket->getEstDueDate()); ?>
</a>
<td>
<?php } else { ?>
<td><?php echo Format::datetime($ticket->getEstDueDate()); ?></td>
<?php } ?>
</tr>
<?php
}else { ?>
<tr>
<th><?php echo __('Close Date');?>:</th>
<td><?php echo Format::datetime($ticket->getCloseDate()); ?></td>
</tr>
<?php
}
?>
</table>
</td>
<td width="50%">
<table cellspacing="0" cellpadding="4" width="100%" border="0">
<tr>
<th width="100"><?php echo __('Help Topic');?>:</th>
<?php
if ($role->hasPerm(Ticket::PERM_EDIT)) {?>
<td>
<a class="ticket-action" id="inline-update" data-placement="bottom"
data-toggle="tooltip" title="<?php echo __('Update'); ?>"
data-redirect="tickets.php?id=<?php echo $ticket->getId(); ?>"
href="#tickets/<?php echo $ticket->getId(); ?>/field/topic/edit">
<?php echo $ticket->getHelpTopic() ?: __('None'); ?>
</a>
</td>
<?php } else { ?>
<td><?php echo Format::htmlchars($ticket->getHelpTopic()); ?></td>
<?php } ?>
</tr>
<tr>
<th nowrap><?php echo __('Last Message');?>:</th>
<td><?php echo Format::datetime($ticket->getLastMsgDate()); ?></td>
</tr>
<th nowrap><?php echo __('Last Response');?>:</th>
<td><?php echo Format::datetime($ticket->getLastRespDate()); ?></td>
</table>
</td>
</tr>
</table>
<br>
<?php
foreach (DynamicFormEntry::forTicket($ticket->getId()) as $form) {
//Find fields to exclude if disabled by help topic
$disabled = Ticket::getMissingRequiredFields($ticket, true);
// Skip core fields shown earlier in the ticket view
// TODO: Rewrite getAnswers() so that one could write
// ->getAnswers()->filter(not(array('field__name__in'=>
// array('email', ...))));
$answers = $form->getAnswers()->exclude(Q::any(array(
'field__flags__hasbit' => DynamicFormField::FLAG_EXT_STORED,
'field__name__in' => array('subject', 'priority'),
'field__id__in' => $disabled,
$displayed = array();
foreach($answers as $a) {
aydreeihn
committed
$displayed[] = array($a->getLocal('label'), $a->display() ?: '<span class="faded">—' . __('Empty') . '— </span>', $a->getLocal('id'));
}
if (count($displayed) == 0)
<table class="ticket_info custom-data" cellspacing="0" cellpadding="0" width="940" border="0">
<thead>
<th colspan="2"><?php echo Format::htmlchars($form->getTitle()); ?></th>
</thead>
<tbody>
<?php
foreach ($displayed as $stuff) {
aydreeihn
committed
list($label, $v, $id) = $stuff;
<td width="200"><?php echo Format::htmlchars($label); ?>:</td>
<td>
<?php if ($role->hasPerm(Ticket::PERM_EDIT)) {?>
<a class="ticket-action" id="inline-update" data-placement="bottom" data-toggle="tooltip" title="<?php echo __('Update'); ?>"
data-redirect="tickets.php?id=<?php echo $ticket->getId(); ?>"
href="#tickets/<?php echo $ticket->getId(); ?>/field/<?php echo $id; ?>/edit">
<?php
if (strlen($v) > 200) {
echo Format::truncate($v, 200);
echo "<br><i class=\"icon-edit\"></i>";
}
else
echo $v;
?>
</a>
<?php } else {
echo $v;
} ?>
</td>
<?php } ?>
</tbody>
</table>
<?php } ?>
Nathan Febuary
committed
<?php
$tcount = $ticket->getThreadEntries($types)->count();
?>
<ul class="tabs clean threads" id="ticket_tabs" >
<li class="active"><a id="ticket-thread-tab" href="#ticket_thread"><?php
echo sprintf(__('Ticket Thread (%d)'), $tcount); ?></a></li>
echo sprintf('#tickets/%d/tasks', $ticket->getId()); ?>"><?php
echo __('Tasks');
if ($ticket->getNumTasks())
echo sprintf(' (<span id="ticket-tasks-count">%d</span>)', $ticket->getNumTasks());
</ul>
<div id="ticket_thread" class="tab_content">
<?php
// Render ticket thread
$ticket->getThread()->render(
array('M', 'R', 'N'),
array(
'html-id' => 'ticketThread',
'mode' => Thread::MODE_STAFF,
'sort' => $thisstaff->thread_view_order
)
<?php
if ($errors['err'] && isset($_POST['a'])) {
// Reflect errors back to the tab.
$errors[$_POST['a']] = $errors['err'];
} elseif($msg) { ?>
<div id="msg_notice"><?php echo $msg; ?></div>
<?php
} elseif($warn) { ?>
<div id="msg_warning"><?php echo $warn; ?></div>
<div class="sticky bar stop actions" id="response_options"
>
<ul class="tabs" id="response-tabs">
if ($role->hasPerm(Ticket::PERM_REPLY)) { ?>
<li class="active <?php
echo isset($errors['reply']) ? 'error' : ''; ?>"><a
href="#reply" id="post-reply-tab"><?php echo __('Post Reply');?></a></li>
<li><a href="#note" <?php
echo isset($errors['postnote']) ? 'class="error"' : ''; ?>
id="post-note-tab"><?php echo __('Post Internal Note');?></a></li>
</ul>
if ($role->hasPerm(Ticket::PERM_REPLY)) {
$replyTo = $_POST['reply-to'] ?: 'all';
$emailReply = ($replyTo != 'none');
?>
<form id="reply" class="tab_content spellcheck exclusive save"
data-lock-object-id="ticket/<?php echo $ticket->getId(); ?>"
data-lock-id="<?php echo $mylock ? $mylock->getId() : ''; ?>"
echo $ticket->getId(); ?>#reply" name="reply" method="post" enctype="multipart/form-data">
<?php csrf_token(); ?>
<input type="hidden" name="id" value="<?php echo $ticket->getId(); ?>">
<input type="hidden" name="msgId" value="<?php echo $msgId; ?>">
<input type="hidden" name="a" value="reply">
<input type="hidden" name="lockCode" value="<?php echo $mylock ? $mylock->getCode() : ''; ?>">
<table style="width:100%" border="0" cellspacing="0" cellpadding="3">
<?php
if ($errors['reply']) {?>
<tr><td width="120"> </td><td class="error"><?php echo $errors['reply']; ?> </td></tr>
<?php
}?>
<tbody id="to_sec">
<tr>
<td width="120">
<label><strong><?php echo __('From'); ?>:</strong></label>
</td>
<td>
// Department email (default).
echo sprintf('<option value="%s" selected="selected">%s</option>',
$dept->getEmail()->getId(),
Format::htmlchars($dept->getEmail()->getAddress()));
// Optional SMTP addreses user can send email via
if (($emails = Email::getAddresses(array('smtp' =>
true), false)) && count($emails)) {
echo '<option value=""
disabled="disabled"> </option>';
$emailId = $_POST['from_email_id'] ?: 0;
foreach ($emails as $e) {
if ($dept->getEmail()->getId() == $e->getId())
continue;
echo sprintf('<option value="%s" %s>%s</option>',
$e->getId(),
$e->getId() == $emailId ?
'selected="selected"' : '',
Format::htmlchars($e->getAddress()));
</tbody>
<tbody id="recipients">
<tr id="user-row">
<td width="120">
<label><strong><?php echo __('Recipients'); ?>:</strong></label>
</td>
<td><a href="#tickets/<?php echo $ticket->getId(); ?>/user"
onclick="javascript:
$.userLookup('ajax.php/tickets/<?php echo $ticket->getId(); ?>/user',
function (user) {
window.location = 'tickets.php?id='<?php $ticket->getId(); ?>
});
return false;
"><span ><?php
echo Format::htmlchars($ticket->getOwner()->getEmail()->getAddress());
?></span></a>
</td>
</tr>
<tr><td> </td>
<td>
<div style="margin-bottom:2px;">
<?php
echo sprintf('<span><a id="show_ccs">
<i id="arrow-icon" class="icon-caret-right"></i> %s </a>
<a class="manage-collaborators
collaborators preview noclick %s"
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
href="#thread/%d/collaborators">
(%s)</a></span>',
__('Collaborators'),
$ticket->getNumCollaborators()
? '' : 'hidden',
$ticket->getThreadId(),
sprintf(__('%s of %s'),
sprintf('<span
class="collabselection__count">%d</span>',
$ticket->getNumActiveCollaborators()),
sprintf('<span
class="collabselection__total">%d</span>',
$ticket->getNumCollaborators())
)
);
?>
</div>
<div id="ccs" class="hidden">
<div>
<span style="margin: 10px 5px 1px 0;" class="faded pull-left"><?php echo __('Select or Add New Collaborators'); ?> </span>
<?php
if ($role->hasPerm(Ticket::PERM_REPLY)) { ?>
<span class="action-button pull-left" style="margin: 2px 0 5px 20px;"
data-dropdown="#action-dropdown-collaborators"
data-placement="bottom"
data-toggle="tooltip"
title="<?php echo __('Manage Collaborators'); ?>"
>
<i class="icon-caret-down pull-right"></i>
<a class="ticket-action" id="collabs-button"
data-redirect="tickets.php?id=<?php echo
$ticket->getId(); ?>"
href="#thread/<?php echo
$ticket->getThreadId(); ?>/collaborators">
<i class="icon-group"></i></a>
</span>
<?php
} ?>
<span class="error"> <?php echo $errors['ccs']; ?></span>
</div>
<?php
if ($role->hasPerm(Ticket::PERM_REPLY)) { ?>
<div id="action-dropdown-collaborators" class="action-dropdown anchor-right">
<ul>
<li><a class="manage-collaborators"
href="#thread/<?php echo
$ticket->getThreadId(); ?>/add-collaborator/addcc"><i
class="icon-plus"></i> <?php echo __('Add New'); ?></a>
<li><a class="manage-collaborators"
href="#thread/<?php echo
$ticket->getThreadId(); ?>/collaborators"><i
class="icon-cog"></i> <?php echo __('Manage Collaborators'); ?></a>
</ul>
</div>
<?php
} ?>
<div class="clear">
<select id="collabselection" name="ccs[]" multiple="multiple"
data-placeholder="<?php
echo __('Select Active Collaborators'); ?>">
<?php
$collabs = $ticket->getCollaborators();
foreach ($collabs as $c) {
echo sprintf('<option value="%s" %s class="%s">%s</option>',
$c->getUserId(),
$c->isActive() ?
'selected="selected"' : '',
$c->isActive() ?
'active' : 'disabled',
$c->getName());
}
?>
</select>
</div>
</div>
</td>
</tr>
<tr>
</td>
// Supported Reply Types
$replyTypes = array(
'all' => __('All Active Recipients'),
'user' => sprintf('%s (%s)',
__('Ticket Owner'),
Format::htmlchars($ticket->getOwner()->getEmail())),
'none' => sprintf('— %s —',
__('Do Not Email Reply'))
);
$replyTo = $_POST['reply-to'] ?: 'all';
$emailReply = ($replyTo != 'none');
<select id="reply-to" name="reply-to">
<?php
foreach ($replyTypes as $k => $v) {
echo sprintf('<option value="%s" %s>%s</option>',
$k,
($k == $replyTo) ?
'selected="selected"' : '',
$v);
}
?>
</select>
<i class="help-tip icon-question-sign" href="#reply_types"></i>
</td>
<tr>
<td width="120" style="vertical-align:top">
<label><strong><?php echo __('Response');?>:</strong></label>
</td>
<?php
if ($errors['response'])
echo sprintf('<div class="error">%s</div>',
$errors['response']);
if ($cfg->isCannedResponseEnabled()) { ?>
<div>
<select id="cannedResp" name="cannedResp">
<option value="0" selected="selected"><?php echo __('Select a canned response');?></option>
<option value='original'><?php echo __('Original Message'); ?></option>
<option value='lastmessage'><?php echo __('Last Message'); ?></option>
<?php
if(($cannedResponses=Canned::responsesByDeptId($ticket->getDeptId()))) {
echo '<option value="0" disabled="disabled">
------------- '.__('Premade Replies').' ------------- </option>';
foreach($cannedResponses as $id =>$title)
</div>
<?php } # endif (canned-resonse-enabled)
$signature = '';
switch ($thisstaff->getDefaultSignatureType()) {
case 'dept':
if ($dept && $dept->canAppendSignature())
$signature = $dept->getSignature();
break;
case 'mine':
$signature = $thisstaff->getSignature();
break;
} ?>
<input type="hidden" name="draft_id" value=""/>
<textarea name="response" id="response" cols="50"
data-signature-field="signature" data-dept-id="<?php echo $dept->getId(); ?>"
data-signature="<?php
echo Format::htmlchars(Format::viewableImages($signature)); ?>"
placeholder="<?php echo __(
'Start writing your response here. Use canned responses from the drop-down above'
); ?>"
rows="9" wrap="soft"
class="<?php if ($cfg->isRichTextEnabled()) echo 'richtext';
?> draft draft-delete" <?php
list($draft, $attrs) = Draft::getDraftAndDataAttrs('ticket.response', $ticket->getId(), $info['response']);
echo $attrs; ?>><?php echo $_POST ? $info['response'] : $draft;
<div id="reply_form_attachments" class="attachments">
<?php
print $response_form->getField('attachments')->render();
?>
<tr>
<label for="signature" class="left"><?php echo __('Signature');?>:</label>
</td>
<?php
$info['signature']=$info['signature']?$info['signature']:$thisstaff->getDefaultSignatureType();
?>
<label><input type="radio" name="signature" value="none" checked="checked"> <?php echo __('None');?></label>
<?php
if($thisstaff->getSignature()) {?>
<label><input type="radio" name="signature" value="mine"
<?php echo ($info['signature']=='mine')?'checked="checked"':''; ?>> <?php echo __('My Signature');?></label>
<?php
} ?>
<?php
if($dept && $dept->canAppendSignature()) { ?>
<label><input type="radio" name="signature" value="dept"
<?php echo ($info['signature']=='dept')?'checked="checked"':''; ?>>
<?php echo sprintf(__('Department Signature (%s)'), Format::htmlchars($dept->getName())); ?></label>
<?php
} ?>
</td>
</tr>
<tr>
<td width="120" style="vertical-align:top">
<label><strong><?php echo __('Ticket Status');?>:</strong></label>
</td>
if ($role->hasPerm(Ticket::PERM_CLOSE)
$outstanding = true;
echo sprintf('<div class="warning-banner">%s</div>', $warning);
} ?>
<?php
$statusId = $info['reply_status_id'] ?: $ticket->getStatusId();
if ($role->hasPerm(Ticket::PERM_CLOSE) && !$outstanding)
foreach (TicketStatusList::getStatuses(
array('states' => $states)) as $s) {
$selected = ($statusId == $s->getId());
echo sprintf('<option value="%d" %s>%s%s</option>',