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/group-header.php

    r9604 r9786  
    11<?php
    22
     3/**
     4 * Fires before the display of a group's header.
     5 *
     6 * @since BuddyPress (1.2.0)
     7 */
    38do_action( 'bp_before_group_header' );
    49
     
    1318        <?php bp_group_list_admins();
    1419
     20        /**
     21         * Fires after the display of the group's administrators.
     22         *
     23         * @since BuddyPress (1.1.0)
     24         */
    1525        do_action( 'bp_after_group_menu_admins' );
    1626
    1727        if ( bp_group_has_moderators() ) :
     28
     29            /**
     30             * Fires before the display of the group's moderators, if there are any.
     31             *
     32             * @since BuddyPress (1.1.0)
     33             */
    1834            do_action( 'bp_before_group_menu_mods' ); ?>
    1935
     
    2238            <?php bp_group_list_mods();
    2339
     40            /**
     41             * Fires after the display of the group's moderators, if there are any.
     42             *
     43             * @since BuddyPress (1.1.0)
     44             */
    2445            do_action( 'bp_after_group_menu_mods' );
    2546
     
    4263    <span class="activity"><?php printf( __( 'active %s', 'buddypress' ), bp_get_group_last_active() ); ?></span>
    4364
    44     <?php do_action( 'bp_before_group_header_meta' ); ?>
     65    <?php
     66
     67    /**
     68     * Fires before the display of the group's header meta.
     69     *
     70     * @since BuddyPress (1.2.0)
     71     */
     72    do_action( 'bp_before_group_header_meta' ); ?>
    4573
    4674    <div id="item-meta">
     
    5078        <div id="item-buttons">
    5179
    52             <?php do_action( 'bp_group_header_actions' ); ?>
     80            <?php
     81
     82            /**
     83             * Fires in the group header actions section.
     84             *
     85             * @since BuddyPress (1.2.6)
     86             */
     87            do_action( 'bp_group_header_actions' ); ?>
    5388
    5489        </div><!-- #item-buttons -->
    5590
    56         <?php do_action( 'bp_group_header_meta' ); ?>
     91        <?php
     92
     93        /**
     94         * Fires after the group header actions section.
     95         *
     96         * @since BuddyPress (1.2.0)
     97         */
     98        do_action( 'bp_group_header_meta' ); ?>
    5799
    58100    </div>
     
    60102
    61103<?php
     104
     105/**
     106 * Fires after the display of a group's header.
     107 *
     108 * @since BuddyPress (1.2.0)
     109 */
    62110do_action( 'bp_after_group_header' );
    63111do_action( 'template_notices' );
Note: See TracChangeset for help on using the changeset viewer.