document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php if ( !is_user_logged_in() ) : ?>
  2. <h3><?php _e( 'Site Activity', 'buddypress' ) ?></h3>
  3. <?php endif; ?>
  4.  
  5. <?php do_action( 'bp_before_directory_activity_content' ) ?>
  6.  
  7. <?php if ( is_user_logged_in() ) : ?>
  8. <?php locate_template( array( 'activity/post-form.php'), true ) ?>
  9. <?php endif; ?>
  10.  
  11. <?php do_action( 'template_notices' ) ?>
  12.  
  13. <div class="item-list-tabs no-ajax" id="subnav">
  14. <ul>
  15. <li class="feed"><a href="<?php bp_sitewide_activity_feed_link() ?>" title="RSS Feed"><?php _e( 'RSS', 'buddypress' ) ?></a></li>
  16.  
  17. <?php do_action( 'bp_activity_syndication_options' ) ?>
  18.  
  19. <li id="activity-filter-select" class="last">
  20. <select>
  21. <option value="-1"><?php _e( 'No Filter', 'buddypress' ) ?></option>
  22. <option value="activity_update"><?php _e( 'Show Updates', 'buddypress' ) ?></option>
  23. <option value="new_blog_post"><?php _e( 'Show Blog Posts', 'buddypress' ) ?></option>
  24. <option value="new_blog_comment"><?php _e( 'Show Blog Comments', 'buddypress' ) ?></option>
  25.  
  26. <?php if ( bp_is_active( 'forums' ) ) : ?>
  27. <option value="new_forum_topic"><?php _e( 'Show New Forum Topics', 'buddypress' ) ?></option>
  28. <option value="new_forum_post"><?php _e( 'Show Forum Replies', 'buddypress' ) ?></option>
  29. <?php endif; ?>
  30.  
  31. <?php if ( bp_is_active( 'groups' ) ) : ?>
  32. <option value="created_group"><?php _e( 'Show New Groups', 'buddypress' ) ?></option>
  33. <option value="joined_group"><?php _e( 'Show New Group Memberships', 'buddypress' ) ?></option>
  34. <?php endif; ?>
  35.  
  36. <?php if ( bp_is_active( 'friends' ) ) : ?>
  37. <option value="friendship_accepted,friendship_created"><?php _e( 'Show Friendship Connections', 'buddypress' ) ?></option>
  38. <?php endif; ?>
  39.  
  40. <option value="new_member"><?php _e( 'Show New Members', 'buddypress' ) ?></option>
  41.  
  42. <?php do_action( 'bp_activity_filter_options' ) ?>
  43. </select>
  44. </li>
  45. </ul>
  46. </div><!-- .item-list-tabs -->
  47.  
  48. <div class="activity">
  49. <?php locate_template( array( 'activity/activity-loop.php' ), true ) ?>
  50. </div><!-- .activity -->
');