Skip to:
Content

BuddyPress.org

Ticket #7348: 7348.2.patch

File 7348.2.patch, 17.8 KB (added by mercime, 8 years ago)
  • src/bp-templates/bp-legacy/buddypress/members/register.php

     
    182182                                                        do_action( 'bp_custom_profile_edit_fields_pre_visibility' );
    183183
    184184                                                        if ( bp_current_user_can( 'bp_xprofile_change_field_visibility' ) ) : ?>
    185                                                                 <p class="field-visibility-settings-toggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>">
     185                                                                <p class="field-visibility-settings-toggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>"><span id="<?php bp_the_profile_field_input_name(); ?>-2">
    186186                                                                        <?php
    187187                                                                        printf(
    188188                                                                                __( 'This field can be seen by: %s', 'buddypress' ),
     
    189189                                                                                '<span class="current-visibility-level">' . bp_get_the_profile_field_visibility_level_label() . '</span>'
    190190                                                                        );
    191191                                                                        ?>
    192                                                                         <button type="button" class="visibility-toggle-link"><?php _ex( 'Change', 'Change profile field visibility level', 'buddypress' ); ?></button>
     192                                                                        </span>
     193                                                                        <button type="button" class="visibility-toggle-link" aria-describedby="<?php bp_the_profile_field_input_name(); ?>-2" aria-expanded="false" aria-label="<?php esc_attr_e( 'Change profile field visibility level', 'buddypress' ); ?>"><?php _ex( 'Change', 'Change profile field visibility level', 'buddypress' ); ?></button>
    193194                                                                </p>
    194195
     196
    195197                                                                <div class="field-visibility-settings" id="field-visibility-settings-<?php bp_the_profile_field_id() ?>">
    196198                                                                        <fieldset>
    197199                                                                                <legend><?php _e( 'Who can see this field?', 'buddypress' ) ?></legend>
     
    199201                                                                                <?php bp_profile_visibility_radio_buttons() ?>
    200202
    201203                                                                        </fieldset>
    202                                                                         <button type="button" class="field-visibility-settings-close"><?php _e( 'Close', 'buddypress' ) ?></button>
     204                                                                        <button type="button" class="field-visibility-settings-close" aria-label="<?php esc_attr_e( 'Close profile field visibility level fieldset', 'buddypress' ); ?>"><?php _e( 'Close', 'buddypress' ) ?></button>
    203205
    204206                                                                </div>
    205207                                                        <?php else : ?>
     
    222224                                                         */
    223225                                                        do_action( 'bp_custom_profile_edit_fields' ); ?>
    224226
    225                                                         <p class="description"><?php bp_the_profile_field_description(); ?></p>
     227                                                        </fieldset>
    226228
    227229                                                </div>
    228230
  • src/bp-templates/bp-legacy/buddypress/members/single/profile/edit.php

     
    5252                                ?>
    5353
    5454                                <?php if ( bp_current_user_can( 'bp_xprofile_change_field_visibility' ) ) : ?>
    55                                         <p class="field-visibility-settings-toggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>">
     55                                        <p class="field-visibility-settings-toggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>"><span id="<?php bp_the_profile_field_input_name(); ?>-2">
    5656                                                <?php
    5757                                                printf(
    5858                                                        __( 'This field can be seen by: %s', 'buddypress' ),
     
    5959                                                        '<span class="current-visibility-level">' . bp_get_the_profile_field_visibility_level_label() . '</span>'
    6060                                                );
    6161                                                ?>
    62                                                 <button type="button" class="visibility-toggle-link"><?php _e( 'Change', 'buddypress' ); ?></button>
     62                                                </span>
     63                                                <button type="button" class="visibility-toggle-link" aria-describedby="<?php bp_the_profile_field_input_name(); ?>-2" aria-expanded="false" aria-label="<?php esc_attr_e( 'Change profile field visibility level', 'buddypress' ); ?>"><?php _ex( 'Change', 'Change profile field visibility level', 'buddypress' ); ?></button>
    6364                                        </p>
    6465
    6566                                        <div class="field-visibility-settings" id="field-visibility-settings-<?php bp_the_profile_field_id() ?>">
     
    6970                                                        <?php bp_profile_visibility_radio_buttons() ?>
    7071
    7172                                                </fieldset>
    72                                                 <button type="button" class="field-visibility-settings-close"><?php _e( 'Close', 'buddypress' ) ?></button>
     73                                                <button type="button" class="field-visibility-settings-close" aria-label="<?php esc_attr_e( 'Close profile field visibility level panel', 'buddypress' ); ?>"><?php _e( 'Close', 'buddypress' ) ?></button>
    7374                                        </div>
    7475                                <?php else : ?>
    7576                                        <div class="field-visibility-settings-notoggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>">
     
    9192                                 */
    9293                                do_action( 'bp_custom_profile_edit_fields' ); ?>
    9394
    94                                 <p class="description"><?php bp_the_profile_field_description(); ?></p>
     95                                </fieldset>
     96
    9597                        </div>
    9698
    9799                <?php endwhile; ?>
  • src/bp-templates/bp-legacy/js/buddypress.js

     
    11851185        jq( '.visibility-toggle-link' ).on( 'click', function( event ) {
    11861186                event.preventDefault();
    11871187
    1188                 jq( this ).parent().hide().addClass( 'field-visibility-settings-hide' )
     1188                jq( this ).attr( 'aria-expanded', 'true' ).parent().hide().addClass( 'field-visibility-settings-hide' )
    11891189                        .siblings( '.field-visibility-settings' ).show().addClass( 'field-visibility-settings-open' );
    11901190        } );
    11911191
     
    11921192        jq( '.field-visibility-settings-close' ).on( 'click', function( event ) {
    11931193                event.preventDefault();
    11941194
     1195                jq( '.visibility-toggle-link' ).attr( 'aria-expanded', 'false' );
     1196
    11951197                var settings_div = jq( this ).parent(),
    11961198                        vis_setting_text = settings_div.find( 'input:checked' ).parent().text();
    11971199
  • src/bp-xprofile/bp-xprofile-template.php

     
    12821282                // Parse optional arguments.
    12831283                $r = bp_parse_args( $args, array(
    12841284                        'field_id'     => bp_get_the_profile_field_id(),
    1285                         'before'       => '<ul class="radio">',
    1286                         'after'        => '</ul>',
    1287                         'before_radio' => '<li class="%s">',
    1288                         'after_radio'  => '</li>',
     1285                        'before'       => '<div class="radio">',
     1286                        'after'        => '</div>',
     1287                        'before_radio' => '',
     1288                        'after_radio'  => '',
    12891289                        'class'        => 'bp-xprofile-visibility'
    12901290                ), 'xprofile_visibility_radio_buttons' );
    12911291
  • src/bp-xprofile/classes/class-bp-xprofile-field-type-checkbox.php

     
    7373                                <?php bp_the_profile_field_required_label(); ?>
    7474                        </legend>
    7575
     76                        <?php if ( bp_get_the_profile_field_description() ) : ?>
     77
     78                                <p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p>
     79
     80                        <?php endif; ?>
     81
    7682                        <?php
    7783
    7884                        /** This action is documented in bp-xprofile/bp-xprofile-classes */
     
    8288                                'user_id' => $user_id
    8389                        ) ); ?>
    8490
    85                 </fieldset>
    86 
    8791                <?php
    8892        }
    8993
  • src/bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php

     
    8181                ) ); ?>
    8282
    8383                <fieldset class="datebox">
    84 
    8584                        <legend>
    8685                                <?php bp_the_profile_field_name(); ?>
    8786                                <?php bp_the_profile_field_required_label(); ?>
    8887                        </legend>
    8988
     89                        <?php if ( bp_get_the_profile_field_description() ) : ?>
     90
     91                                <p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p>
     92
     93                        <?php endif; ?>
     94
    9095                        <div class="input-options datebox-selects">
    9196
    9297                                <?php
     
    138143
    139144                        </div>
    140145
    141                 </fieldset>
    142146        <?php
    143147        }
    144148
  • src/bp-xprofile/classes/class-bp-xprofile-field-type-multiselectbox.php

     
    7373                        'name'     => bp_get_the_profile_field_input_name() . '[]',
    7474                ) ); ?>
    7575
    76                 <label for="<?php bp_the_profile_field_input_name(); ?>[]">
     76                <fieldset class="multiselectbox">
     77                <legend>
    7778                        <?php bp_the_profile_field_name(); ?>
    7879                        <?php bp_the_profile_field_required_label(); ?>
     80                </legend>
     81
     82                <label for="<?php bp_the_profile_field_input_name(); ?>[]" class="bp-screen-reader-text">
     83                        <?php bp_the_profile_field_name(); ?>
    7984                </label>
    8085
    8186                <?php
     
    8388                /** This action is documented in bp-xprofile/bp-xprofile-classes */
    8489                do_action( bp_get_the_profile_field_errors_action() ); ?>
    8590
    86                 <select <?php echo $this->get_edit_field_html_elements( $r ); ?>>
     91                <select <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3">
    8792                        <?php bp_the_profile_field_options( array(
    8893                                'user_id' => $user_id
    8994                        ) ); ?>
    9095                </select>
    9196
     97                <?php if ( bp_get_the_profile_field_description() ) : ?>
     98
     99                        <p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p>
     100
     101                <?php endif; ?>
     102
    92103                <?php if ( ! bp_get_the_profile_field_is_required() ) : ?>
    93104
    94                         <a class="clear-value" href="javascript:clear( '<?php echo esc_js( bp_get_the_profile_field_input_name() ); ?>[]' );">
     105                        <a class="clear-value" href="javascript:clear( '<?php echo esc_js( bp_get_the_profile_field_input_name() ); ?>[]' );" role="button">
    95106                                <?php esc_html_e( 'Clear', 'buddypress' ); ?>
    96107                        </a>
    97108
  • src/bp-xprofile/classes/class-bp-xprofile-field-type-number.php

     
    6565                        'value' =>  bp_get_the_profile_field_edit_value()
    6666                ) ); ?>
    6767
    68                 <label for="<?php bp_the_profile_field_input_name(); ?>">
     68                <fieldset class="number-type">
     69                <legend>
    6970                        <?php bp_the_profile_field_name(); ?>
    7071                        <?php bp_the_profile_field_required_label(); ?>
     72                </legend>
     73
     74                <label for="<?php bp_the_profile_field_input_name(); ?>" class="bp-screen-reader-text">
     75                        <?php bp_the_profile_field_name(); ?>
    7176                </label>
    7277
    7378                <?php
     
    7580                /** This action is documented in bp-xprofile/bp-xprofile-classes */
    7681                do_action( bp_get_the_profile_field_errors_action() ); ?>
    7782
    78                 <input <?php echo $this->get_edit_field_html_elements( $r ); ?>>
     83                <input <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3">
    7984
     85                <?php if ( bp_get_the_profile_field_description() ) : ?>
     86
     87                        <p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p>
     88
     89                <?php endif; ?>
     90
    8091                <?php
    8192        }
    8293
  • src/bp-xprofile/classes/class-bp-xprofile-field-type-radiobutton.php

     
    6666                } ?>
    6767
    6868                <fieldset class="radio">
    69 
    7069                        <legend>
    7170                                <?php bp_the_profile_field_name(); ?>
    7271                                <?php bp_the_profile_field_required_label(); ?>
    7372                        </legend>
    7473
     74                        <?php if ( bp_get_the_profile_field_description() ) : ?>
     75
     76                                <p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p>
     77
     78                        <?php endif; ?>
     79
    7580                        <?php
    7681
    7782                        /** This action is documented in bp-xprofile/bp-xprofile-classes */
     
    8792
    8893                        <?php endif; ?>
    8994
    90                 </fieldset>
    91 
    9295                <?php
    9396        }
    9497
     
    176179                        return;
    177180                } ?>
    178181
    179                 <a class="clear-value" href="javascript:clear( '<?php echo esc_js( bp_get_the_profile_field_input_name() ); ?>' );">
     182                <a class="clear-value" href="javascript:clear( '<?php echo esc_js( bp_get_the_profile_field_input_name() ); ?>' );" role="button">
    180183                        <?php esc_html_e( 'Clear', 'buddypress' ); ?>
    181184                </a>
    182185
  • src/bp-xprofile/classes/class-bp-xprofile-field-type-selectbox.php

     
    6565                        $user_id = bp_displayed_user_id();
    6666                } ?>
    6767
    68                 <label for="<?php bp_the_profile_field_input_name(); ?>">
     68                <fieldset class="selectbox">
     69                <legend>
    6970                        <?php bp_the_profile_field_name(); ?>
    7071                        <?php bp_the_profile_field_required_label(); ?>
     72                </legend>
     73
     74                <label for="<?php bp_the_profile_field_input_name(); ?>" class="bp-screen-reader-text">
     75                        <?php bp_the_profile_field_name(); ?>
    7176                </label>
    7277
    7378                <?php
     
    7580                /** This action is documented in bp-xprofile/bp-xprofile-classes */
    7681                do_action( bp_get_the_profile_field_errors_action() ); ?>
    7782
    78                 <select <?php echo $this->get_edit_field_html_elements( $raw_properties ); ?>>
     83                <select <?php echo $this->get_edit_field_html_elements( $raw_properties ); ?> aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3">
    7984                        <?php bp_the_profile_field_options( array( 'user_id' => $user_id ) ); ?>
    8085                </select>
    8186
     87                <?php if ( bp_get_the_profile_field_description() ) : ?>
     88
     89                        <p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p>
     90
     91                <?php endif; ?>
     92
    8293                <?php
    8394        }
    8495
  • src/bp-xprofile/classes/class-bp-xprofile-field-type-textarea.php

     
    6363
    6464                $richtext_enabled = bp_xprofile_is_richtext_enabled_for_field(); ?>
    6565
    66                 <label for="<?php bp_the_profile_field_input_name(); ?>">
     66                <fieldset class="textarea">
     67                <legend>
    6768                        <?php bp_the_profile_field_name(); ?>
    6869                        <?php bp_the_profile_field_required_label(); ?>
     70                </legend>
     71
     72                <?php if ( bp_get_the_profile_field_description() ) : ?>
     73
     74                        <p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p>
     75
     76                <?php endif; ?>
     77
     78                <label for="<?php bp_the_profile_field_input_name(); ?>" class="bp-screen-reader-text">
     79                        <?php bp_the_profile_field_name(); ?>
    6980                </label>
    7081
    7182                <?php
     
    8192
    8293                        ?>
    8394
    84                         <textarea <?php echo $this->get_edit_field_html_elements( $r ); ?>><?php bp_the_profile_field_edit_value(); ?></textarea>
     95                        <textarea <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_edit_value(); ?></textarea>
    8596
    8697                        <?php
    8798
  • src/bp-xprofile/classes/class-bp-xprofile-field-type-textbox.php

     
    6464                        'value' => bp_get_the_profile_field_edit_value(),
    6565                ) ); ?>
    6666
    67                 <label for="<?php bp_the_profile_field_input_name(); ?>">
     67                <fieldset class="textbox">
     68                <legend>
    6869                        <?php bp_the_profile_field_name(); ?>
    6970                        <?php bp_the_profile_field_required_label(); ?>
     71                </legend>
     72
     73                <label for="<?php bp_the_profile_field_input_name(); ?>" class="bp-screen-reader-text">
     74                        <?php bp_the_profile_field_name(); ?>
    7075                </label>
    7176
    7277                <?php
     
    7479                /** This action is documented in bp-xprofile/bp-xprofile-classes */
    7580                do_action( bp_get_the_profile_field_errors_action() ); ?>
    7681
    77                 <input <?php echo $this->get_edit_field_html_elements( $r ); ?>>
     82                <input <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3">
    7883
     84                <?php if ( bp_get_the_profile_field_description() ) : ?>
     85
     86                        <p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p>
     87
     88                <?php endif; ?>
     89
    7990                <?php
    8091        }
    8192
  • src/bp-xprofile/classes/class-bp-xprofile-field-type-url.php

     
    6666                        'value'     => esc_url( bp_get_the_profile_field_edit_value() ),
    6767                ) ); ?>
    6868
    69                 <label for="<?php bp_the_profile_field_input_name(); ?>">
     69                <fieldset class="url">
     70                <legend>
    7071                        <?php bp_the_profile_field_name(); ?>
    7172                        <?php bp_the_profile_field_required_label(); ?>
     73                </legend>
     74
     75                <label for="<?php bp_the_profile_field_input_name(); ?>" class="bp-screen-reader-text">
     76                        <?php bp_the_profile_field_name(); ?>
    7277                </label>
    7378
    7479                <?php
     
    7681                /** This action is documented in bp-xprofile/bp-xprofile-classes */
    7782                do_action( bp_get_the_profile_field_errors_action() ); ?>
    7883
    79                 <input <?php echo $this->get_edit_field_html_elements( $r ); ?>>
     84                <input <?php echo $this->get_edit_field_html_elements( $r ); ?> aria-describedby="<?php bp_the_profile_field_input_name(); ?>-3">
    8085
     86                <?php if ( bp_get_the_profile_field_description() ) : ?>
     87
     88                        <p class="description" id="<?php bp_the_profile_field_input_name(); ?>-3"><?php bp_the_profile_field_description(); ?></p>
     89
     90                <?php endif; ?>
     91
    8192                <?php
    8293        }
    8394