Skip to:
Content

BuddyPress.org

Ticket #7550: item_nav_actions.patch

File item_nav_actions.patch, 1.9 KB (added by lenasterg, 8 years ago)
  • src/bp-templates/bp-legacy/buddypress/groups/single/home.php

     
    3434                ?>
    3535
    3636        </div><!-- #item-header -->
    37 
     37     
     38         <?php
     39     
     40         /**
     41         * Fires before the display of the group item navigation div.
     42         *
     43         */
     44     do_action( 'bp_before_group_item_nav' ); ?>
     45       
    3846        <div id="item-nav">
    3947                <div class="item-list-tabs no-ajax" id="object-nav" aria-label="<?php esc_attr_e( 'Group primary navigation', 'buddypress' ); ?>" role="navigation">
    4048                        <ul>
     
    5361                        </ul>
    5462                </div>
    5563        </div><!-- #item-nav -->
    56 
     64       
     65    <?php
     66   
     67        /**
     68        * Fires after the display of the group item navigation div.
     69        *
     70        */
     71    do_action('bp_after_group_item_nav' ); ?>
     72       
    5773        <div id="item-body">
    5874
    5975                <?php
  • src/bp-templates/bp-legacy/buddypress/members/single/home.php

     
    3333                ?>
    3434
    3535        </div><!-- #item-header -->
    36 
     36   
     37        <?php
     38    /**
     39        * Fires before the display of the member item navigation div.
     40        *
     41        */
     42    do_action( 'bp_before_member_item_nav' ); ?>
     43       
    3744        <div id="item-nav">
    3845                <div class="item-list-tabs no-ajax" id="object-nav" aria-label="<?php esc_attr_e( 'Member primary navigation', 'buddypress' ); ?>" role="navigation">
    3946                        <ul>
     
    5259                        </ul>
    5360                </div>
    5461        </div><!-- #item-nav -->
    55 
     62   
     63        <?php
     64    /**
     65        * Fires after the display of the member item navigation div.
     66        *
     67        */
     68    do_action('bp_after_member_item_nav' ); ?>
     69       
    5670        <div id="item-body">
    5771
    5872                <?php