Skip to:
Content

BuddyPress.org

Ticket #6680: 6680.02.patch

File 6680.02.patch, 5.4 KB (added by mercime, 9 years ago)

Add back label tags

  • src/bp-templates/bp-legacy/buddypress/activity/post-form.php

     
    2525                </a>
    2626        </div>
    2727
    28         <p class="activity-greeting"><?php if ( bp_is_group() )
    29                 printf( __( "What's new in %s, %s?", 'buddypress' ), bp_get_group_name(), bp_get_user_firstname( bp_get_loggedin_user_fullname() ) );
    30         else
    31                 printf( __( "What's new, %s?", 'buddypress' ), bp_get_user_firstname( bp_get_loggedin_user_fullname() ) );
    32         ?></p>
     28        <div id="whats-new-content">
    3329
    34         <div id="whats-new-content">
    3530                <div id="whats-new-textarea">
    3631                        <label for="whats-new" class="bp-screen-reader-text"><?php _e( 'Post what\'s new', 'buddypress' ); ?></label>
    37                         <textarea class="bp-suggestions" name="whats-new" id="whats-new" cols="50" rows="10"
     32                        <textarea class="bp-suggestions" name="whats-new" id="whats-new" cols="50" rows="1"
    3833                                <?php if ( bp_is_group() ) : ?>data-suggestions-group-id="<?php echo esc_attr( (int) bp_get_current_group_id() ); ?>" <?php endif; ?>
    39                         ><?php if ( isset( $_GET['r'] ) ) : ?>@<?php echo esc_textarea( $_GET['r'] ); ?> <?php endif; ?></textarea>
     34                        placeholder="<?php echo esc_attr( bp_get_activity_whats_new_placeholder() ) ;?>"><?php if ( isset( $_GET['r'] ) ) : ?>@<?php echo esc_textarea( $_GET['r'] ); ?> <?php endif; ?></textarea>
    4035                </div>
    4136
    42                 <div id="whats-new-options">
    43                         <div id="whats-new-submit">
    44                                 <input type="submit" name="aw-whats-new-submit" id="aw-whats-new-submit" value="<?php esc_attr_e( 'Post Update', 'buddypress' ); ?>" />
    45                         </div>
     37                <div id="whats-new-actions">
     38                        <?php
     39                        /**
     40                         * Fires before the activity post form options.
     41                         *
     42                         * @since BuddyPress (2.4.0)
     43                         */
     44                        do_action( 'bp_activity_post_form_before_options' ); ?>
    4645
    47                         <?php if ( bp_is_active( 'groups' ) && !bp_is_my_profile() && !bp_is_group() ) : ?>
     46                        <div id="whats-new-options">
    4847
    49                                 <div id="whats-new-post-in-box">
     48                                <?php if ( bp_is_active( 'groups' ) && !bp_is_my_profile() && !bp_is_group() ) : ?>
    5049
    51                                         <?php _e( 'Post in', 'buddypress' ); ?>:
     50                                        <div id="whats-new-post-in-box">
    5251
    53                                         <label for="whats-new-post-in" class="bp-screen-reader-text"><?php _e( 'Post in', 'buddypress' ); ?></label>
    54                                         <select id="whats-new-post-in" name="whats-new-post-in">
    55                                                 <option selected="selected" value="0"><?php _e( 'My Profile', 'buddypress' ); ?></option>
     52                                                <label for="whats-new-post-in"><?php _e( 'Post in', 'buddypress' ); ?>:</label>
    5653
    57                                                 <?php if ( bp_has_groups( 'user_id=' . bp_loggedin_user_id() . '&type=alphabetical&max=100&per_page=100&populate_extras=0&update_meta_cache=0' ) ) :
    58                                                         while ( bp_groups() ) : bp_the_group(); ?>
     54                                                <select id="whats-new-post-in" name="whats-new-post-in">
     55                                                        <option selected="selected" value="0"><?php _e( 'My Profile', 'buddypress' ); ?></option>
    5956
    60                                                                 <option value="<?php bp_group_id(); ?>"><?php bp_group_name(); ?></option>
     57                                                        <?php if ( bp_has_groups( 'user_id=' . bp_loggedin_user_id() . '&type=alphabetical&max=100&per_page=100&populate_extras=0&update_meta_cache=0' ) ) :
     58                                                                while ( bp_groups() ) : bp_the_group(); ?>
    6159
    62                                                         <?php endwhile;
    63                                                 endif; ?>
     60                                                                        <option value="<?php bp_group_id(); ?>"><?php bp_group_name(); ?></option>
    6461
    65                                         </select>
    66                                 </div>
    67                                 <input type="hidden" id="whats-new-post-object" name="whats-new-post-object" value="groups" />
     62                                                                <?php endwhile;
     63                                                        endif; ?>
    6864
    69                         <?php elseif ( bp_is_group_activity() ) : ?>
     65                                                </select>
     66                                        </div>
     67                                        <input type="hidden" id="whats-new-post-object" name="whats-new-post-object" value="groups" />
    7068
    71                                 <input type="hidden" id="whats-new-post-object" name="whats-new-post-object" value="groups" />
    72                                 <input type="hidden" id="whats-new-post-in" name="whats-new-post-in" value="<?php bp_group_id(); ?>" />
     69                                <?php elseif ( bp_is_group_home() ) : ?>
    7370
    74                         <?php endif; ?>
     71                                        <input type="hidden" id="whats-new-post-object" name="whats-new-post-object" value="groups" />
     72                                        <input type="hidden" id="whats-new-post-in" name="whats-new-post-in" value="<?php bp_group_id(); ?>" />
    7573
     74                                <?php endif; ?>
     75
     76                                <?php
     77
     78                                /**
     79                                 * Fires at the end of the activity post form options.
     80                                 *
     81                                 * @since BuddyPress (1.2.0)
     82                                 */
     83                                do_action( 'bp_activity_post_form_options' ); ?>
     84
     85                        </div><!-- #whats-new-options -->
     86
    7687                        <?php
    77 
    7888                        /**
    79                          * Fires at the end of the activity post form markup.
     89                         * Fires before the activity post form submit.
    8090                         *
    81                          * @since 1.2.0
     91                         * @since BuddyPress (2.4.0)
    8292                         */
    83                         do_action( 'bp_activity_post_form_options' ); ?>
     93                        do_action( 'bp_activity_post_form_before_submit' ); ?>
    8494
    85                 </div><!-- #whats-new-options -->
     95                        <div id="whats-new-submit">
     96
     97                                <input type="reset" name="aw-whats-new-reset" id="aw-whats-new-reset" value="<?php esc_attr_e( 'Cancel', 'buddypress' ); ?>" />
     98                                <input type="submit" name="aw-whats-new-submit" id="aw-whats-new-submit" value="<?php esc_attr_e( 'Post Update', 'buddypress' ); ?>" />
     99
     100                                 <?php
     101                                /**
     102                                 * Fires at the end of the activity post form submit.
     103                                 *
     104                                 * @since BuddyPress (2.4.0)
     105                                 */
     106                                do_action( 'bp_activity_post_form_submit' ); ?>
     107                        </div><!-- #whats-new-submit -->
     108                </div><!-- #whats-new-actions -->
    86109        </div><!-- #whats-new-content -->
    87110
    88111        <?php wp_nonce_field( 'post_update', '_wpnonce_post_update' ); ?>