mirror of https://github.com/itflow-org/itflow
83 lines
2.9 KiB
PHP
83 lines
2.9 KiB
PHP
<?php include("inc_all_client.php"); ?>
|
|
|
|
<?php
|
|
|
|
if (isset($_GET['document_id'])) {
|
|
$document_id = intval($_GET['document_id']);
|
|
}
|
|
|
|
|
|
$sql_document = mysqli_query($mysqli,"SELECT * FROM documents LEFT JOIN folders ON document_folder_id = folder_id WHERE document_client_id = $client_id AND document_id = $document_id AND documents.company_id = $session_company_id");
|
|
|
|
$row = mysqli_fetch_array($sql_document);
|
|
|
|
$folder_name = htmlentities($row['folder_name']);
|
|
$document_name = htmlentities($row['document_name']);
|
|
$document_content = $row['document_content'];
|
|
$document_created_at = $row['document_created_at'];
|
|
$document_updated_at = $row['document_updated_at'];
|
|
$document_folder_id = $row['document_folder_id'];
|
|
|
|
?>
|
|
|
|
<ol class="breadcrumb d-print-none">
|
|
<li class="breadcrumb-item">
|
|
<a href="invoices.php">Home</a>
|
|
</li>
|
|
<li class="breadcrumb-item">
|
|
<a href="clients.php">Clients</a>
|
|
</li>
|
|
<li class="breadcrumb-item">
|
|
<a href="client_overview.php?client_id=<?php echo $client_id; ?>"><?php echo $client_name; ?></a>
|
|
</li>
|
|
<li class="breadcrumb-item">
|
|
<a href="client_documents.php?client_id=<?php echo $client_id; ?>">Documents</a>
|
|
</li>
|
|
<?php if ($document_folder_id > 0) { ?>
|
|
<li class="breadcrumb-item">
|
|
<a href="client_documents.php?client_id=<?php echo $client_id; ?>&folder_id=<?php echo $document_folder_id; ?>"><i class="fas fa-folder-open"></i> <?php echo $folder_name; ?></a>
|
|
</li>
|
|
<?php } ?>
|
|
<li class="breadcrumb-item active"><i class="fas fa-file"></i> <?php echo "$document_name"; ?></li>
|
|
</ol>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-9">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h3><?php echo $document_name; ?></h3>
|
|
<?php echo $document_content; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-3">
|
|
<div class="card bg-light">
|
|
<div class="card-body">
|
|
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#editDocumentModal<?php echo $document_id; ?>"><i class="fas fa-edit"></i> Edit</button>
|
|
<button type="button" class="btn btn-secondary" data-toggle="modal" data-target="#editDocumentModal"><i class="fas fa-copy"></i> Copy</button>
|
|
<button type="button" class="btn btn-secondary" data-toggle="modal" data-target="#shareModal" onclick="populateShareModal(<?php echo "$client_id, 'Document', $document_id"; ?>)"><i class="fas fa-share"></i> Share</button>
|
|
<hr>
|
|
<h6><i class="fas fa-paperclip"></i> Files</h6>
|
|
<h6><i class="fas fa-key"></i> Passwords</h6>
|
|
<h6><i class="fas fa-users"></i> Contacts</h6>
|
|
<h6><i class="fas fa-laptop"></i> Assets</h6>
|
|
<h6><i class="fas fa-cube"></i> Software</h6>
|
|
<h6><i class="fas fa-building"></i> Vendors</h6>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
include("client_document_edit_modal.php");
|
|
include("share_modal.php");
|
|
|
|
?>
|
|
|
|
<?php include("footer.php"); ?>
|