Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@
<?php // Published Site languages ?>
<?php if ($status->element) : ?>
<td class="text-center">
<span class="fas fa-check" aria-hidden="true"></span>
<span class="text-success fas fa-check" aria-hidden="true"></span>
<span class="sr-only"><?php echo Text::_('JYES'); ?></span>
</td>
<?php else : ?>
Expand All @@ -232,10 +232,10 @@
<?php // Published Content languages ?>
<td class="text-center">
<?php if ($status->lang_code && $status->published == 1) : ?>
<span class="fas fa-check" aria-hidden="true"></span>
<span class="text-success fas fa-check" aria-hidden="true"></span>
<span class="sr-only"><?php echo Text::_('JYES'); ?></span>
<?php elseif ($status->lang_code && $status->published == 0) : ?>
<span class="fas fa-times" aria-hidden="true"></span>
<span class="text-danger fas fa-times" aria-hidden="true"></span>
<span class="sr-only"><?php echo Text::_('WARNING'); ?></span>
<?php elseif ($status->lang_code && $status->published == -2) : ?>
<span class="fas fa-trash" aria-hidden="true"></span>
Expand All @@ -248,10 +248,10 @@
<?php // Published Home pages ?>
<td class="text-center">
<?php if ($status->home_published == 1) : ?>
<span class="fas fa-check" aria-hidden="true"></span>
<span class="text-success fas fa-check" aria-hidden="true"></span>
<span class="sr-only"><?php echo Text::_('JYES'); ?></span>
<?php elseif ($status->home_published == 0) : ?>
<span class="fas fa-times" aria-hidden="true"></span>
<span class="text-danger fas fa-times" aria-hidden="true"></span>
<span class="sr-only"><?php echo Text::_('JNO'); ?></span>
<?php elseif ($status->home_published == -2) : ?>
<span class="fas fa-trash" aria-hidden="true"></span>
Expand All @@ -275,10 +275,10 @@
</td>
<td class="text-center">
<?php if ($contentlang->published == 1) : ?>
<span class="fas fa-check" aria-hidden="true"></span>
<span class="text-success fas fa-check" aria-hidden="true"></span>
<span class="sr-only"><?php echo Text::_('JYES'); ?></span>
<?php elseif ($contentlang->published == 0 && array_key_exists($contentlang->lang_code, $this->homepages)) : ?>
<span class="fas fa-times" aria-hidden="true"></span>
<span class="text-danger fas fa-times" aria-hidden="true"></span>
<span class="sr-only"><?php echo Text::_('JNO'); ?></span>
<?php elseif ($contentlang->published == -2 && array_key_exists($contentlang->lang_code, $this->homepages)) : ?>
<span class="fas fa-trash" aria-hidden="true"></span>
Expand All @@ -290,7 +290,7 @@
<span class="fas fa-exclamation-triangle" aria-hidden="true"></span>
<span class="sr-only"><?php echo Text::_('WARNING'); ?></span>
<?php else : ?>
<span class="fas fa-check" aria-hidden="true"></span>
<span class="text-success fas fa-check" aria-hidden="true"></span>
<span class="sr-only"><?php echo Text::_('JYES'); ?></span>
<?php endif; ?>
</td>
Expand All @@ -305,15 +305,15 @@
<?php echo $sitelang; ?>
</th>
<td class="text-center">
<span class="fas fa-check" aria-hidden="true"></span>
<span class="text-success fas fa-check" aria-hidden="true"></span>
<span class="sr-only"><?php echo Text::_('JYES'); ?></span>
</td>
<td class="text-center">
<span class="fas fa-exclamation-triangle" aria-hidden="true"></span>
<span class="sr-only"><?php echo Text::_('WARNING'); ?></span>
</td>
<td class="text-center">
<span class="fas fa-check" aria-hidden="true"></span>
<span class="text-success fas fa-check" aria-hidden="true"></span>
<span class="sr-only"><?php echo Text::_('JYES'); ?></span>
</td>
</tr>
Expand Down