Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
04/23/2015 05:08:50 AM (9 years ago)
Author:
tw2113
Message:

Adds hooks documentation for the groups template files.

See #5948.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/single/home.php

    r9604 r9786  
    33    <?php if ( bp_has_groups() ) : while ( bp_groups() ) : bp_the_group(); ?>
    44
    5     <?php do_action( 'bp_before_group_home_content' ); ?>
     5    <?php
     6
     7    /**
     8     * Fires before the display of the group home content.
     9     *
     10     * @since BuddyPress (1.2.0)
     11     */
     12    do_action( 'bp_before_group_home_content' ); ?>
    613
    714    <div id="item-header" role="complementary">
     
    1724                <?php bp_get_options_nav(); ?>
    1825
    19                 <?php do_action( 'bp_group_options_nav' ); ?>
     26                <?php
     27
     28                /**
     29                 * Fires after the display of group options navigation.
     30                 *
     31                 * @since BuddyPress (1.2.0)
     32                 */
     33                do_action( 'bp_group_options_nav' ); ?>
    2034
    2135            </ul>
     
    2539    <div id="item-body">
    2640
    27         <?php do_action( 'bp_before_group_body' );
     41        <?php
     42
     43        /**
     44         * Fires before the display of the group home body.
     45         *
     46         * @since BuddyPress (1.2.0)
     47         */
     48        do_action( 'bp_before_group_body' );
    2849
    2950        /**
     
    5374                } else {
    5475
     76                    /**
     77                     * Fires before the display of the group status message.
     78                     *
     79                     * @since BuddyPress (1.1.0)
     80                     */
    5581                    do_action( 'bp_before_group_status_message' ); ?>
    5682
     
    5985                    </div>
    6086
    61                     <?php do_action( 'bp_after_group_status_message' );
     87                    <?php
     88
     89                    /**
     90                     * Fires after the display of the group status message.
     91                     *
     92                     * @since BuddyPress (1.1.0)
     93                     */
     94                    do_action( 'bp_after_group_status_message' );
    6295
    6396                }
     
    91124            endif;
    92125
     126        /**
     127         * Fires after the display of the group home body.
     128         *
     129         * @since BuddyPress (1.2.0)
     130         */
    93131        do_action( 'bp_after_group_body' ); ?>
    94132
    95133    </div><!-- #item-body -->
    96134
    97     <?php do_action( 'bp_after_group_home_content' ); ?>
     135    <?php
     136
     137    /**
     138     * Fires after the display of the group home content.
     139     *
     140     * @since BuddyPress (1.2.0)
     141     */
     142    do_action( 'bp_after_group_home_content' ); ?>
    98143
    99144    <?php endwhile; endif; ?>
Note: See TracChangeset for help on using the changeset viewer.