itflow/agent/modals/contact/contact_bulk_edit_role.php

60 lines
2.8 KiB
PHP

<?php
require_once '../../../includes/modal_header.php';
$contact_ids = array_map('intval', $_GET['contact_ids'] ?? []);
$count = count($contact_ids);
ob_start();
?>
<div class="modal-header bg-dark">
<h5 class="modal-title"><i class="fa fa-fw fa-user-shield mr-2"></i>Set Roles for <strong><?= $count ?></strong> Contacts</h5>
<button type="button" class="close text-white" data-dismiss="modal">
<span>&times;</span>
</button>
</div>
<form action="post.php" method="post" autocomplete="off">
<input type="hidden" name="csrf_token" value="<?= $_SESSION['csrf_token'] ?>">
<?php foreach ($contact_ids as $contact_id) { ?><input type="hidden" name="contact_ids[]" value="<?= $contact_id ?>"><?php } ?>
<input type="hidden" name="bulk_contact_important" value="0">
<input type="hidden" name="bulk_contact_billing" value="0">
<input type="hidden" name="bulk_contact_technical" value="0">
<div class="modal-body">
<div class="form-group">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="bulkContactImportantCheckbox" name="bulk_contact_important" value="1">
<label class="custom-control-label" for="bulkContactImportantCheckbox">Important</label>
<small class="form-text text-muted">Important Person and pins them to the top of the contact list</small>
</div>
</div>
<div class="form-group">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="bulkContactBillingCheckbox" name="bulk_contact_billing" value="1">
<label class="custom-control-label" for="bulkContactBillingCheckbox">Billing</label>
<small class="form-text text-muted">Receives Invoices and Receipts and has access to billing via the portal</small>
</div>
</div>
<div class="form-group">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="bulkContactTechnicalCheckbox" name="bulk_contact_technical" value="1">
<label class="custom-control-label" for="bulkContactTechnicalCheckbox">Technical</label>
<small class="form-text text-muted">Person to contact for technical related things and has access to all tickets and documents via the portal</small>
</div>
</div>
</div>
<div class="modal-footer">
<button type="submit" name="bulk_edit_contact_role" class="btn btn-primary text-bold"><i class="fas fa-check mr-2"></i>Set Roles</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';