forked from openemr/openemr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Portal Updates for Usability study, UI/UX and bug fixes. (openemr#7556)
* Portal Updates for Usability study, UI/UX and bug fixes. - bug prevent version check in ckeditor. * start removing secure chat app. delete support secure chat app classes fix for portal ckeditor version check * - rename Ledger - fix CCDA shows in menu if not enabled - remove direction arrows from history button - reword demographics edit buttons - rename reports - Chang topNav to container instead of fluid * Add hide menu item flag to twig menu builder started adding cards to Dashboard from top menu rework action buttons in patient documents all cards consistent in view size using container-fluid some smaller UX issues solved Removed Accounting top menu and moved items to main menu. Still unsure what menu will look like when finished! * more UX refactors add more cards to dashboard * remove secure chat count in dropdown removing persist cards * change dashboard load order * more refactoring to dashboard cards created selection of available documents by cayegory from patient documents for download add separate flag to use custom report in portal globals reorg globals portal page WIP settings page * remove top level Reports Menu * review comments add globals to turn off insurance and portal upload to documents refactor dashboard naming and order * still trying to balance top menu with dashboard. maybe top needs to go! also selections naming conventions * add a prescription card remove id from secure message message display modify signatures plugin to always display on white background rewrote Help landing page- upload from dashboard. * fix create and reset portal credentials add global flag to toggle the use of email for username create or reset rename change password to generate new * theme change
- Loading branch information
Showing
32 changed files
with
1,724 additions
and
2,023 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,27 +17,27 @@ | |
* along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;. | ||
* | ||
* @package OpenEMR | ||
* @author Cassian LUP <[email protected]> | ||
* @link http://www.open-emr.org | ||
* @author Cassian LUP <[email protected]> | ||
* @link http://www.open-emr.org | ||
* | ||
*/ | ||
|
||
require_once("verify_session.php"); | ||
require_once("verify_session.php"); | ||
|
||
$sql = "SELECT * FROM lists WHERE pid = ? AND type = 'allergy' ORDER BY begdate"; | ||
$sql = "SELECT * FROM lists WHERE pid = ? AND type = 'allergy' ORDER BY begdate"; | ||
|
||
$res = sqlStatement($sql, array($pid)); | ||
$res = sqlStatement($sql, array($pid)); | ||
|
||
if (sqlNumRows($res) > 0) { | ||
?> | ||
<table class="table table-striped"> | ||
<tr class="header"> | ||
<th><?php echo xlt('Title'); ?></th> | ||
<th><?php echo xlt('Reported Date'); ?></th> | ||
<th><?php echo xlt('Start Date'); ?></th> | ||
<th><?php echo xlt('End Date'); ?></th> | ||
<th><?php echo xlt('Referrer'); ?></th> | ||
</tr> | ||
<table class="table table-striped table-sm"> | ||
<tr class="header"> | ||
<th><?php echo xlt('Title'); ?></th> | ||
<th><?php echo xlt('Reported Date'); ?></th> | ||
<th><?php echo xlt('Start Date'); ?></th> | ||
<th><?php echo xlt('End Date'); ?></th> | ||
<th><?php echo xlt('Referrer'); ?></th> | ||
</tr> | ||
<?php | ||
$even = false; | ||
while ($row = sqlFetchArray($res)) { | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
/** | ||
* | ||
* Copyright (C) 2016-2017 Jerry Padgett <[email protected]> | ||
* Copyright (C) 2016-2024 Jerry Padgett <[email protected]> | ||
* Copyright (C) 2011 Cassian LUP <[email protected]> | ||
* | ||
* LICENSE: This program is free software; you can redistribute it and/or | ||
|
@@ -17,38 +17,36 @@ | |
* along with this program. If not, see <http://opensource.org/licenses/gpl-license.php>;. | ||
* | ||
* @package OpenEMR | ||
* @author Cassian LUP <[email protected]> | ||
* @author Jerry Padgett <[email protected]> | ||
* @link http://www.open-emr.org | ||
* @author Cassian LUP <[email protected]> | ||
* @author Jerry Padgett <[email protected]> | ||
* @link http://www.open-emr.org | ||
* | ||
*/ | ||
|
||
require_once("verify_session.php"); | ||
require_once("verify_session.php"); | ||
|
||
$sql = "SELECT * FROM lists WHERE pid = ? AND type = 'medication' ORDER BY begdate"; | ||
|
||
$res = sqlStatement($sql, array($pid)); | ||
$sql = "SELECT * FROM lists WHERE pid = ? AND type = 'medication' ORDER BY begdate"; | ||
$res = sqlStatement($sql, array($pid)); | ||
|
||
if (sqlNumRows($res) > 0) { | ||
?> | ||
<table class="table table-striped"> | ||
<tr> | ||
<table class="table table-striped table-sm"> | ||
<tr> | ||
<th><?php echo xlt('Drug'); ?></th> | ||
<th><?php echo xlt('Start Date'); ?></th> | ||
<th><?php echo xlt('Last Modified'); ?></th> | ||
<th><?php echo xlt('End Date'); ?></th> | ||
<th><?php echo xlt('Referrer'); ?></th> | ||
</tr> | ||
</tr> | ||
<?php | ||
$even = false; | ||
while ($row = sqlFetchArray($res)) { | ||
echo "<tr class='" . text($class ?? '') . "'>"; | ||
echo "<td>" . text($row['title']) . "</td>"; | ||
echo "<td>" . text($row['begdate']) . "</td>"; | ||
echo "<td>" . text($row['modifydate']) . "</td>"; | ||
echo "<td>" . text($row['enddate']) . "</td>"; | ||
echo "<td>" . text($row['referredby']) . "</td>"; | ||
echo "</tr>"; | ||
} | ||
|
||
echo "</table>"; | ||
} else { | ||
echo xlt("No Results"); | ||
|
Oops, something went wrong.