Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <?php
  2. }
  3. echo '<ul>';
  4.  
  5. if ( $notifications ) { ?>
  6. <?php $counter = 0 ; ?>
  7. <?php for ( $i = 0; $i < count($notifications); $i++ ) { ?>
  8. <?php $alt = ( 0 == $counter % 2 ) ? ' class="alt"' : ''; ?>
  9. <li<?php echo $alt ?>><?php echo $notifications[$i] ?></li>
  10. <?php $counter++; ?>
  11. <?php } ?>
  12. <?php } else { ?>
  13. <li style="margin-top:5px;padding:10px;"><a href="<?php echo $bp->loggedin_user->domain ?>"><?php _e( 'No new notifications.', 'buddypress' ); ?></a></li>
  14. <?php
  15. }
  16. echo '</ul>';
  17. endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement