Changeset 11171
- Timestamp:
- 10/04/2016 02:11:28 AM (9 years ago)
- Location:
- trunk/src/bp-templates/bp-legacy/buddypress
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-legacy/buddypress/activity/index.php
r11128 r11171 33 33 <?php endif; ?> 34 34 35 <?php 36 37 /** 38 * Fires towards the top of template pages for notice display. 39 * 40 * @since 1.0.0 41 */ 42 do_action( 'template_notices' ); ?> 35 <div id="template-notices" role="alert" aria-atomic="true"> 36 <?php 37 38 /** 39 * Fires towards the top of template pages for notice display. 40 * 41 * @since 1.0.0 42 */ 43 do_action( 'template_notices' ); ?> 44 45 </div> 43 46 44 47 <div class="item-list-tabs activity-type-tabs" aria-label="<?php esc_attr_e( 'Sitewide activities navigation', 'buddypress' ); ?>" role="navigation"> -
trunk/src/bp-templates/bp-legacy/buddypress/activity/single/home.php
r10150 r11171 9 9 ?> 10 10 <div id="buddypress"> 11 <?php12 11 13 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 14 do_action( 'template_notices' ); ?> 12 <div id="template-notices" role="alert" aria-atomic="true"> 13 <?php 14 15 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 16 do_action( 'template_notices' ); ?> 17 18 </div> 15 19 16 20 <div class="activity no-ajax"> -
trunk/src/bp-templates/bp-legacy/buddypress/blogs/create.php
r10181 r11171 14 14 do_action( 'bp_before_create_blog_content_template' ); ?> 15 15 16 <?php 16 <div id="template-notices" role="alert" aria-atomic="true"> 17 <?php 17 18 18 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 19 do_action( 'template_notices' ); ?> 19 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 20 do_action( 'template_notices' ); ?> 21 22 </div> 20 23 21 24 <?php -
trunk/src/bp-templates/bp-legacy/buddypress/forums/index.php
r11128 r11171 169 169 <h5><?php _e( 'Create New Topic:', 'buddypress' ); ?></h5> 170 170 171 <div id="template-notices" role="alert" aria-atomic="true"> 171 172 <?php 172 173 173 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 174 do_action( 'template_notices' ); ?> 174 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 175 do_action( 'template_notices' ); ?> 176 177 </div> 175 178 176 179 <label for="topic_title"><?php _e( 'Title:', 'buddypress' ); ?></label> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/create.php
r11166 r11171 44 44 </div> 45 45 46 <?php 47 48 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 49 do_action( 'template_notices' ); ?> 46 <div id="template-notices" role="alert" aria-atomic="true"> 47 <?php 48 49 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 50 do_action( 'template_notices' ); ?> 51 52 </div> 50 53 51 54 <div class="item-body" id="group-create-body"> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/groups-loop.php
r11145 r11171 51 51 do_action( 'bp_before_directory_groups_list' ); ?> 52 52 53 <ul id="groups-list" class="item-list" >53 <ul id="groups-list" class="item-list" aria-live="assertive" aria-atomic="true" aria-relevant="all"> 54 54 55 55 <?php while ( bp_groups() ) : bp_the_group(); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/index.php
r11166 r11171 49 49 <form action="" method="post" id="groups-directory-form" class="dir-form"> 50 50 51 <?php 51 <div id="template-notices" role="alert" aria-atomic="true"> 52 <?php 52 53 53 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 54 do_action( 'template_notices' ); ?> 54 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 55 do_action( 'template_notices' ); ?> 56 57 </div> 55 58 56 59 <div class="item-list-tabs" aria-label="<?php esc_attr_e( 'Groups directory main navigation', 'buddypress' ); ?>"> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php
r11138 r11171 231 231 <?php endif; ?> 232 232 233 <ul id="members-list" class="item-list" >233 <ul id="members-list" class="item-list" aria-live="assertive" aria-relevant="all"> 234 234 <?php while ( bp_group_members() ) : bp_group_the_member(); ?> 235 235 -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/cover-image-header.php
r11146 r11171 119 119 * @since 1.2.0 120 120 */ 121 do_action( 'bp_after_group_header' ); 121 do_action( 'bp_after_group_header' ); ?> 122 122 123 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 124 do_action( 'template_notices' ); ?> 123 <div id="template-notices" role="alert" aria-atomic="true"> 124 <?php 125 126 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 127 do_action( 'template_notices' ); ?> 128 129 </div> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/group-header.php
r11146 r11171 118 118 * @since 1.2.0 119 119 */ 120 do_action( 'bp_after_group_header' ); 120 do_action( 'bp_after_group_header' ); ?> 121 121 122 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 123 do_action( 'template_notices' ); 124 ?> 122 <div id="template-notices" role="alert" aria-atomic="true"> 123 <?php 124 125 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 126 do_action( 'template_notices' ); ?> 127 128 </div> -
trunk/src/bp-templates/bp-legacy/buddypress/members/activate.php
r10181 r11171 22 22 <div class="page" id="activate-page"> 23 23 24 <?php 24 <div id="template-notices" role="alert" aria-atomic="true"> 25 <?php 25 26 26 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 27 do_action( 'template_notices' ); ?> 27 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 28 do_action( 'template_notices' ); ?> 29 30 </div> 28 31 29 32 <?php -
trunk/src/bp-templates/bp-legacy/buddypress/members/members-loop.php
r11008 r11171 47 47 do_action( 'bp_before_directory_members_list' ); ?> 48 48 49 <ul id="members-list" class="item-list" >49 <ul id="members-list" class="item-list" aria-live="assertive" aria-relevant="all"> 50 50 51 51 <?php while ( bp_members() ) : bp_the_member(); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/register.php
r10962 r11171 25 25 26 26 <?php if ( 'registration-disabled' == bp_get_current_signup_step() ) : ?> 27 <?php 28 29 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 30 do_action( 'template_notices' ); ?> 27 28 <div id="template-notices" role="alert" aria-atomic="true"> 29 <?php 30 31 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 32 do_action( 'template_notices' ); ?> 33 34 </div> 35 31 36 <?php 32 37 … … 52 57 <?php if ( 'request-details' == bp_get_current_signup_step() ) : ?> 53 58 54 <?php 55 56 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 57 do_action( 'template_notices' ); ?> 59 <div id="template-notices" role="alert" aria-atomic="true"> 60 <?php 61 62 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 63 do_action( 'template_notices' ); ?> 64 65 </div> 58 66 59 67 <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> … … 360 368 <?php if ( 'completed-confirmation' == bp_get_current_signup_step() ) : ?> 361 369 362 <?php 363 364 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 365 do_action( 'template_notices' ); ?> 370 <div id="template-notices" role="alert" aria-atomic="true"> 371 <?php 372 373 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 374 do_action( 'template_notices' ); ?> 375 376 </div> 377 366 378 <?php 367 379 … … 373 385 do_action( 'bp_before_registration_confirmed' ); ?> 374 386 375 <?php if ( bp_registration_needs_activation() ) : ?> 376 <p><?php _e( 'You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.', 'buddypress' ); ?></p> 377 <?php else : ?> 378 <p><?php _e( 'You have successfully created your account! Please log in using the username and password you have just created.', 'buddypress' ); ?></p> 379 <?php endif; ?> 387 <div id="template-notices" role="alert" aria-atomic="true"> 388 <?php if ( bp_registration_needs_activation() ) : ?> 389 <p><?php _e( 'You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.', 'buddypress' ); ?></p> 390 <?php else : ?> 391 <p><?php _e( 'You have successfully created your account! Please log in using the username and password you have just created.', 'buddypress' ); ?></p> 392 <?php endif; ?> 393 </div> 380 394 381 395 <?php -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/cover-image-header.php
r11098 r11171 98 98 do_action( 'bp_after_member_header' ); ?> 99 99 100 <?php 100 <div id="template-notices" role="alert" aria-atomic="true"> 101 <?php 101 102 102 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 103 do_action( 'template_notices' ); ?> 103 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 104 do_action( 'template_notices' ); ?> 105 106 </div> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/member-header.php
r11098 r11171 95 95 do_action( 'bp_after_member_header' ); ?> 96 96 97 <?php 97 <div id="template-notices" role="alert" aria-atomic="true"> 98 <?php 98 99 99 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 100 do_action( 'template_notices' ); ?> 100 /** This action is documented in bp-templates/bp-legacy/buddypress/activity/index.php */ 101 do_action( 'template_notices' ); ?> 102 103 </div>
Note: See TracChangeset
for help on using the changeset viewer.