Here is the code and screenshot
#### Changes to include/class.ticket.php ####
Add the following code after:
function getAttachmentsLinks(){}
Around line 650:
//--- MOD: List All Attachments Tab, for 1.7RC5. by Tristan Novak, tbjnovak@gmail.com, 2-21-13 ---
function getAllAttachments() {
//XXX: inner join the file table instead?
$sql='SELECT a.attach_id, f.id as file_id, f.size, f.hash as file_hash, f.name '
.' FROM '.FILE_TABLE.' f '
.' INNER JOIN '.TICKET_ATTACHMENT_TABLE.' a ON(f.id=a.file_id) '
.' WHERE a.ticket_id='.db_input($this->getId());
$attachments = array();
if(($res=db_query($sql)) && db_num_rows($res)) {
while($rec=db_fetch_array($res))
$attachments = $rec;
}
return $attachments;
}
function getAllAttachmentsLinks($separator='<br>',$target='') {
$str='';
foreach($this->getAllAttachments() as $attachment ) {
/* The has here can be changed but must match validation in attachment.php */
$hash=md5($attachment.session_id().$attachment);
if($attachment)
$size=sprintf('<em>(%s)</em>', Format:($attachment));
$str.=sprintf('<a class="Icon file" href="attachment.php?id=%d&h=%s" target="%s">%s</a>%s %s',
$attachment, $hash, $target, Format:($attachment), $size, $separator);
}
return $str;
}
//--- MOD: List All Attachments Tab, for 1.7RC5. by Tristan Novak, tbjnovak@gmail.com, 2-21-13 ---
#### Changes to scp/ticket-view.inc.php ####
Add after:
if($thisstaff->canAssignTickets()) { ?>
<li><a id="assign_tab" href="#assign"><?php echo $ticket->isAssigned()?'Reassign Ticket':'Assign Ticket'; ?></a></li>
<?php
} ?>
Around line 377:
// --- MOD: List All Attachments Tab, for 1.7RC5. by Tristan Novak, tbjnovak@gmail.com, 2-21-13 ---
<?php
if($ticket->checkAttachments()) {?>
<li><a id="toggle_attachments_tab" href="#">View Attachments</a></li>
<?php
} ?>
// --- MOD: List All Attachments Tab, for 1.7RC5. by Tristan Novak, tbjnovak@gmail.com, 2-21-13 ---
Add after:
</table>
<p style="padding-left;">
<input class="btn_sm" type="submit" value="<?php echo $ticket->isAssigned()?'Reassign':'Assign'; ?>">
<input class="btn_sm" type="reset" value="Reset">
</p>
</form>
<?php
} ?>
Around line 780:
// --- MOD: List All Attachments Tab, for 1.7RC5. by Tristan Novak, tbjnovak@gmail.com, 2-21-13 ---
<form id="attachments" action="tickets.php?id=<?php echo $ticket->getId(); ?>#attachments" name="attachments" method="post" enctype="multipart/form-data">
<?php csrf_token(); ?>
<?php
if($links=$ticket->getAllAttachmentsLinks()) {?>
<tr>
<td class="info" colspan="2"><?php echo $links; ?></td>
</tr>
<?php
}?>
</form>
// --- MOD: List All Attachments Tab, for 1.7RC5. by Tristan Novak, tbjnovak@gmail.com, 2-21-13 ---

