Skip to content

Commit

Permalink
Changes required for accessibility page
Browse files Browse the repository at this point in the history
  • Loading branch information
scottcwilson committed Mar 4, 2024
1 parent 5605d08 commit 1882c9e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions includes/modules/sideboxes/bootstrap/information.php
Expand Up @@ -60,6 +60,9 @@
if (DEFINE_CONDITIONS_STATUS <= 1) {
$information[] = '<a class="' . $information_classes . '" href="' . zen_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a>';
}
if (defined('FILENAME_ACCESSIBILITY') && (!isset($flag_show_accessibility_sidebox_link) || $flag_show_accessibility_sidebox_link == 0)) {
$information[] = '<a class="' . $information_classes . '" href="' . zen_href_link(FILENAME_ACCESSIBILITY) . '">' . BOX_INFORMATION_ACCESSIBILITY . '</a>';
}
if (DEFINE_CONTACT_US_STATUS <= 1) {
$information[] = '<a class="' . $information_classes . '" href="' . zen_href_link(FILENAME_CONTACT_US, '', 'SSL') . '">' . BOX_INFORMATION_CONTACT . '</a>';
}
Expand Down
Expand Up @@ -77,6 +77,11 @@
<li class="list-group-item"><?php echo '<a href="' . zen_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a>'; ?></li>
<?php
}
if (defined('FILENAME_ACCESSIBILITY') && (!isset($flag_show_accessibility_sidebox_link) || $flag_show_accessibility_sidebox_link == 0)) {
?>
<li class="list-group-item"><?php echo '<a href="' . zen_href_link(FILENAME_ACCESSIBILITY) . '">' . BOX_INFORMATION_ACCESSIBILITY . '</a>'; ?></li>
<?php
}
if (DEFINE_CONTACT_US_STATUS <= '1') {
?>
<li class="list-group-item"><?php echo '<a href="' . zen_href_link(FILENAME_CONTACT_US, '', 'SSL') . '">' . BOX_INFORMATION_CONTACT . '</a>'; ?></li>
Expand Down

0 comments on commit 1882c9e

Please sign in to comment.