Openemr fhir single patient api #5122 (#5129)
[openemr.git] / Documentation / help_files / history_dashboard_help.php
blobb7dcb4fac72d010e56d99a9e89a8e7c2e55ffff1
1 <?php
3 /**
4 * History Dashboard Help.
6 * @package OpenEMR
7 * @link http://www.open-emr.org
8 * @author Ranganath Pathak <pathak@scrs1.org>
9 * @copyright Copyright (c) 2018 Ranganath Pathak <pathak@scrs1.org>
10 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
13 use OpenEMR\Core\Header;
15 require_once("../../interface/globals.php");
17 <!DOCTYPE html>
18 <html>
19 <head>
20 <?php Header::setupHeader();?>
21 <title><?php echo xlt("History and Lifestyle Help");?></title>
22 </head>
23 <body>
24 <div class="container oe-help-container">
25 <div>
26 <h2 class="text-center"><a name='entire_doc'><?php echo xlt("History and Lifestyle Help");?></a></h2>
27 </div>
28 <div class= "row">
29 <div class="col-sm-12">
30 <p><?php echo xlt("A place to document and display the patient's past medical history, family history, personal history");?>.</p>
32 <p><?php echo xlt("It has four tabs");?>:</p>
33 <ul>
34 <li><?php echo xlt("General"); ?></li>
35 <li><?php echo xlt("Family History"); ?></li>
36 <li><?php echo xlt("Relatives"); ?></li>
37 <li><?php echo xlt("Lifestyle"); ?></li>
38 <li><?php echo xlt("Other"); ?></li>
39 </ul>
40 <p><?php echo xlt("General Tab - lists the risk factors / past medical conditions on the left and the Results of various clinical exams, procedures and tests on the right");?>.</p>
42 <p><?php echo xlt("Family history - Documents the patient's family history, an ICD10 diagnosis can be linked to the medical conditions");?>.</p>
44 <p><?php echo xlt("Relatives - lists the patient relatives having various medical conditions like Cancer, Diabetes, Hypertension etc");?>.</p>
46 <p><?php echo xlt("Lifestyle - lists the patient's use of Tobacco, Coffee, Alcohol, Recreational Drugs etc");?>.</p>
48 <p><?php echo xlt("Other - lists items not covered in the above sections");?>.</p>
50 <p><?php echo xlt("Users with appropriate privileges can edit these items by clicking on the Edit button");?>.
51 <button type="button" class="btn btn-secondary btn-edit btn-sm oe-no-float"><?php echo xlt("Edit"); ?></button>
52 </p>
54 <p><?php echo xlt("The default form can be customized by editing it in Administration > Layouts");?>.</p>
56 <p><i class="fa fa-exclamation-triangle oe-text-red" aria-hidden="true"></i> <strong><?php echo xlt("You will need Administrator privileges to edit this form");?>.</strong></p>
58 <p><?php echo xlt("There are 3 forms in the Core category - Demographics, Facility Specific User Information and History and all 5 forms in Transactions that can be edited ");?>.</p>
60 <p><?php echo xlt("More information on how to edit this form and other such forms can be found here");?>. &nbsp; <a href="https://www.open-emr.org/wiki/index.php/LBV_Forms" rel="noopener" target="_blank"><i class="fa fa-external-link-alt text-primary" aria-hidden="true" data-original-title="" title=""></i></a>&nbsp;
61 <a href="https://www.open-emr.org/wiki/index.php/Sample_Layout_Based_Visit_Form" rel="noopener" target="_blank"><i class="fa fa-external-link-alt text-primary" aria-hidden="true" data-original-title="" title=""></i></a>
62 </p>
63 </div>
64 </div>
66 </div>
68 </div><!--end of container div-->
69 <script>
70 $('#show_hide').click(function() {
71 var elementTitle = $('#show_hide').prop('title');
72 var hideTitle = '<?php echo xla('Click to Hide'); ?>';
73 var showTitle = '<?php echo xla('Click to Show'); ?>';
74 $('.hideaway').toggle('1000');
75 $(this).toggleClass('fa-eye-slash fa-eye');
76 if (elementTitle == hideTitle) {
77 elementTitle = showTitle;
78 } else if (elementTitle == showTitle) {
79 elementTitle = hideTitle;
81 $('#show_hide').prop('title', elementTitle);
82 });
83 </script>
84 </body>
85 </html>