3 * History Dashboard Help.
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");
19 <?php Header
::setupHeader();?
>
20 <title
><?php
echo xlt("History and Lifestyle Help");?
></title
>
23 <div
class="container oe-help-container">
25 <center
><h2
><a name
='entire_doc'><?php
echo xlt("History and Lifestyle Help");?
></a
></h2
></center
>
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");?
>:
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
>
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 Cance, 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");?
>.  
; <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
> 
;
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
>
65 </div
><!--end of container div
-->
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
);