Changeset 9814
- Timestamp:
- 04/28/2015 01:52:18 AM (10 years ago)
- Location:
- trunk/src/bp-templates/bp-legacy/buddypress/members
- Files:
-
- 29 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/members/activate.php
r9604 r9814 1 1 <div id="buddypress"> 2 2 3 <?php do_action( 'bp_before_activation_page' ); ?> 3 <?php 4 5 /** 6 * Fires before the display of the member activation page. 7 * 8 * @since BuddyPress (1.1.0) 9 */ 10 do_action( 'bp_before_activation_page' ); ?> 4 11 5 12 <div class="page" id="activate-page"> 6 13 7 <?php do_action( 'template_notices' ); ?>14 <?php 8 15 9 <?php do_action( 'bp_before_activate_content' ); ?> 16 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 17 do_action( 'template_notices' ); ?> 18 19 <?php 20 21 /** 22 * Fires before the display of the member activation page content. 23 * 24 * @since BuddyPress (1.1.0) 25 */ 26 do_action( 'bp_before_activate_content' ); ?> 10 27 11 28 <?php if ( bp_account_was_activated() ) : ?> … … 34 51 <?php endif; ?> 35 52 36 <?php do_action( 'bp_after_activate_content' ); ?> 53 <?php 54 55 /** 56 * Fires after the display of the member activation page content. 57 * 58 * @since BuddyPress (1.1.0) 59 */ 60 do_action( 'bp_after_activate_content' ); ?> 37 61 38 62 </div><!-- .page --> 39 63 40 <?php do_action( 'bp_after_activation_page' ); ?> 64 <?php 65 66 /** 67 * Fires after the display of the member activation page. 68 * 69 * @since BuddyPress (1.1.0) 70 */ 71 do_action( 'bp_after_activation_page' ); ?> 41 72 42 73 </div><!-- #buddypress --> -
trunk/src/bp-templates/bp-legacy/buddypress/members/index.php
r9604 r9814 1 <?php do_action( 'bp_before_directory_members_page' ); ?> 1 <?php 2 3 /** 4 * Fires at the top of the members directory template file. 5 * 6 * @since BuddyPress (1.5.0) 7 */ 8 do_action( 'bp_before_directory_members_page' ); ?> 2 9 3 10 <div id="buddypress"> 4 11 5 <?php do_action( 'bp_before_directory_members' ); ?>12 <?php 6 13 7 <?php do_action( 'bp_before_directory_members_content' ); ?> 14 /** 15 * Fires before the display of the members. 16 * 17 * @since BuddyPress (1.1.0) 18 */ 19 do_action( 'bp_before_directory_members' ); ?> 20 21 <?php 22 23 /** 24 * Fires before the display of the members content. 25 * 26 * @since BuddyPress (1.1.0) 27 */ 28 do_action( 'bp_before_directory_members_content' ); ?> 8 29 9 30 <div id="members-dir-search" class="dir-search" role="search"> … … 11 32 </div><!-- #members-dir-search --> 12 33 13 <?php do_action( 'bp_before_directory_members_tabs' ); ?> 34 <?php 35 36 /** 37 * Fires before the display of the members list tabs. 38 * 39 * @since BuddyPress (1.8.0) 40 */ 41 do_action( 'bp_before_directory_members_tabs' ); ?> 14 42 15 43 <form action="" method="post" id="members-directory-form" class="dir-form"> … … 23 51 <?php endif; ?> 24 52 25 <?php do_action( 'bp_members_directory_member_types' ); ?> 53 <?php 54 55 /** 56 * Fires inside the members directory member types. 57 * 58 * @since BuddyPress (1.2.0) 59 */ 60 do_action( 'bp_members_directory_member_types' ); ?> 26 61 27 62 </ul> … … 30 65 <div class="item-list-tabs" id="subnav" role="navigation"> 31 66 <ul> 32 <?php do_action( 'bp_members_directory_member_sub_types' ); ?> 67 <?php 68 69 /** 70 * Fires inside the members directory member sub-types. 71 * 72 * @since BuddyPress (1.5.0) 73 */ 74 do_action( 'bp_members_directory_member_sub_types' ); ?> 33 75 34 76 <li id="members-order-select" class="last filter"> … … 42 84 <?php endif; ?> 43 85 44 <?php do_action( 'bp_members_directory_order_options' ); ?> 86 <?php 87 88 /** 89 * Fires inside the members directory member order options. 90 * 91 * @since BuddyPress (1.2.0) 92 */ 93 do_action( 'bp_members_directory_order_options' ); ?> 45 94 </select> 46 95 </li> … … 52 101 </div><!-- #members-dir-list --> 53 102 54 <?php do_action( 'bp_directory_members_content' ); ?> 103 <?php 104 105 /** 106 * Fires and displays the members content. 107 * 108 * @since BuddyPress (1.1.0) 109 */ 110 do_action( 'bp_directory_members_content' ); ?> 55 111 56 112 <?php wp_nonce_field( 'directory_members', '_wpnonce-member-filter' ); ?> 57 113 58 <?php do_action( 'bp_after_directory_members_content' ); ?> 114 <?php 115 116 /** 117 * Fires after the display of the members content. 118 * 119 * @since BuddyPress (1.1.0) 120 */ 121 do_action( 'bp_after_directory_members_content' ); ?> 59 122 60 123 </form><!-- #members-directory-form --> 61 124 62 <?php do_action( 'bp_after_directory_members' ); ?> 125 <?php 126 127 /** 128 * Fires after the display of the members. 129 * 130 * @since BuddyPress (1.1.0) 131 */ 132 do_action( 'bp_after_directory_members' ); ?> 63 133 64 134 </div><!-- #buddypress --> 65 135 66 <?php do_action( 'bp_after_directory_members_page' ); ?> 136 <?php 137 138 /** 139 * Fires at the bottom of the members directory template file. 140 * 141 * @since BuddyPress (1.5.0) 142 */ 143 do_action( 'bp_after_directory_members_page' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/members-loop.php
r9723 r9814 12 12 ?> 13 13 14 <?php do_action( 'bp_before_members_loop' ); ?> 14 <?php 15 16 /** 17 * Fires before the display of the members loop. 18 * 19 * @since BuddyPress (1.2.0) 20 */ 21 do_action( 'bp_before_members_loop' ); ?> 15 22 16 23 <?php if ( bp_get_current_member_type() ) : ?> … … 36 43 </div> 37 44 38 <?php do_action( 'bp_before_directory_members_list' ); ?> 45 <?php 46 47 /** 48 * Fires before the display of the members list. 49 * 50 * @since BuddyPress (1.1.0) 51 */ 52 do_action( 'bp_before_directory_members_list' ); ?> 39 53 40 54 <ul id="members-list" class="item-list" role="main"> … … 61 75 <div class="item-meta"><span class="activity"><?php bp_member_last_active(); ?></span></div> 62 76 63 <?php do_action( 'bp_directory_members_item' ); ?> 77 <?php 78 79 /** 80 * Fires inside the display of a directory member item. 81 * 82 * @since BuddyPress (1.1.0) 83 */ 84 do_action( 'bp_directory_members_item' ); ?> 64 85 65 86 <?php … … 76 97 <div class="action"> 77 98 78 <?php do_action( 'bp_directory_members_actions' ); ?> 99 <?php 100 101 /** 102 * Fires inside the members action HTML markup to display actions. 103 * 104 * @since BuddyPress (1.1.0) 105 */ 106 do_action( 'bp_directory_members_actions' ); ?> 79 107 80 108 </div> … … 87 115 </ul> 88 116 89 <?php do_action( 'bp_after_directory_members_list' ); ?> 117 <?php 118 119 /** 120 * Fires after the display of the members list. 121 * 122 * @since BuddyPress (1.1.0) 123 */ 124 do_action( 'bp_after_directory_members_list' ); ?> 90 125 91 126 <?php bp_member_hidden_fields(); ?> … … 115 150 <?php endif; ?> 116 151 117 <?php do_action( 'bp_after_members_loop' ); ?> 152 <?php 153 154 /** 155 * Fires after the display of the members loop. 156 * 157 * @since BuddyPress (1.2.0) 158 */ 159 do_action( 'bp_after_members_loop' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/register.php
r9604 r9814 1 1 <div id="buddypress"> 2 2 3 <?php do_action( 'bp_before_register_page' ); ?> 3 <?php 4 5 /** 6 * Fires at the top of the BuddyPress member registration page template. 7 * 8 * @since BuddyPress (1.1.0) 9 */ 10 do_action( 'bp_before_register_page' ); ?> 4 11 5 12 <div class="page" id="register-page"> … … 8 15 9 16 <?php if ( 'registration-disabled' == bp_get_current_signup_step() ) : ?> 10 <?php do_action( 'template_notices' ); ?> 11 <?php do_action( 'bp_before_registration_disabled' ); ?> 17 <?php 18 19 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 20 do_action( 'template_notices' ); ?> 21 <?php 22 23 /** 24 * Fires before the display of the registration disabled message. 25 * 26 * @since BuddyPress (1.5.0) 27 */ 28 do_action( 'bp_before_registration_disabled' ); ?> 12 29 13 30 <p><?php _e( 'User registration is currently not allowed.', 'buddypress' ); ?></p> 14 31 15 <?php do_action( 'bp_after_registration_disabled' ); ?> 32 <?php 33 34 /** 35 * Fires after the display of the registration disabled message. 36 * 37 * @since BuddyPress (1.5.0) 38 */ 39 do_action( 'bp_after_registration_disabled' ); ?> 16 40 <?php endif; // registration-disabled signup step ?> 17 41 18 42 <?php if ( 'request-details' == bp_get_current_signup_step() ) : ?> 19 43 20 <?php do_action( 'template_notices' ); ?> 44 <?php 45 46 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 47 do_action( 'template_notices' ); ?> 21 48 22 49 <p><?php _e( 'Registering for this site is easy. Just fill in the fields below, and we\'ll get a new account set up for you in no time.', 'buddypress' ); ?></p> 23 50 24 <?php do_action( 'bp_before_account_details_fields' ); ?> 51 <?php 52 53 /** 54 * Fires before the display of member registration account details fields. 55 * 56 * @since BuddyPress (1.1.0) 57 */ 58 do_action( 'bp_before_account_details_fields' ); ?> 25 59 26 60 <div class="register-section" id="basic-details-section"> … … 31 65 32 66 <label for="signup_username"><?php _e( 'Username', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label> 33 <?php do_action( 'bp_signup_username_errors' ); ?> 67 <?php 68 69 /** 70 * Fires and displays any member registration username errors. 71 * 72 * @since BuddyPress (1.1.0) 73 */ 74 do_action( 'bp_signup_username_errors' ); ?> 34 75 <input type="text" name="signup_username" id="signup_username" value="<?php bp_signup_username_value(); ?>" <?php bp_form_field_attributes( 'username' ); ?>/> 35 76 36 77 <label for="signup_email"><?php _e( 'Email Address', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label> 37 <?php do_action( 'bp_signup_email_errors' ); ?> 78 <?php 79 80 /** 81 * Fires and displays any member registration email errors. 82 * 83 * @since BuddyPress (1.1.0) 84 */ 85 do_action( 'bp_signup_email_errors' ); ?> 38 86 <input type="email" name="signup_email" id="signup_email" value="<?php bp_signup_email_value(); ?>" <?php bp_form_field_attributes( 'email' ); ?>/> 39 87 40 88 <label for="signup_password"><?php _e( 'Choose a Password', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label> 41 <?php do_action( 'bp_signup_password_errors' ); ?> 89 <?php 90 91 /** 92 * Fires and displays any member registration password errors. 93 * 94 * @since BuddyPress (1.1.0) 95 */ 96 do_action( 'bp_signup_password_errors' ); ?> 42 97 <input type="password" name="signup_password" id="signup_password" value="" class="password-entry" <?php bp_form_field_attributes( 'password' ); ?>/> 43 98 <div id="pass-strength-result"></div> 44 99 45 100 <label for="signup_password_confirm"><?php _e( 'Confirm Password', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label> 46 <?php do_action( 'bp_signup_password_confirm_errors' ); ?> 101 <?php 102 103 /** 104 * Fires and displays any member registration password confirmation errors. 105 * 106 * @since BuddyPress (1.1.0) 107 */ 108 do_action( 'bp_signup_password_confirm_errors' ); ?> 47 109 <input type="password" name="signup_password_confirm" id="signup_password_confirm" value="" class="password-entry-confirm" <?php bp_form_field_attributes( 'password' ); ?>/> 48 110 49 <?php do_action( 'bp_account_details_fields' ); ?> 111 <?php 112 113 /** 114 * Fires and displays any extra member registration details fields. 115 * 116 * @since BuddyPress (1.9.0) 117 */ 118 do_action( 'bp_account_details_fields' ); ?> 50 119 51 120 </div><!-- #basic-details-section --> 52 121 53 <?php do_action( 'bp_after_account_details_fields' ); ?> 122 <?php 123 124 /** 125 * Fires after the display of member registration account details fields. 126 * 127 * @since BuddyPress (1.1.0) 128 */ 129 do_action( 'bp_after_account_details_fields' ); ?> 54 130 55 131 <?php /***** Extra Profile Details ******/ ?> … … 57 133 <?php if ( bp_is_active( 'xprofile' ) ) : ?> 58 134 59 <?php do_action( 'bp_before_signup_profile_fields' ); ?> 135 <?php 136 137 /** 138 * Fires before the display of member registration xprofile fields. 139 * 140 * @since BuddyPress (1.2.4) 141 */ 142 do_action( 'bp_before_signup_profile_fields' ); ?> 60 143 61 144 <div class="register-section" id="profile-details-section"> … … 74 157 $field_type->edit_field_html(); 75 158 159 /** 160 * Fires before the display of the visibility options for xprofile fields. 161 * 162 * @since BuddyPress (1.7.0) 163 */ 76 164 do_action( 'bp_custom_profile_edit_fields_pre_visibility' ); 77 165 … … 97 185 <?php endif ?> 98 186 99 <?php do_action( 'bp_custom_profile_edit_fields' ); ?> 187 <?php 188 189 /** 190 * Fires after the display of the visibility options for xprofile fields. 191 * 192 * @since BuddyPress (1.1.0) 193 */ 194 do_action( 'bp_custom_profile_edit_fields' ); ?> 100 195 101 196 <p class="description"><?php bp_the_profile_field_description(); ?></p> … … 109 204 <?php endwhile; endif; endif; ?> 110 205 111 <?php do_action( 'bp_signup_profile_fields' ); ?> 206 <?php 207 208 /** 209 * Fires and displays any extra member registration xprofile fields. 210 * 211 * @since BuddyPress (1.9.0) 212 */ 213 do_action( 'bp_signup_profile_fields' ); ?> 112 214 113 215 </div><!-- #profile-details-section --> 114 216 115 <?php do_action( 'bp_after_signup_profile_fields' ); ?> 217 <?php 218 219 /** 220 * Fires after the display of member registration xprofile fields. 221 * 222 * @since BuddyPress (1.1.0) 223 */ 224 do_action( 'bp_after_signup_profile_fields' ); ?> 116 225 117 226 <?php endif; ?> … … 119 228 <?php if ( bp_get_blog_signup_allowed() ) : ?> 120 229 121 <?php do_action( 'bp_before_blog_details_fields' ); ?> 230 <?php 231 232 /** 233 * Fires before the display of member registration blog details fields. 234 * 235 * @since BuddyPress (1.1.0) 236 */ 237 do_action( 'bp_before_blog_details_fields' ); ?> 122 238 123 239 <?php /***** Blog Creation Details ******/ ?> … … 132 248 133 249 <label for="signup_blog_url"><?php _e( 'Blog URL', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label> 134 <?php do_action( 'bp_signup_blog_url_errors' ); ?> 250 <?php 251 252 /** 253 * Fires and displays any member registration blog URL errors. 254 * 255 * @since BuddyPress (1.1.0) 256 */ 257 do_action( 'bp_signup_blog_url_errors' ); ?> 135 258 136 259 <?php if ( is_subdomain_install() ) : ?> … … 141 264 142 265 <label for="signup_blog_title"><?php _e( 'Site Title', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label> 143 <?php do_action( 'bp_signup_blog_title_errors' ); ?> 266 <?php 267 268 /** 269 * Fires and displays any member registration blog title errors. 270 * 271 * @since BuddyPress (1.1.0) 272 */ 273 do_action( 'bp_signup_blog_title_errors' ); ?> 144 274 <input type="text" name="signup_blog_title" id="signup_blog_title" value="<?php bp_signup_blog_title_value(); ?>" /> 145 275 146 276 <span class="label"><?php _e( 'I would like my site to appear in search engines, and in public listings around this network.', 'buddypress' ); ?></span> 147 <?php do_action( 'bp_signup_blog_privacy_errors' ); ?> 277 <?php 278 279 /** 280 * Fires and displays any member registration blog privacy errors. 281 * 282 * @since BuddyPress (1.1.0) 283 */ 284 do_action( 'bp_signup_blog_privacy_errors' ); ?> 148 285 149 286 <label><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_public" value="public"<?php if ( 'public' == bp_get_signup_blog_privacy_value() || !bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes', 'buddypress' ); ?></label> 150 287 <label><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_private" value="private"<?php if ( 'private' == bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'No', 'buddypress' ); ?></label> 151 288 152 <?php do_action( 'bp_blog_details_fields' ); ?> 289 <?php 290 291 /** 292 * Fires and displays any extra member registration blog details fields. 293 * 294 * @since BuddyPress (1.9.0) 295 */ 296 do_action( 'bp_blog_details_fields' ); ?> 153 297 154 298 </div> … … 156 300 </div><!-- #blog-details-section --> 157 301 158 <?php do_action( 'bp_after_blog_details_fields' ); ?> 302 <?php 303 304 /** 305 * Fires after the display of member registration blog details fields. 306 * 307 * @since BuddyPress (1.1.0) 308 */ 309 do_action( 'bp_after_blog_details_fields' ); ?> 159 310 160 311 <?php endif; ?> 161 312 162 <?php do_action( 'bp_before_registration_submit_buttons' ); ?> 313 <?php 314 315 /** 316 * Fires before the display of the registration submit buttons. 317 * 318 * @since BuddyPress (1.1.0) 319 */ 320 do_action( 'bp_before_registration_submit_buttons' ); ?> 163 321 164 322 <div class="submit"> … … 166 324 </div> 167 325 168 <?php do_action( 'bp_after_registration_submit_buttons' ); ?> 326 <?php 327 328 /** 329 * Fires after the display of the registration submit buttons. 330 * 331 * @since BuddyPress (1.1.0) 332 */ 333 do_action( 'bp_after_registration_submit_buttons' ); ?> 169 334 170 335 <?php wp_nonce_field( 'bp_new_signup' ); ?> … … 174 339 <?php if ( 'completed-confirmation' == bp_get_current_signup_step() ) : ?> 175 340 176 <?php do_action( 'template_notices' ); ?> 177 <?php do_action( 'bp_before_registration_confirmed' ); ?> 341 <?php 342 343 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 344 do_action( 'template_notices' ); ?> 345 <?php 346 347 /** 348 * Fires before the display of the registration confirmed messages. 349 * 350 * @since BuddyPress (1.5.0) 351 */ 352 do_action( 'bp_before_registration_confirmed' ); ?> 178 353 179 354 <?php if ( bp_registration_needs_activation() ) : ?> … … 183 358 <?php endif; ?> 184 359 185 <?php do_action( 'bp_after_registration_confirmed' ); ?> 360 <?php 361 362 /** 363 * Fires after the display of the registration confirmed messages. 364 * 365 * @since BuddyPress (1.5.0) 366 */ 367 do_action( 'bp_after_registration_confirmed' ); ?> 186 368 187 369 <?php endif; // completed-confirmation signup step ?> 188 370 189 <?php do_action( 'bp_custom_signup_steps' ); ?> 371 <?php 372 373 /** 374 * Fires and displays any custom signup steps. 375 * 376 * @since BuddyPress (1.1.0) 377 */ 378 do_action( 'bp_custom_signup_steps' ); ?> 190 379 191 380 </form> … … 193 382 </div> 194 383 195 <?php do_action( 'bp_after_register_page' ); ?> 384 <?php 385 386 /** 387 * Fires at the bottom of the BuddyPress member registration page template. 388 * 389 * @since BuddyPress (1.1.0) 390 */ 391 do_action( 'bp_after_register_page' ); ?> 196 392 197 393 </div><!-- #buddypress --> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/activity.php
r9604 r9814 22 22 <?php bp_activity_show_filters(); ?> 23 23 24 <?php do_action( 'bp_member_activity_filter_options' ); ?> 24 <?php 25 26 /** 27 * Fires inside the select input for member activity filter options. 28 * 29 * @since BuddyPress (1.2.0) 30 */ 31 do_action( 'bp_member_activity_filter_options' ); ?> 25 32 26 33 </select> … … 29 36 </div><!-- .item-list-tabs --> 30 37 31 <?php do_action( 'bp_before_member_activity_post_form' ); ?> 38 <?php 39 40 /** 41 * Fires before the display of the member activity post form. 42 * 43 * @since BuddyPress (1.2.0) 44 */ 45 do_action( 'bp_before_member_activity_post_form' ); ?> 32 46 33 47 <?php … … 35 49 bp_get_template_part( 'activity/post-form' ); 36 50 51 /** 52 * Fires after the display of the member activity post form. 53 * 54 * @since BuddyPress (1.2.0) 55 */ 37 56 do_action( 'bp_after_member_activity_post_form' ); 57 58 /** 59 * Fires before the display of the member activities list. 60 * 61 * @since BuddyPress (1.2.0) 62 */ 38 63 do_action( 'bp_before_member_activity_content' ); ?> 39 64 … … 44 69 </div><!-- .activity --> 45 70 46 <?php do_action( 'bp_after_member_activity_content' ); ?> 71 <?php 72 73 /** 74 * Fires after the display of the member activities list. 75 * 76 * @since BuddyPress (1.2.0) 77 */ 78 do_action( 'bp_after_member_activity_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/blogs.php
r9604 r9814 23 23 <option value="alphabetical"><?php _e( 'Alphabetical', 'buddypress' ); ?></option> 24 24 25 <?php do_action( 'bp_member_blog_order_options' ); ?> 25 <?php 26 27 /** 28 * Fires inside the members blogs order options select input. 29 * 30 * @since BuddyPress (1.2.0) 31 */ 32 do_action( 'bp_member_blog_order_options' ); ?> 26 33 27 34 </select> … … 35 42 // Home/My Blogs 36 43 case 'my-sites' : 44 45 /** 46 * Fires before the display of member blogs content. 47 * 48 * @since BuddyPress (1.2.0) 49 */ 37 50 do_action( 'bp_before_member_blogs_content' ); ?> 38 51 … … 43 56 </div><!-- .blogs.myblogs --> 44 57 45 <?php do_action( 'bp_after_member_blogs_content' ); 58 <?php 59 60 /** 61 * Fires after the display of member blogs content. 62 * 63 * @since BuddyPress (1.2.0) 64 */ 65 do_action( 'bp_after_member_blogs_content' ); 46 66 break; 47 67 -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/forums.php
r9604 r9814 22 22 <option value="unreplied"><?php _e( 'Unreplied', 'buddypress' ); ?></option> 23 23 24 <?php do_action( 'bp_forums_directory_order_options' ); ?> 24 <?php 25 26 /** 27 * Fires inside the members forums order options select input. 28 * 29 * @since BuddyPress (1.2.0) 30 */ 31 do_action( 'bp_forums_directory_order_options' ); ?> 25 32 26 33 </select> … … 35 42 36 43 else : 44 45 /** 46 * Fires before the display of member forums content. 47 * 48 * @since BuddyPress (1.5.0) 49 */ 37 50 do_action( 'bp_before_member_forums_content' ); ?> 38 51 … … 43 56 </div> 44 57 45 <?php do_action( 'bp_after_member_forums_content' ); ?> 58 <?php 59 60 /** 61 * Fires after the display of member forums content. 62 * 63 * @since BuddyPress (1.5.0) 64 */ 65 do_action( 'bp_after_member_forums_content' ); ?> 46 66 47 67 <?php endif; ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/friends.php
r9604 r9814 24 24 <option value="alphabetical"><?php _e( 'Alphabetical', 'buddypress' ); ?></option> 25 25 26 <?php do_action( 'bp_member_friends_order_options' ); ?> 26 <?php 27 28 /** 29 * Fires inside the members friends order options select input. 30 * 31 * @since BuddyPress (2.0.0) 32 */ 33 do_action( 'bp_member_friends_order_options' ); ?> 27 34 28 35 </select> … … 39 46 // Home/My Friends 40 47 case 'my-friends' : 48 49 /** 50 * Fires before the display of member friends content. 51 * 52 * @since BuddyPress (1.2.0) 53 */ 41 54 do_action( 'bp_before_member_friends_content' ); ?> 42 55 … … 47 60 </div><!-- .members.friends --> 48 61 49 <?php do_action( 'bp_after_member_friends_content' ); 62 <?php 63 64 /** 65 * Fires after the display of member friends content. 66 * 67 * @since BuddyPress (1.2.0) 68 */ 69 do_action( 'bp_after_member_friends_content' ); 50 70 break; 51 71 -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/friends/requests.php
r9604 r9814 1 <?php do_action( 'bp_before_member_friend_requests_content' ); ?> 1 <?php 2 3 /** 4 * Fires before the display of member friend requests content. 5 * 6 * @since BuddyPress (1.2.0) 7 */ 8 do_action( 'bp_before_member_friend_requests_content' ); ?> 2 9 3 10 <?php if ( bp_has_members( 'type=alphabetical&include=' . bp_get_friendship_requests() ) ) : ?> … … 32 39 </div> 33 40 34 <?php do_action( 'bp_friend_requests_item' ); ?> 41 <?php 42 43 /** 44 * Fires inside the display of a member friend request item. 45 * 46 * @since BuddyPress (1.1.0) 47 */ 48 do_action( 'bp_friend_requests_item' ); ?> 35 49 36 50 <div class="action"> … … 38 52 <a class="button reject" href="<?php bp_friend_reject_request_link(); ?>"><?php _e( 'Reject', 'buddypress' ); ?></a> 39 53 40 <?php do_action( 'bp_friend_requests_item_action' ); ?> 54 <?php 55 56 /** 57 * Fires inside the member friend request actions markup. 58 * 59 * @since BuddyPress (1.1.0) 60 */ 61 do_action( 'bp_friend_requests_item_action' ); ?> 41 62 </div> 42 63 </li> … … 45 66 </ul> 46 67 47 <?php do_action( 'bp_friend_requests_content' ); ?> 68 <?php 69 70 /** 71 * Fires and displays the member friend requests content. 72 * 73 * @since BuddyPress (1.1.0) 74 */ 75 do_action( 'bp_friend_requests_content' ); ?> 48 76 49 77 <div id="pag-bottom" class="pagination no-ajax"> … … 71 99 <?php endif;?> 72 100 73 <?php do_action( 'bp_after_member_friend_requests_content' ); ?> 101 <?php 102 103 /** 104 * Fires after the display of member friend requests content. 105 * 106 * @since BuddyPress (1.2.0) 107 */ 108 do_action( 'bp_after_member_friend_requests_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/groups.php
r9604 r9814 25 25 <option value="alphabetical"><?php _e( 'Alphabetical', 'buddypress' ); ?></option> 26 26 27 <?php do_action( 'bp_member_group_order_options' ); ?> 27 <?php 28 29 /** 30 * Fires inside the members group order options select input. 31 * 32 * @since BuddyPress (1.2.0) 33 */ 34 do_action( 'bp_member_group_order_options' ); ?> 28 35 29 36 </select> … … 41 48 // Home/My Groups 42 49 case 'my-groups' : 50 51 /** 52 * Fires before the display of member groups content. 53 * 54 * @since BuddyPress (1.2.0) 55 */ 43 56 do_action( 'bp_before_member_groups_content' ); ?> 44 57 … … 49 62 </div> 50 63 51 <?php do_action( 'bp_after_member_groups_content' ); 64 <?php 65 66 /** 67 * Fires after the display of member groups content. 68 * 69 * @since BuddyPress (1.2.0) 70 */ 71 do_action( 'bp_after_member_groups_content' ); 52 72 break; 53 73 -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/groups/invites.php
r9765 r9814 1 <?php do_action( 'bp_before_group_invites_content' ); ?> 1 <?php 2 3 /** 4 * Fires before the display of member group invites content. 5 * 6 * @since BuddyPress (1.1.0) 7 */ 8 do_action( 'bp_before_group_invites_content' ); ?> 2 9 3 10 <?php if ( bp_has_groups( 'type=invites&user_id=' . bp_loggedin_user_id() ) ) : ?> … … 18 25 </p> 19 26 20 <?php do_action( 'bp_group_invites_item' ); ?> 27 <?php 28 29 /** 30 * Fires inside the display of a member group invite item. 31 * 32 * @since BuddyPress (1.1.0) 33 */ 34 do_action( 'bp_group_invites_item' ); ?> 21 35 22 36 <div class="action"> … … 24 38 <a class="button reject confirm" href="<?php bp_group_reject_invite_link(); ?>"><?php _e( 'Reject', 'buddypress' ); ?></a> 25 39 26 <?php do_action( 'bp_group_invites_item_action' ); ?> 40 <?php 41 42 /** 43 * Fires inside the member group item action markup. 44 * 45 * @since BuddyPress (1.1.0) 46 */ 47 do_action( 'bp_group_invites_item_action' ); ?> 27 48 28 49 </div> … … 40 61 <?php endif;?> 41 62 42 <?php do_action( 'bp_after_group_invites_content' ); ?> 63 <?php 64 65 /** 66 * Fires after the display of member group invites content. 67 * 68 * @since BuddyPress (1.1.0) 69 */ 70 do_action( 'bp_after_group_invites_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/home.php
r9604 r9814 1 1 <div id="buddypress"> 2 2 3 <?php do_action( 'bp_before_member_home_content' ); ?> 3 <?php 4 5 /** 6 * Fires before the display of member home content. 7 * 8 * @since BuddyPress (1.2.0) 9 */ 10 do_action( 'bp_before_member_home_content' ); ?> 4 11 5 12 <div id="item-header" role="complementary"> … … 15 22 <?php bp_get_displayed_user_nav(); ?> 16 23 17 <?php do_action( 'bp_member_options_nav' ); ?> 24 <?php 25 26 /** 27 * Fires after the display of member options navigation. 28 * 29 * @since BuddyPress (1.2.4) 30 */ 31 do_action( 'bp_member_options_nav' ); ?> 18 32 19 33 </ul> … … 23 37 <div id="item-body" role="main"> 24 38 25 <?php do_action( 'bp_before_member_body' ); 39 <?php 40 41 /** 42 * Fires before the display of member body content. 43 * 44 * @since BuddyPress (1.2.0) 45 */ 46 do_action( 'bp_before_member_body' ); 26 47 27 48 if ( bp_is_user_activity() || !bp_current_component() ) : … … 58 79 endif; 59 80 81 /** 82 * Fires after the display of member body content. 83 * 84 * @since BuddyPress (1.2.0) 85 */ 60 86 do_action( 'bp_after_member_body' ); ?> 61 87 62 88 </div><!-- #item-body --> 63 89 64 <?php do_action( 'bp_after_member_home_content' ); ?> 90 <?php 91 92 /** 93 * Fires after the display of member home content. 94 * 95 * @since BuddyPress (1.2.0) 96 */ 97 do_action( 'bp_after_member_home_content' ); ?> 65 98 66 99 </div><!-- #buddypress --> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/member-header.php
r9604 r9814 10 10 ?> 11 11 12 <?php do_action( 'bp_before_member_header' ); ?> 12 <?php 13 14 /** 15 * Fires before the display of a member's header. 16 * 17 * @since BuddyPress (1.2.0) 18 */ 19 do_action( 'bp_before_member_header' ); ?> 13 20 14 21 <div id="item-header-avatar"> … … 28 35 <span class="activity"><?php bp_last_activity( bp_displayed_user_id() ); ?></span> 29 36 30 <?php do_action( 'bp_before_member_header_meta' ); ?> 37 <?php 38 39 /** 40 * Fires before the display of the member's header meta. 41 * 42 * @since BuddyPress (1.2.0) 43 */ 44 do_action( 'bp_before_member_header_meta' ); ?> 31 45 32 46 <div id="item-meta"> … … 44 58 <div id="item-buttons"> 45 59 46 <?php do_action( 'bp_member_header_actions' ); ?> 60 <?php 61 62 /** 63 * Fires in the member header actions section. 64 * 65 * @since BuddyPress (1.2.6) 66 */ 67 do_action( 'bp_member_header_actions' ); ?> 47 68 48 69 </div><!-- #item-buttons --> 49 70 50 71 <?php 51 /*** 52 * If you'd like to show specific profile fields here use: 53 * bp_member_profile_data( 'field=About Me' ); -- Pass the name of the field 54 */ 72 73 /** 74 * Fires after the group header actions section. 75 * 76 * If you'd like to show specific profile fields here use: 77 * bp_member_profile_data( 'field=About Me' ); -- Pass the name of the field 78 * 79 * @since BuddyPress (1.2.0) 80 */ 55 81 do_action( 'bp_profile_header_meta' ); 56 82 … … 61 87 </div><!-- #item-header-content --> 62 88 63 <?php do_action( 'bp_after_member_header' ); ?>89 <?php 64 90 65 <?php do_action( 'template_notices' ); ?> 91 /** 92 * Fires after the display of a member's header. 93 * 94 * @since BuddyPress (1.2.0) 95 */ 96 do_action( 'bp_after_member_header' ); ?> 97 98 <?php 99 100 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 101 do_action( 'template_notices' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages.php
r9604 r9814 31 31 case 'inbox' : 32 32 case 'sentbox' : 33 34 /** 35 * Fires before the member messages content for inbox and sentbox. 36 * 37 * @since BuddyPress (1.2.0) 38 */ 33 39 do_action( 'bp_before_member_messages_content' ); ?> 34 40 … … 37 43 </div><!-- .messages --> 38 44 39 <?php do_action( 'bp_after_member_messages_content' ); 45 <?php 46 47 /** 48 * Fires after the member messages content for inbox and sentbox. 49 * 50 * @since BuddyPress (1.2.0) 51 */ 52 do_action( 'bp_after_member_messages_content' ); 40 53 break; 41 54 … … 52 65 // Sitewide Notices 53 66 case 'notices' : 67 68 /** 69 * Fires before the member messages content for notices. 70 * 71 * @since BuddyPress (1.2.0) 72 */ 54 73 do_action( 'bp_before_member_messages_content' ); ?> 55 74 … … 58 77 </div><!-- .messages --> 59 78 60 <?php do_action( 'bp_after_member_messages_content' ); 79 <?php 80 81 /** 82 * Fires after the member messages content for inbox and sentbox. 83 * 84 * @since BuddyPress (1.2.0) 85 */ 86 do_action( 'bp_after_member_messages_content' ); 61 87 break; 62 88 -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/compose.php
r9604 r9814 1 1 <form action="<?php bp_messages_form_action('compose' ); ?>" method="post" id="send_message_form" class="standard-form" role="main" enctype="multipart/form-data"> 2 2 3 <?php do_action( 'bp_before_messages_compose_content' ); ?> 3 <?php 4 5 /** 6 * Fires before the display of message compose content. 7 * 8 * @since BuddyPress (1.1.0) 9 */ 10 do_action( 'bp_before_messages_compose_content' ); ?> 4 11 5 12 <label for="send-to-input"><?php _e("Send To (Username or Friend's Name)", 'buddypress' ); ?></label> … … 23 30 <input type="hidden" name="send_to_usernames" id="send-to-usernames" value="<?php bp_message_get_recipient_usernames(); ?>" class="<?php bp_message_get_recipient_usernames(); ?>" /> 24 31 25 <?php do_action( 'bp_after_messages_compose_content' ); ?> 32 <?php 33 34 /** 35 * Fires after the display of message compose content. 36 * 37 * @since BuddyPress (1.1.0) 38 */ 39 do_action( 'bp_after_messages_compose_content' ); ?> 26 40 27 41 <div class="submit"> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php
r9708 r9814 1 <?php do_action( 'bp_before_member_messages_loop' ); ?> 1 <?php 2 3 /** 4 * Fires before the members messages loop. 5 * 6 * @since BuddyPress (1.2.0) 7 */ 8 do_action( 'bp_before_member_messages_loop' ); ?> 2 9 3 10 <?php if ( bp_has_message_threads( bp_ajax_querystring( 'messages' ) ) ) : ?> … … 15 22 </div><!-- .pagination --> 16 23 17 <?php do_action( 'bp_after_member_messages_pagination' ); ?>24 <?php 18 25 19 <?php do_action( 'bp_before_member_messages_threads' ); ?> 26 /** 27 * Fires after the members messages pagination display. 28 * 29 * @since BuddyPress (1.2.0) 30 */ 31 do_action( 'bp_after_member_messages_pagination' ); ?> 32 33 <?php 34 35 /** 36 * Fires before the members messages threads. 37 * 38 * @since BuddyPress (1.2.0) 39 */ 40 do_action( 'bp_before_member_messages_threads' ); ?> 20 41 21 42 <form action="<?php echo bp_loggedin_user_domain() . bp_get_messages_slug() . '/' . bp_current_action() ?>/bulk-manage/" method="post" id="messages-bulk-management"> … … 62 83 </td> 63 84 64 <?php do_action( 'bp_messages_inbox_list_item' ); ?> 85 <?php 86 87 /** 88 * Fires inside the display of a member message inbox list item. 89 * 90 * @since BuddyPress (1.1.0) 91 */ 92 do_action( 'bp_messages_inbox_list_item' ); ?> 65 93 66 94 <td class="thread-options"> … … 88 116 </form> 89 117 90 <?php do_action( 'bp_after_member_messages_threads' ); ?>118 <?php 91 119 92 <?php do_action( 'bp_after_member_messages_options' ); ?> 120 /** 121 * Fires after the members messages threads. 122 * 123 * @since BuddyPress (1.2.0) 124 */ 125 do_action( 'bp_after_member_messages_threads' ); ?> 126 127 <?php 128 129 /** 130 * Fires and displays member messages options. 131 * 132 * @since BuddyPress (1.2.0) 133 */ 134 do_action( 'bp_after_member_messages_options' ); ?> 93 135 94 136 <?php else: ?> … … 100 142 <?php endif;?> 101 143 102 <?php do_action( 'bp_after_member_messages_loop' ); ?> 144 <?php 145 146 /** 147 * Fires after the members messages loop. 148 * 149 * @since BuddyPress (1.2.0) 150 */ 151 do_action( 'bp_after_member_messages_loop' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/notices-loop.php
r9604 r9814 1 <?php do_action( 'bp_before_notices_loop' ); ?> 1 <?php 2 3 /** 4 * Fires before the members notices loop. 5 * 6 * @since BuddyPress (1.2.0) 7 */ 8 do_action( 'bp_before_notices_loop' ); ?> 2 9 3 10 <?php if ( bp_has_message_threads() ) : ?> … … 15 22 </div><!-- .pagination --> 16 23 17 <?php do_action( 'bp_after_notices_pagination' ); ?> 18 <?php do_action( 'bp_before_notices' ); ?> 24 <?php 25 26 /** 27 * Fires after the members notices pagination display. 28 * 29 * @since BuddyPress (1.2.0) 30 */ 31 do_action( 'bp_after_notices_pagination' ); ?> 32 <?php 33 34 /** 35 * Fires before the members notice items. 36 * 37 * @since BuddyPress (1.2.0) 38 */ 39 do_action( 'bp_before_notices' ); ?> 19 40 20 41 <table id="message-threads" class="messages-notices"> … … 37 58 </td> 38 59 39 <?php do_action( 'bp_notices_list_item' ); ?> 60 <?php 61 62 /** 63 * Fires inside the display of a member notice list item. 64 * 65 * @since BuddyPress (1.2.0) 66 */ 67 do_action( 'bp_notices_list_item' ); ?> 40 68 41 69 <td width="10%"> … … 47 75 </table><!-- #message-threads --> 48 76 49 <?php do_action( 'bp_after_notices' ); ?> 77 <?php 78 79 /** 80 * Fires after the members notice items. 81 * 82 * @since BuddyPress (1.2.0) 83 */ 84 do_action( 'bp_after_notices' ); ?> 50 85 51 86 <?php else: ?> … … 57 92 <?php endif;?> 58 93 59 <?php do_action( 'bp_after_notices_loop' ); ?> 94 <?php 95 96 /** 97 * Fires after the members notices loop. 98 * 99 * @since BuddyPress (1.2.0) 100 */ 101 do_action( 'bp_after_notices_loop' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/single.php
r9604 r9814 1 1 <div id="message-thread" role="main"> 2 2 3 <?php do_action( 'bp_before_message_thread_content' ); ?> 3 <?php 4 5 /** 6 * Fires before the display of a single member message thread content. 7 * 8 * @since BuddyPress (1.1.0) 9 */ 10 do_action( 'bp_before_message_thread_content' ); ?> 4 11 5 12 <?php if ( bp_thread_has_messages() ) : ?> … … 29 36 </p> 30 37 31 <?php do_action( 'bp_before_message_thread_list' ); ?> 38 <?php 39 40 /** 41 * Fires before the display of the message thread list. 42 * 43 * @since BuddyPress (1.1.0) 44 */ 45 do_action( 'bp_before_message_thread_list' ); ?> 32 46 33 47 <?php while ( bp_thread_messages() ) : bp_thread_the_message(); ?> … … 37 51 <div class="message-metadata"> 38 52 39 <?php do_action( 'bp_before_message_meta' ); ?> 53 <?php 54 55 /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */ 56 do_action( 'bp_before_message_meta' ); ?> 40 57 41 58 <?php bp_the_thread_message_sender_avatar( 'type=thumb&width=30&height=30' ); ?> … … 53 70 <span class="activity"><?php bp_the_thread_message_time_since(); ?></span> 54 71 55 <?php do_action( 'bp_after_message_meta' ); ?> 72 <?php 73 74 /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */ 75 do_action( 'bp_after_message_meta' ); ?> 56 76 57 77 </div><!-- .message-metadata --> 58 78 59 <?php do_action( 'bp_before_message_content' ); ?> 79 <?php 80 81 /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */ 82 do_action( 'bp_before_message_content' ); ?> 60 83 61 84 <div class="message-content"> … … 65 88 </div><!-- .message-content --> 66 89 67 <?php do_action( 'bp_after_message_content' ); ?> 90 <?php 91 92 /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */ 93 do_action( 'bp_after_message_content' ); ?> 68 94 69 95 <div class="clear"></div> … … 73 99 <?php endwhile; ?> 74 100 75 <?php do_action( 'bp_after_message_thread_list' ); ?>101 <?php 76 102 77 <?php do_action( 'bp_before_message_thread_reply' ); ?> 103 /** 104 * Fires after the display of the message thread list. 105 * 106 * @since BuddyPress (1.1.0) 107 */ 108 do_action( 'bp_after_message_thread_list' ); ?> 109 110 <?php 111 112 /** 113 * Fires before the display of the message thread reply form. 114 * 115 * @since BuddyPress (1.1.0) 116 */ 117 do_action( 'bp_before_message_thread_reply' ); ?> 78 118 79 119 <form id="send-reply" action="<?php bp_messages_form_action(); ?>" method="post" class="standard-form"> … … 83 123 <div class="message-metadata"> 84 124 85 <?php do_action( 'bp_before_message_meta' ); ?> 125 <?php 126 127 /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */ 128 do_action( 'bp_before_message_meta' ); ?> 86 129 87 130 <div class="avatar-box"> … … 91 134 </div> 92 135 93 <?php do_action( 'bp_after_message_meta' ); ?> 136 <?php 137 138 /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */ 139 do_action( 'bp_after_message_meta' ); ?> 94 140 95 141 </div><!-- .message-metadata --> … … 97 143 <div class="message-content"> 98 144 99 <?php do_action( 'bp_before_message_reply_box' ); ?> 145 <?php 146 147 /** 148 * Fires before the display of the message reply box. 149 * 150 * @since BuddyPress (1.1.0) 151 */ 152 do_action( 'bp_before_message_reply_box' ); ?> 100 153 101 154 <textarea name="content" id="message_content" rows="15" cols="40"></textarea> 102 155 103 <?php do_action( 'bp_after_message_reply_box' ); ?> 156 <?php 157 158 /** 159 * Fires after the display of the message reply box. 160 * 161 * @since BuddyPress (1.1.0) 162 */ 163 do_action( 'bp_after_message_reply_box' ); ?> 104 164 105 165 <div class="submit"> … … 117 177 </form><!-- #send-reply --> 118 178 119 <?php do_action( 'bp_after_message_thread_reply' ); ?> 179 <?php 180 181 /** 182 * Fires after the display of the message thread reply form. 183 * 184 * @since BuddyPress (1.1.0) 185 */ 186 do_action( 'bp_after_message_thread_reply' ); ?> 120 187 121 188 <?php endif; ?> 122 189 123 <?php do_action( 'bp_after_message_thread_content' ); ?> 190 <?php 191 192 /** 193 * Fires after the display of a single member message thread content. 194 * 195 * @since BuddyPress (1.1.0) 196 */ 197 do_action( 'bp_after_message_thread_content' ); ?> 124 198 125 199 </div> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/plugins.php
r9604 r9814 11 11 ?> 12 12 13 <?php do_action( 'bp_before_member_plugin_template' ); ?> 13 <?php 14 15 /** 16 * Fires at the start of the member plugin template. 17 * 18 * @since BuddyPress (1.2.0) 19 */ 20 do_action( 'bp_before_member_plugin_template' ); ?> 14 21 15 22 <?php if ( ! bp_is_current_component_core() ) : ?> … … 19 26 <?php bp_get_options_nav(); ?> 20 27 21 <?php do_action( 'bp_member_plugin_options_nav' ); ?> 28 <?php 29 30 /** 31 * Fires inside the member plugin template nav <ul> tag. 32 * 33 * @since BuddyPress (1.2.2) 34 */ 35 do_action( 'bp_member_plugin_options_nav' ); ?> 22 36 </ul> 23 37 </div><!-- .item-list-tabs --> … … 25 39 <?php endif; ?> 26 40 27 <h3><?php do_action( 'bp_template_title' ); ?></h3>41 <h3><?php 28 42 29 <?php do_action( 'bp_template_content' ); ?> 43 /** 44 * Fires inside the member plugin template <h3> tag. 45 * 46 * @since BuddyPress (1.0.0) 47 */ 48 do_action( 'bp_template_title' ); ?></h3> 30 49 31 <?php do_action( 'bp_after_member_plugin_template' ); ?> 50 <?php 51 52 /** 53 * Fires and displays the member plugin template content. 54 * 55 * @since BuddyPress (1.0.0) 56 */ 57 do_action( 'bp_template_content' ); ?> 58 59 <?php 60 61 /** 62 * Fires at the end of the member plugin template. 63 * 64 * @since BuddyPress (1.2.0) 65 */ 66 do_action( 'bp_after_member_plugin_template' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile.php
r9604 r9814 16 16 </div><!-- .item-list-tabs --> 17 17 18 <?php do_action( 'bp_before_profile_content' ); ?> 18 <?php 19 20 /** 21 * Fires before the display of member profile content. 22 * 23 * @since BuddyPress (1.1.0) 24 */ 25 do_action( 'bp_before_profile_content' ); ?> 19 26 20 27 <div class="profile" role="main"> … … 52 59 </div><!-- .profile --> 53 60 54 <?php do_action( 'bp_after_profile_content' ); ?> 61 <?php 62 63 /** 64 * Fires after the display of member profile content. 65 * 66 * @since BuddyPress (1.1.0) 67 */ 68 do_action( 'bp_after_profile_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/change-avatar.php
r9757 r9814 1 1 <h4><?php _e( 'Change Profile Photo', 'buddypress' ); ?></h4> 2 2 3 <?php do_action( 'bp_before_profile_avatar_upload_content' ); ?> 3 <?php 4 5 /** 6 * Fires before the display of profile avatar upload content. 7 * 8 * @since BuddyPress (1.1.0) 9 */ 10 do_action( 'bp_before_profile_avatar_upload_content' ); ?> 4 11 5 12 <?php if ( !(int)bp_get_option( 'bp-disable-avatar-uploads' ) ) : ?> … … 65 72 <?php endif; ?> 66 73 67 <?php do_action( 'bp_after_profile_avatar_upload_content' ); ?> 74 <?php 75 76 /** 77 * Fires after the display of profile avatar upload content. 78 * 79 * @since BuddyPress (1.1.0) 80 */ 81 do_action( 'bp_after_profile_avatar_upload_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/edit.php
r9604 r9814 1 <?php do_action( 'bp_before_profile_edit_content' ); 1 <?php 2 3 /** 4 * Fires after the display of member profile edit content. 5 * 6 * @since BuddyPress (1.1.0) 7 */ 8 do_action( 'bp_before_profile_edit_content' ); 2 9 3 10 if ( bp_has_profile( 'profile_group_id=' . bp_get_current_profile_group_id() ) ) : … … 6 13 <form action="<?php bp_the_profile_group_edit_form_action(); ?>" method="post" id="profile-edit-form" class="standard-form <?php bp_the_profile_group_slug(); ?>"> 7 14 8 <?php do_action( 'bp_before_profile_field_content' ); ?> 15 <?php 16 17 /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/profile/profile-wp.php */ 18 do_action( 'bp_before_profile_field_content' ); ?> 9 19 10 20 <h4><?php printf( __( "Editing '%s' Profile Group", "buddypress" ), bp_get_the_profile_group_name() ); ?></h4> … … 28 38 $field_type->edit_field_html(); 29 39 40 /** 41 * Fires before the display of visibility options for the field. 42 * 43 * @since BuddyPress (1.7.0) 44 */ 30 45 do_action( 'bp_custom_profile_edit_fields_pre_visibility' ); 31 46 ?> … … 51 66 <?php endif ?> 52 67 53 <?php do_action( 'bp_custom_profile_edit_fields' ); ?> 68 <?php 69 70 /** 71 * Fires after the visibility options for a field. 72 * 73 * @since BuddyPress (1.1.0) 74 */ 75 do_action( 'bp_custom_profile_edit_fields' ); ?> 54 76 55 77 <p class="description"><?php bp_the_profile_field_description(); ?></p> … … 58 80 <?php endwhile; ?> 59 81 60 <?php do_action( 'bp_after_profile_field_content' ); ?> 82 <?php 83 84 /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/profile/profile-wp.php */ 85 do_action( 'bp_after_profile_field_content' ); ?> 61 86 62 87 <div class="submit"> … … 72 97 <?php endwhile; endif; ?> 73 98 74 <?php do_action( 'bp_after_profile_edit_content' ); ?> 99 <?php 100 101 /** 102 * Fires after the display of member profile edit content. 103 * 104 * @since BuddyPress (1.1.0) 105 */ 106 do_action( 'bp_after_profile_edit_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/profile-loop.php
r9604 r9814 1 <?php do_action( 'bp_before_profile_loop_content' ); ?> 1 <?php 2 3 /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/profile/profile-wp.php */ 4 do_action( 'bp_before_profile_loop_content' ); ?> 2 5 3 6 <?php if ( bp_has_profile() ) : ?> … … 7 10 <?php if ( bp_profile_group_has_fields() ) : ?> 8 11 9 <?php do_action( 'bp_before_profile_field_content' ); ?> 12 <?php 13 14 /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/profile/profile-wp.php */ 15 do_action( 'bp_before_profile_field_content' ); ?> 10 16 11 17 <div class="bp-widget <?php bp_the_profile_group_slug(); ?>"> … … 29 35 <?php endif; ?> 30 36 31 <?php do_action( 'bp_profile_field_item' ); ?> 37 <?php 38 39 /** 40 * Fires after the display of a field table row for profile data. 41 * 42 * @since BuddyPress (1.1.0) 43 */ 44 do_action( 'bp_profile_field_item' ); ?> 32 45 33 46 <?php endwhile; ?> … … 36 49 </div> 37 50 38 <?php do_action( 'bp_after_profile_field_content' ); ?> 51 <?php 52 53 /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/profile/profile-wp.php */ 54 do_action( 'bp_after_profile_field_content' ); ?> 39 55 40 56 <?php endif; ?> … … 42 58 <?php endwhile; ?> 43 59 44 <?php do_action( 'bp_profile_field_buttons' ); ?> 60 <?php 61 62 /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/profile/profile-wp.php */ 63 do_action( 'bp_profile_field_buttons' ); ?> 45 64 46 65 <?php endif; ?> 47 66 48 <?php do_action( 'bp_after_profile_loop_content' ); ?> 67 <?php 68 69 /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/profile/profile-wp.php */ 70 do_action( 'bp_after_profile_loop_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/profile-wp.php
r9604 r9814 1 <?php do_action( 'bp_before_profile_loop_content' ); ?> 1 <?php 2 3 /** 4 * Fires before the display of member profile loop content. 5 * 6 * @since BuddyPress (1.2.0) 7 */ 8 do_action( 'bp_before_profile_loop_content' ); ?> 2 9 3 10 <?php $ud = get_userdata( bp_displayed_user_id() ); ?> 4 11 5 <?php do_action( 'bp_before_profile_field_content' ); ?> 12 <?php 13 14 /** 15 * Fires before the display of member profile field content. 16 * 17 * @since BuddyPress (1.1.0) 18 */ 19 do_action( 'bp_before_profile_field_content' ); ?> 6 20 7 21 <div class="bp-widget wp-profile"> … … 67 81 </div> 68 82 69 <?php do_action( 'bp_after_profile_field_content' ); ?>83 <?php 70 84 71 <?php do_action( 'bp_profile_field_buttons' ); ?> 85 /** 86 * Fires after the display of member profile field content. 87 * 88 * @since BuddyPress (1.1.0) 89 */ 90 do_action( 'bp_after_profile_field_content' ); ?> 72 91 73 <?php do_action( 'bp_after_profile_loop_content' ); ?> 92 <?php 93 94 /** 95 * Fires and displays the profile field buttons. 96 * 97 * @since BuddyPress (1.1.0) 98 */ 99 do_action( 'bp_profile_field_buttons' ); ?> 100 101 <?php 102 103 /** 104 * Fires after the display of member profile loop content. 105 * 106 * @since BuddyPress (1.2.0) 107 */ 108 do_action( 'bp_after_profile_loop_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/capabilities.php
r9604 r9814 1 <?php do_action( 'bp_before_member_settings_template' ); ?> 1 <?php 2 3 /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/settings/profile.php */ 4 do_action( 'bp_before_member_settings_template' ); ?> 2 5 3 6 <form action="<?php echo bp_displayed_user_domain() . bp_get_settings_slug() . '/capabilities/'; ?>" name="account-capabilities-form" id="account-capabilities-form" class="standard-form" method="post"> 4 7 5 <?php do_action( 'bp_members_capabilities_account_before_submit' ); ?> 8 <?php 9 10 /** 11 * Fires before the display of the submit button for user capabilities saving. 12 * 13 * @since BuddyPress (1.6.0) 14 */ 15 do_action( 'bp_members_capabilities_account_before_submit' ); ?> 6 16 7 17 <label> … … 14 24 </div> 15 25 16 <?php do_action( 'bp_members_capabilities_account_after_submit' ); ?> 26 <?php 27 28 /** 29 * Fires after the display of the submit button for user capabilities saving. 30 * 31 * @since BuddyPress (1.6.0) 32 */ 33 do_action( 'bp_members_capabilities_account_after_submit' ); ?> 17 34 18 35 <?php wp_nonce_field( 'capabilities' ); ?> … … 20 37 </form> 21 38 22 <?php do_action( 'bp_after_member_settings_template' ); ?> 39 <?php 40 41 /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/settings/profile.php */ 42 do_action( 'bp_after_member_settings_template' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/delete-account.php
r9604 r9814 1 <?php do_action( 'bp_before_member_settings_template' ); ?> 1 <?php 2 3 /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/settings/profile.php */ 4 do_action( 'bp_before_member_settings_template' ); ?> 2 5 3 6 <div id="message" class="info"> … … 17 20 <form action="<?php echo bp_displayed_user_domain() . bp_get_settings_slug() . '/delete-account'; ?>" name="account-delete-form" id="account-delete-form" class="standard-form" method="post"> 18 21 19 <?php do_action( 'bp_members_delete_account_before_submit' ); ?> 22 <?php 23 24 /** 25 * Fires before the display of the submit button for user delete account submitting. 26 * 27 * @since BuddyPress (1.5.0) 28 */ 29 do_action( 'bp_members_delete_account_before_submit' ); ?> 20 30 21 31 <label> … … 28 38 </div> 29 39 30 <?php do_action( 'bp_members_delete_account_after_submit' ); ?> 40 <?php 41 42 /** 43 * Fires after the display of the submit button for user delete account submitting. 44 * 45 * @since BuddyPress (1.5.0) 46 */ 47 do_action( 'bp_members_delete_account_after_submit' ); ?> 31 48 32 49 <?php wp_nonce_field( 'delete-account' ); ?> … … 34 51 </form> 35 52 36 <?php do_action( 'bp_after_member_settings_template' ); ?> 53 <?php 54 55 /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/settings/profile.php */ 56 do_action( 'bp_after_member_settings_template' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/general.php
r9604 r9814 1 <?php do_action( 'bp_before_member_settings_template' ); ?> 1 <?php 2 3 /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/settings/profile.php */ 4 do_action( 'bp_before_member_settings_template' ); ?> 2 5 3 6 <form action="<?php echo bp_displayed_user_domain() . bp_get_settings_slug() . '/general'; ?>" method="post" class="standard-form" id="settings-form"> … … 18 21 <input type="password" name="pass2" id="pass2" size="16" value="" class="settings-input small password-entry-confirm" <?php bp_form_field_attributes( 'password' ); ?>/> <?php _e( 'Repeat New Password', 'buddypress' ); ?> 19 22 20 <?php do_action( 'bp_core_general_settings_before_submit' ); ?> 23 <?php 24 25 /** 26 * Fires before the display of the submit button for user general settings saving. 27 * 28 * @since BuddyPress (1.5.0) 29 */ 30 do_action( 'bp_core_general_settings_before_submit' ); ?> 21 31 22 32 <div class="submit"> … … 24 34 </div> 25 35 26 <?php do_action( 'bp_core_general_settings_after_submit' ); ?> 36 <?php 37 38 /** 39 * Fires after the display of the submit button for user general settings saving. 40 * 41 * @since BuddyPress (1.5.0) 42 */ 43 do_action( 'bp_core_general_settings_after_submit' ); ?> 27 44 28 45 <?php wp_nonce_field( 'bp_settings_general' ); ?> … … 30 47 </form> 31 48 32 <?php do_action( 'bp_after_member_settings_template' ); ?> 49 <?php 50 51 /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/settings/profile.php */ 52 do_action( 'bp_after_member_settings_template' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/notifications.php
r9604 r9814 1 <?php do_action( 'bp_before_member_settings_template' ); ?> 1 <?php 2 3 /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/settings/profile.php */ 4 do_action( 'bp_before_member_settings_template' ); ?> 2 5 3 6 <form action="<?php echo bp_displayed_user_domain() . bp_get_settings_slug() . '/notifications'; ?>" method="post" class="standard-form" id="settings-form"> 4 7 <p><?php _e( 'Send an email notice when:', 'buddypress' ); ?></p> 5 8 6 <?php do_action( 'bp_notification_settings' ); ?>9 <?php 7 10 8 <?php do_action( 'bp_members_notification_settings_before_submit' ); ?> 11 /** 12 * Fires at the top of the member template notification settings form. 13 * 14 * @since BuddyPress (1.0.0) 15 */ 16 do_action( 'bp_notification_settings' ); ?> 17 18 <?php 19 20 /** 21 * Fires before the display of the submit button for user notification saving. 22 * 23 * @since BuddyPress (1.5.0) 24 */ 25 do_action( 'bp_members_notification_settings_before_submit' ); ?> 9 26 10 27 <div class="submit"> … … 12 29 </div> 13 30 14 <?php do_action( 'bp_members_notification_settings_after_submit' ); ?> 31 <?php 32 33 /** 34 * Fires after the display of the submit button for user notification saving. 35 * 36 * @since BuddyPress (1.5.0) 37 */ 38 do_action( 'bp_members_notification_settings_after_submit' ); ?> 15 39 16 40 <?php wp_nonce_field('bp_settings_notifications' ); ?> … … 18 42 </form> 19 43 20 <?php do_action( 'bp_after_member_settings_template' ); ?> 44 <?php 45 46 /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/settings/profile.php */ 47 do_action( 'bp_after_member_settings_template' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/profile.php
r8958 r9814 1 <?php do_action( 'bp_before_member_settings_template' ); ?> 1 <?php 2 3 /** 4 * Fires before the display of member settings template. 5 * 6 * @since BuddyPress (1.5.0) 7 */ 8 do_action( 'bp_before_member_settings_template' ); ?> 2 9 3 10 <form action="<?php echo trailingslashit( bp_displayed_user_domain() . bp_get_settings_slug() . '/profile' ); ?>" method="post" class="standard-form" id="settings-form"> … … 37 44 <?php endif; ?> 38 45 39 <?php do_action( 'bp_core_xprofile_settings_before_submit' ); ?> 46 <?php 47 48 /** 49 * Fires before the display of the submit button for user profile saving. 50 * 51 * @since BuddyPress (2.0.0) 52 */ 53 do_action( 'bp_core_xprofile_settings_before_submit' ); ?> 40 54 41 55 <div class="submit"> … … 43 57 </div> 44 58 45 <?php do_action( 'bp_core_xprofile_settings_after_submit' ); ?> 59 <?php 60 61 /** 62 * Fires after the display of the submit button for user profile saving. 63 * 64 * @since BuddyPress (2.0.0) 65 */ 66 do_action( 'bp_core_xprofile_settings_after_submit' ); ?> 46 67 47 68 <?php wp_nonce_field( 'bp_xprofile_settings' ); ?> … … 51 72 </form> 52 73 53 <?php do_action( 'bp_after_member_settings_template' ); 74 <?php 75 76 /** 77 * Fires after the display of member settings template. 78 * 79 * @since BuddyPress (1.5.0) 80 */ 81 do_action( 'bp_after_member_settings_template' );
Note: See TracChangeset
for help on using the changeset viewer.