mirror of https://github.com/itflow-org/itflow
69 lines
2.7 KiB
PHP
69 lines
2.7 KiB
PHP
<?php
|
|
|
|
require_once '../../../includes/modal_header.php';
|
|
|
|
$contact_id = intval($_GET['id']);
|
|
|
|
$sql = mysqli_query($mysqli, "SELECT * FROM contacts
|
|
WHERE contact_id = $contact_id
|
|
LIMIT 1
|
|
");
|
|
|
|
$row = mysqli_fetch_array($sql);
|
|
$contact_name = nullable_htmlentities($row['contact_name']);
|
|
$client_id = intval($row['contact_client_id']);
|
|
|
|
// Generate the HTML form content using output buffering.
|
|
ob_start();
|
|
|
|
?>
|
|
|
|
<div class="modal-header bg-dark">
|
|
<h5 class="modal-title"><i class="fa fa-fw fa-stream mr-2"></i>Link Service to <strong><?php echo $contact_name; ?></strong></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="contact_id" value="<?php echo $contact_id; ?>">
|
|
<div class="modal-body">
|
|
|
|
<div class="form-group">
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text"><i class="fa fa-fw fa-stream"></i></span>
|
|
</div>
|
|
<select class="form-control select2" name="service_id">
|
|
<option value="">- Select a Service -</option>
|
|
<?php
|
|
$sql_services_select = mysqli_query($mysqli, "
|
|
SELECT services.service_id, services.service_name
|
|
FROM services
|
|
LEFT JOIN service_contacts
|
|
ON services.service_id = service_contacts.service_id
|
|
AND service_contacts.contact_id = $contact_id
|
|
WHERE services.service_client_id = $client_id
|
|
AND service_contacts.contact_id IS NULL
|
|
ORDER BY services.service_name ASC
|
|
");
|
|
while ($row = mysqli_fetch_array($sql_services_select)) {
|
|
$service_id = intval($row['service_id']);
|
|
$service_name = nullable_htmlentities($row['service_name']);
|
|
?>
|
|
<option value="<?php echo $service_id ?>"><?php echo $service_name; ?></option>
|
|
<?php
|
|
}
|
|
?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="submit" name="link_service_to_contact" class="btn btn-primary text-bold"><i class="fa fa-check mr-2"></i>Link</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';
|