Guest User

Untitled

a guest
Jul 18th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <?php if ($this->config->get('friends.enabled')) { ?>
  2. <li class="<?php echo $highlight == 'friends' ? 'is-active' : '';?>">
  3. <a href="<?php echo ESR::friends();?>"><?php echo JText::_('COM_ES_MY_FRIENDS'); ?>
  4. </a>
  5. </li>
  6. <?php } ?>
  7. <?php if ($this->config->get('followers.enabled')) { ?>
  8. <li class="<?php echo $highlight == 'followers' ? 'is-active' : '';?>">
  9. <a href="<?php echo ESR::followers();?>"><?php echo JText::_('COM_ES_MY_FOLLOWERS'); ?>
  10. </a>
  11. </li>
  12. <?php } ?>
Add Comment
Please, Sign In to add comment