Advertisement
Guest User

Untitled

a guest
Aug 6th, 2010
344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. <?php do_action( 'bp_before_group_header' ) ?>
  2.  
  3. <div id="item-actions">
  4. <?php if ( bp_group_is_visible() ) : ?>
  5.  
  6. <h3><?php _e( 'Group Admins', 'buddypress' ) ?></h3>
  7. <?php bp_group_list_admins() ?>
  8.  
  9. <?php do_action( 'bp_after_group_menu_admins' ) ?>
  10.  
  11. <?php if ( bp_group_has_moderators() ) : ?>
  12. <?php do_action( 'bp_before_group_menu_mods' ) ?>
  13.  
  14. <h3><?php _e( 'Group Mods' , 'buddypress' ) ?></h3>
  15. <?php bp_group_list_mods() ?>
  16.  
  17. <?php do_action( 'bp_after_group_menu_mods' ) ?>
  18. <?php endif; ?>
  19.  
  20. <?php endif; ?>
  21. </div><!-- #item-actions -->
  22.  
  23. <div id="item-header-avatar">
  24. <a href="<?php bp_group_permalink() ?>" title="<?php bp_group_name() ?>">
  25. <?php bp_group_avatar() ?>
  26. </a>
  27. </div><!-- #item-header-avatar -->
  28.  
  29. <div id="item-header-content">
  30. <h2><a href="<?php bp_group_permalink() ?>" title="<?php bp_group_name() ?>"><?php bp_group_name() ?></a></h2>
  31. <span class="highlight"><?php bp_group_type() ?></span> <span class="activity"><?php printf( __( 'active %s ago', 'buddypress' ), bp_get_group_last_active() ) ?></span>
  32.  
  33. <?php do_action( 'bp_before_group_header_meta' ) ?>
  34.  
  35. <div id="item-meta">
  36. <?php bp_group_description() ?>
  37.  
  38. <?php if ( bp_is_group_forum() && is_user_logged_in() && !bp_is_group_forum_topic() ) : ?>
  39. <div class="generic-button group-button">
  40. <a href="#post-new" class=""><?php _e( 'New Topic', 'buddypress' ) ?></a>
  41. </div>
  42. <?php endif; ?>
  43. <br />
  44. <iframe src="http://www.facebook.com/plugins/like.php?href=<?php bp_group_permalink() ?>&amp;layout=standard&amp;show-faces=true&amp;width=450&amp;action=like&amp;font=arial&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:25px"></iframe>
  45. <br />
  46.  
  47. <?php bp_group_join_button() ?>
  48.  
  49. <?php do_action( 'bp_group_header_meta' ) ?>
  50. </div>
  51. </div><!-- #item-header-content -->
  52.  
  53. <?php do_action( 'bp_after_group_header' ) ?>
  54.  
  55. <?php do_action( 'template_notices' ) ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement