Skip to content

Commit

Permalink
More Hathor massaging
Browse files Browse the repository at this point in the history
  • Loading branch information
roland-d committed Jul 4, 2017
1 parent 7bb7af1 commit 2dd79fc
Showing 1 changed file with 7 additions and 8 deletions.
Expand Up @@ -140,15 +140,14 @@

<?php echo $this->pagination->getListFooter(); ?>
<p class="footer-tip">
<?php if ($this->enabled) : ?>
<?php if ($this->enabled && $this->collect_urls_enabled) : ?>
<span class="enabled"><?php echo JText::_('COM_REDIRECT_PLUGIN_ENABLED'); ?></span>
<?php if ($this->collect_urls_enabled) : ?>
<span class="enabled"><?php echo JText::_('COM_REDIRECT_COLLECT_URLS_ENABLED'); ?></span>
<?php else : ?>
<span class="enabled"><?php echo JText::sprintf('COM_REDIRECT_COLLECT_URLS_DISABLED', 'index.php?option=com_plugins&task=plugin.edit&extension_id=' . RedirectHelper::getRedirectPluginId()); ?></span>
<?php endif; ?>
<?php else : ?>
<span class="disabled"><?php echo JText::_('COM_REDIRECT_PLUGIN_DISABLED'); ?></span>
<span class="enabled"><?php echo JText::sprintf('COM_REDIRECT_COLLECT_URLS_ENABLED', JText::_('COM_REDIRECT_PLUGIN_ENABLED')); ?></span>
<?php elseif ($this->enabled && !$this->collect_urls_enabled) : ?>
<span class="enabled"><?php echo JText::_('COM_REDIRECT_PLUGIN_ENABLED'); ?></span>
<span class="enabled"><?php echo JText::sprintf('COM_REDIRECT_COLLECT_URLS_DISABLED', 'index.php?option=com_plugins&task=plugin.edit&extension_id=' . RedirectHelper::getRedirectPluginId()); ?></span>
<?php elseif (!$this->enabled) : ?>
<span class="disabled"><?php echo JText::sprintf('COM_REDIRECT_PLUGIN_DISABLED', 'index.php?option=com_plugins&task=plugin.edit&extension_id=' . RedirectHelper::getRedirectPluginId()); ?></span>
<?php endif; ?>
</p>
<div class="clr"></div>
Expand Down

0 comments on commit 2dd79fc

Please sign in to comment.