mirror of https://github.com/itflow-org/itflow
74 lines
2.8 KiB
PHP
74 lines
2.8 KiB
PHP
<?php
|
|
|
|
require_once '../../../includes/modal_header.php';
|
|
|
|
$document_id = intval($_GET['document_id']);
|
|
|
|
$sql = mysqli_query($mysqli, "SELECT * FROM documents
|
|
WHERE document_id = $document_id
|
|
LIMIT 1
|
|
");
|
|
|
|
$row = mysqli_fetch_array($sql);
|
|
$document_name = nullable_htmlentities($row['document_name']);
|
|
$client_id = intval($row['document_client_id']);
|
|
|
|
ob_start();
|
|
|
|
?>
|
|
|
|
<div class="modal-header bg-dark">
|
|
<h5 class="modal-title"><i class="fa fa-fw fa-paperclip mr-2"></i>Link File to <strong><?= $document_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="document_id" value="<?= $document_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-paperclip"></i></span>
|
|
</div>
|
|
<select class="form-control select2" name="file_id">
|
|
<option value="">- Select a File -</option>
|
|
<?php
|
|
$sql_files_select = mysqli_query($mysqli, "
|
|
SELECT files.file_id, file_name, folder_name
|
|
FROM files
|
|
LEFT JOIN folders
|
|
ON folder_id = file_folder_id
|
|
LEFT JOIN document_files
|
|
ON files.file_id = document_files.file_id
|
|
AND document_files.document_id = $document_id
|
|
WHERE file_client_id = $client_id
|
|
AND file_archived_at IS NULL
|
|
AND document_files.file_id IS NULL
|
|
ORDER BY folder_name ASC, file_name ASC
|
|
");
|
|
while ($row = mysqli_fetch_array($sql_files_select)) {
|
|
$file_id = intval($row['file_id']);
|
|
$file_name = nullable_htmlentities($row['file_name']);
|
|
$folder_name = nullable_htmlentities($row['folder_name']);
|
|
|
|
?>
|
|
<option value="<?php echo $file_id ?>"><?php echo "$folder_name/$file_name"; ?></option>
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="submit" name="link_file_to_document" class="btn btn-primary text-bold"><i class="fa fa-check mr-2"></i>Link File</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';
|