- Timestamp:
- 09/27/2015 06:04:27 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/activity/index.php
r9896 r10150 1 1 <?php 2 /** 3 * BuddyPress Activity templates 4 * 5 * @since 2.3.0 6 * @package BuddyPress 7 * @subpackage BuddyPressActivity 8 */ 2 9 3 10 /** 4 11 * Fires before the activity directory listing. 5 12 * 6 * @since BuddyPress (1.5.0)13 * @since 1.5.0 7 14 */ 8 15 do_action( 'bp_before_directory_activity' ); ?> … … 15 22 * Fires before the activity directory display content. 16 23 * 17 * @since BuddyPress (1.2.0)24 * @since 1.2.0 18 25 */ 19 26 do_action( 'bp_before_directory_activity_content' ); ?> … … 30 37 * Fires towards the top of template pages for notice display. 31 38 * 32 * @since BuddyPress (1.0.0)39 * @since 1.0.0 33 40 */ 34 41 do_action( 'template_notices' ); ?> … … 41 48 * Fires before the listing of activity type tabs. 42 49 * 43 * @since BuddyPress (1.2.0)50 * @since 1.2.0 44 51 */ 45 52 do_action( 'bp_before_activity_type_tab_all' ); ?> … … 54 61 * Fires before the listing of friends activity type tab. 55 62 * 56 * @since BuddyPress (1.2.0)63 * @since 1.2.0 57 64 */ 58 65 do_action( 'bp_before_activity_type_tab_friends' ); ?> … … 73 80 * Fires before the listing of groups activity type tab. 74 81 * 75 * @since BuddyPress (1.2.0)82 * @since 1.2.0 76 83 */ 77 84 do_action( 'bp_before_activity_type_tab_groups' ); ?> … … 92 99 * Fires before the listing of favorites activity type tab. 93 100 * 94 * @since BuddyPress (1.2.0)101 * @since 1.2.0 95 102 */ 96 103 do_action( 'bp_before_activity_type_tab_favorites' ); ?> … … 109 116 * Fires before the listing of mentions activity type tab. 110 117 * 111 * @since BuddyPress (1.2.0)118 * @since 1.2.0 112 119 */ 113 120 do_action( 'bp_before_activity_type_tab_mentions' ); ?> … … 124 131 * Fires after the listing of activity type tabs. 125 132 * 126 * @since BuddyPress (1.2.0)133 * @since 1.2.0 127 134 */ 128 135 do_action( 'bp_activity_type_tabs' ); ?> … … 139 146 * Fires before the display of the activity syndication options. 140 147 * 141 * @since BuddyPress (1.2.0)148 * @since 1.2.0 142 149 */ 143 150 do_action( 'bp_activity_syndication_options' ); ?> … … 155 162 * Fires inside the select input for activity filter by options. 156 163 * 157 * @since BuddyPress (1.2.0)164 * @since 1.2.0 158 165 */ 159 166 do_action( 'bp_activity_filter_options' ); ?> … … 169 176 * Fires before the display of the activity list. 170 177 * 171 * @since BuddyPress (1.5.0)178 * @since 1.5.0 172 179 */ 173 180 do_action( 'bp_before_directory_activity_list' ); ?> … … 184 191 * Fires after the display of the activity list. 185 192 * 186 * @since BuddyPress (1.5.0)193 * @since 1.5.0 187 194 */ 188 195 do_action( 'bp_after_directory_activity_list' ); ?> … … 200 207 * Fires after the activity directory display content. 201 208 * 202 * @since BuddyPress (1.2.0)209 * @since 1.2.0 203 210 */ 204 211 do_action( 'bp_after_directory_activity_content' ); ?> … … 209 216 * Fires after the activity directory listing. 210 217 * 211 * @since BuddyPress (1.5.0)218 * @since 1.5.0 212 219 */ 213 220 do_action( 'bp_after_directory_activity' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.