Changeset 9812
- Timestamp:
- 04/28/2015 01:03:58 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/plugins.php
r9604 r9812 1 <?php do_action( 'bp_before_group_plugin_template' ); ?>1 <?php 2 2 3 <?php do_action( 'bp_template_content' ); ?> 3 /** 4 * Fires before the display of content for plugins using the BP_Group_Extension. 5 * 6 * @since BuddyPress (1.2.0) 7 */ 8 do_action( 'bp_before_group_plugin_template' ); ?> 4 9 5 <?php do_action( 'bp_after_group_plugin_template' ); 10 <?php 11 12 /** 13 * Fires and displays content for plugins using the BP_Group_Extension. 14 * 15 * @since BuddyPress (1.0.0) 16 */ 17 do_action( 'bp_template_content' ); ?> 18 19 <?php 20 21 /** 22 * Fires after the display of content for plugins using the BP_Group_Extension. 23 * 24 * @since BuddyPress (1.2.0) 25 */ 26 do_action( 'bp_after_group_plugin_template' );
Note: See TracChangeset
for help on using the changeset viewer.