demographics_dashboard_part_2 (#1903)
[openemr.git] / library / display_help_icon_inc.php
blobdb383dd06acae0ee86e5f86f0a59f096f38ea8ae
1 <?php
2 /**
3 * Help Icon
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
11 if ($_SESSION ['language_direction'] == 'ltr') {
12 $help_icon_title = "To enable help - Go to the User Name on top right > Settings > Features > Enable Help Modal";
13 } elseif ($_SESSION ['language_direction'] == 'rtl') {
14 $help_icon_title = "To enable help - Go to the User Name on top left > Settings > Features > Enable Help Modal";
17 if ($GLOBALS['enable_help'] == 1) {
18 $help_icon = '<a class="oe-pull-away oe-help-redirect" data-target="#myModal" data-toggle="modal" href="#" id="help-href" name="help-href" style="color:#676666" title="' . xla("Click to view Help") . '"><i class="fa fa-question-circle" aria-hidden="true"></i></a>';
19 } elseif ($GLOBALS['enable_help'] == 2) {
20 $help_icon = '<a class="oe-pull-away oe-help-redirect" data-target="#myModal" data-toggle="modal" href="#" id="help-href" name="help-href" style="color:#DCD6D0 !Important" title="' . xla($help_icon_title) . '"><i class="fa fa-question-circle" aria-hidden="true"></i></a>';
21 } elseif ($GLOBALS['enable_help'] == 0) {
22 $help_icon = '';