-
-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ability to choose whether document is visible in client portal
- Loading branch information
wrongecho
committed
Sep 7, 2024
1 parent
c20f994
commit 40c4002
Showing
5 changed files
with
87 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<div class="modal" id="editDocumentClientVisibileModal" tabindex="-1"> | ||
<div class="modal-dialog"> | ||
<div class="modal-content bg-dark"> | ||
<div class="modal-header"> | ||
<h5 class="modal-title"> | ||
<i class="fa fa-fw fa-handshake mr-2"></i> | ||
Edit Visibility Status for <strong><?php echo "$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"> | ||
<div class="modal-body bg-white"> | ||
<input type="hidden" name="document_id" value="<?php echo $document_id; ?>"> | ||
<div class="form-group"> | ||
<label>Visibility</label> | ||
<p>Should this document be visible in the portal to client contacts with the 'Technical' role?</p> | ||
<div class="input-group"> | ||
<div class="input-group-prepend"> | ||
<span class="input-group-text"><i class="fa fa-fw fa-eye"></i></span> | ||
</div> | ||
<select class="form-control" name="document_visible"> | ||
<option <?php if ($document_client_visible == 1) { echo "selected"; } ?> value="1">Yes</option> | ||
<option <?php if ($document_client_visible == 0) { echo "selected"; } ?> value="0">No</option> | ||
</select> | ||
</div> | ||
|
||
</div> | ||
|
||
</div> | ||
|
||
<div class="modal-footer bg-white"> | ||
<button type="submit" name="edit_document_visible" class="btn btn-primary text-bold"><i class="fa fa-check mr-2"></i>Save</button> | ||
<button type="button" class="btn btn-light" data-dismiss="modal"><i class="fa fa-times mr-2"></i>Cancel</button> | ||
</div> | ||
|
||
</form> | ||
|
||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters