Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
// Tickets mass actions based on logged in agent
if ($agent->canManageTickets())
echo TicketStatus::status_options();
$actions = array();
if ($agent->hasPerm(Ticket::PERM_ASSIGN, false)) {
$actions += array(
'assign' => array(
'icon' => 'icon-user',
'action' => __('Assign')
));
}
if ($agent->hasPerm(Ticket::PERM_TRANSFER, false)) {
$actions += array(
'transfer' => array(
'icon' => 'icon-share',
'action' => __('Transfer')
));
}
if ($agent->hasPerm(Ticket::PERM_DELETE, false)) {
$actions += array(
'delete' => array(
'class' => 'danger',
'icon' => 'icon-trash',
'action' => __('Delete')
));
}
if ($actions) {
$more = $options['morelabel'] ?: __('More');
?>
<span
class="action-button"
data-dropdown="#action-dropdown-moreoptions">
<i class="icon-caret-down pull-right"></i>
<a class="tickets-action"
href="#moreoptions"><i
class="icon-reorder"></i> <?php
echo $more; ?></a>
</span>
<div id="action-dropdown-moreoptions"
class="action-dropdown anchor-right">
<ul>
<?php foreach ($actions as $a => $action) { ?>
<li <?php
if ($action['class'])
echo sprintf("class='%s'", $action['class']); ?> >
<a class="no-pjax tickets-action"
<?php
if ($action['dialog'])
echo sprintf("data-dialog-config='%s'", $action['dialog']);
if ($action['redirect'])
echo sprintf("data-redirect='%s'", $action['redirect']);
?>
href="<?php
echo sprintf('#tickets/mass/%s', $a); ?>"
><i class="icon-fixed-width <?php
echo $action['icon'] ?: 'icon-tag'; ?>"></i> <?php
echo $action['action']; ?></a>
</li>
<?php
} ?>
</ul>
</div>
<?php
} ?>
<script type="text/javascript">
$(function() {
$(document).off('.tickets-actions');
$(document).on('click.tickets-actions', 'a.tickets-action', function(e) {
e.preventDefault();
var count = checkbox_checker($('form#tickets'), 1);
if (count) {
var url = 'ajax.php/'
+$(this).attr('href').substr(1)
+'?count='+count
+'&_uid='+new Date().getTime();
$.dialog(url, [201], function (xhr) {
$.pjax.reload('#pjax-container');
});
}
return false;
});
});
</script>