mirror of https://github.com/itflow-org/itflow
50 lines
2.4 KiB
PHP
50 lines
2.4 KiB
PHP
<div class="modal" id="bulkEditReferralModal" tabindex="-1">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header bg-dark">
|
|
<h5 class="modal-title"><i class="fa fa-fw fa-link mr-2"></i>Bulk Edit Referral</h5>
|
|
<button type="button" class="close text-white" data-dismiss="modal">
|
|
<span>×</span>
|
|
</button>
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
<div class="form-group">
|
|
<label>Referral</label>
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-fw fa-link"></i></span>
|
|
</div>
|
|
<select class="form-control select2" name="bulk_referral">
|
|
<option value="">- Select a Referral -</option>
|
|
<?php
|
|
|
|
$referral_sql = mysqli_query($mysqli, "SELECT * FROM categories WHERE category_type = 'Referral' AND category_archived_at IS NULL ORDER BY category_name ASC");
|
|
while ($row = mysqli_fetch_array($referral_sql)) {
|
|
$referral = nullable_htmlentities($row['category_name']); ?>
|
|
<option><?php echo $referral; ?></option>
|
|
<?php } ?>
|
|
|
|
</select>
|
|
<div class="input-group-append">
|
|
<button class="btn btn-secondary" type="button"
|
|
data-toggle="ajax-modal"
|
|
data-modal-size="sm"
|
|
data-ajax-url="ajax/ajax_category_add.php?category=Referral">
|
|
<i class="fas fa-fw fa-plus"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button type="submit" name="bulk_edit_client_referral" class="btn btn-primary text-bold"><i class="fas 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>
|
|
</div>
|
|
</div>
|
|
</div>
|