Fixing critical issues with Fees > Batch Payments (#2656)
[openemr.git] / Documentation / help_files / history_dashboard_help.php
blob893a9111c122296c4415be6c7e8c289f990a2a03
1 <?php
2 /**
3 * History Dashboard Help.
5 * @package OpenEMR
6 * @link http://www.open-emr.org
7 * @author Ranganath Pathak <pathak@scrs1.org>
8 * @copyright Copyright (c) 2018 Ranganath Pathak <pathak@scrs1.org>
9 * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
12 use OpenEMR\Core\Header;
14 require_once("../../interface/globals.php");
16 <!DOCTYPE HTML>
17 <html>
18 <head>
19 <?php Header::setupHeader();?>
20 <title><?php echo xlt("History and Lifestyle Help");?></title>
21 </head>
22 <body>
23 <div class="container oe-help-container">
24 <div>
25 <center><h2><a name='entire_doc'><?php echo xlt("History and Lifestyle Help");?></a></h2></center>
26 </div>
27 <div class= "row">
28 <div class="col-sm-12">
29 <p><?php echo xlt("A place to document and display the patient's past medical history, family history, personal history");?>.
31 <p><?php echo xlt("It has four tabs");?>:
32 <ul>
33 <li><?php echo xlt("General"); ?></li>
34 <li><?php echo xlt("Family History"); ?></li>
35 <li><?php echo xlt("Relatives"); ?></li>
36 <li><?php echo xlt("Lifestyle"); ?></li>
37 <li><?php echo xlt("Other"); ?></li>
38 </ul>
39 <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");?>.
41 <p><?php echo xlt("Family history - Documents the patient's family history, an ICD10 diagnosis can be linked to the medical conditions");?>.
43 <p><?php echo xlt("Relatives - lists the patient relatives having various medical conditions like Cancer, Diabetes, Hypertension etc");?>.
45 <p><?php echo xlt("Lifestyle - lists the patient's use of Tobacco, Coffee, Alcohol, Recreational Drugs etc");?>.
47 <p><?php echo xlt("Other - lists items not covered in the above sections");?>.
49 <p><?php echo xlt("Users with appropriate privileges can edit these items by clicking on the Edit button");?>.
50 <button type="button" class="btn btn-default btn-edit btn-sm oe-no-float"><?php echo xlt("Edit"); ?></button>
52 <p><?php echo xlt("The default form can be customized by editing it in Administration > Layouts");?>.
54 <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>
56 <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 ");?>.
58 <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 text-primary" aria-hidden="true" data-original-title="" title=""></i></a>&nbsp;
59 <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 text-primary" aria-hidden="true" data-original-title="" title=""></i></a>
60 </div>
61 </div>
63 </div>
65 </div><!--end of container div-->
66 <script>
67 $('#show_hide').click(function() {
68 var elementTitle = $('#show_hide').prop('title');
69 var hideTitle = '<?php echo xla('Click to Hide'); ?>';
70 var showTitle = '<?php echo xla('Click to Show'); ?>';
71 $('.hideaway').toggle('1000');
72 $(this).toggleClass('fa-eye-slash fa-eye');
73 if (elementTitle == hideTitle) {
74 elementTitle = showTitle;
75 } else if (elementTitle == showTitle) {
76 elementTitle = hideTitle;
78 $('#show_hide').prop('title', elementTitle);
79 });
80 </script>
81 </body>
82 </html>