mirror of https://github.com/itflow-org/itflow
61 lines
2.3 KiB
PHP
61 lines
2.3 KiB
PHP
<?php
|
|
|
|
require_once '../../../includes/modal_header.php';
|
|
|
|
$ticket_ids = array_map('intval', $_GET['ticket_ids'] ?? []);
|
|
|
|
$count = count($ticket_ids);
|
|
|
|
ob_start();
|
|
|
|
?>
|
|
|
|
<div class="modal-header bg-dark">
|
|
<h5 class="modal-title"><i class="fa fa-fw fa-user-check mr-2"></i>Assign Agent to <strong><?= $count ?></strong> Tickets</h5>
|
|
<button type="button" class="close text-white" data-dismiss="modal">
|
|
<span>×</span>
|
|
</button>
|
|
</div>
|
|
|
|
<form action="post.php" method="post" autocomplete="off">
|
|
<input type="hidden" name="csrf_token" value="<?= $_SESSION['csrf_token'] ?>">
|
|
<?php foreach ($ticket_ids as $ticket_id) { ?><input type="hidden" name="ticket_ids[]" value="<?= $ticket_id ?>"><?php } ?>
|
|
|
|
<div class="modal-body">
|
|
|
|
<div class="form-group">
|
|
<label>Assign to</label>
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-fw fa-user-check"></i></span>
|
|
</div>
|
|
<select class="form-control select2" name="assign_to">
|
|
<option value="0">Not Assigned</option>
|
|
<?php
|
|
$sql_users_select = mysqli_query($mysqli, "SELECT user_id, user_name FROM users
|
|
WHERE user_type = 1
|
|
AND user_status = 1
|
|
AND user_archived_at IS NULL
|
|
ORDER BY user_name ASC"
|
|
);
|
|
while ($row = mysqli_fetch_array($sql_users_select)) {
|
|
$user_id_select = intval($row['user_id']);
|
|
$user_name_select = nullable_htmlentities($row['user_name']);
|
|
|
|
?>
|
|
<option value="<?php echo $user_id_select; ?>"><?php echo $user_name_select; ?></option>
|
|
<?php } ?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button type="submit" name="bulk_assign_ticket" class="btn btn-primary text-bold"><i class="fa fa-check mr-2"></i>Assign</button>
|
|
<button type="button" class="btn btn-light" data-dismiss="modal"><i class="fa fa-times mr-2"></i>Cancel</button>
|
|
</div>
|
|
</form>
|
|
|
|
<?php
|
|
require_once '../../../includes/modal_footer.php';
|