- Timestamp:
- 04/23/2015 05:08:50 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/groups/index.php
r9604 r9786 1 <?php do_action( 'bp_before_directory_groups_page' ); ?> 1 <?php 2 3 /** 4 * Fires at the top of the groups directory template file. 5 * 6 * @since BuddyPress (1.5.0) 7 */ 8 do_action( 'bp_before_directory_groups_page' ); ?> 2 9 3 10 <div id="buddypress"> 4 11 5 <?php do_action( 'bp_before_directory_groups' ); ?>12 <?php 6 13 7 <?php do_action( 'bp_before_directory_groups_content' ); ?> 14 /** 15 * Fires before the display of the groups. 16 * 17 * @since BuddyPress (1.1.0) 18 */ 19 do_action( 'bp_before_directory_groups' ); ?> 20 21 <?php 22 23 /** 24 * Fires before the display of the groups content. 25 * 26 * @since BuddyPress (1.1.0) 27 */ 28 do_action( 'bp_before_directory_groups_content' ); ?> 8 29 9 30 <div id="group-dir-search" class="dir-search" role="search"> … … 23 44 <?php endif; ?> 24 45 25 <?php do_action( 'bp_groups_directory_group_filter' ); ?> 46 <?php 47 48 /** 49 * Fires inside the groups directory group filter input. 50 * 51 * @since BuddyPress (1.5.0) 52 */ 53 do_action( 'bp_groups_directory_group_filter' ); ?> 26 54 27 55 </ul> … … 30 58 <div class="item-list-tabs" id="subnav" role="navigation"> 31 59 <ul> 32 <?php do_action( 'bp_groups_directory_group_types' ); ?> 60 <?php 61 62 /** 63 * Fires inside the groups directory group types. 64 * 65 * @since BuddyPress (1.2.0) 66 */ 67 do_action( 'bp_groups_directory_group_types' ); ?> 33 68 34 69 <li id="groups-order-select" class="last filter"> … … 42 77 <option value="alphabetical"><?php _e( 'Alphabetical', 'buddypress' ); ?></option> 43 78 44 <?php do_action( 'bp_groups_directory_order_options' ); ?> 79 <?php 80 81 /** 82 * Fires inside the groups directory group order options. 83 * 84 * @since BuddyPress (1.2.0) 85 */ 86 do_action( 'bp_groups_directory_order_options' ); ?> 45 87 </select> 46 88 </li> … … 52 94 </div><!-- #groups-dir-list --> 53 95 54 <?php do_action( 'bp_directory_groups_content' ); ?> 96 <?php 97 98 /** 99 * Fires and displays the group content. 100 * 101 * @since BuddyPress (1.1.0) 102 */ 103 do_action( 'bp_directory_groups_content' ); ?> 55 104 56 105 <?php wp_nonce_field( 'directory_groups', '_wpnonce-groups-filter' ); ?> 57 106 58 <?php do_action( 'bp_after_directory_groups_content' ); ?> 107 <?php 108 109 /** 110 * Fires after the display of the groups content. 111 * 112 * @since BuddyPress (1.1.0) 113 */ 114 do_action( 'bp_after_directory_groups_content' ); ?> 59 115 60 116 </form><!-- #groups-directory-form --> 61 117 62 <?php do_action( 'bp_after_directory_groups' ); ?> 118 <?php 119 120 /** 121 * Fires after the display of the groups. 122 * 123 * @since BuddyPress (1.1.0) 124 */ 125 do_action( 'bp_after_directory_groups' ); ?> 63 126 64 127 </div><!-- #buddypress --> 65 128 66 <?php do_action( 'bp_after_directory_groups_page' ); ?> 129 <?php 130 131 /** 132 * Fires at the bottom of the groups directory template file. 133 * 134 * @since BuddyPress (1.5.0) 135 */ 136 do_action( 'bp_after_directory_groups_page' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.