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/index.php

    r9604 r9786  
    1 <?php do_action( 'bp_before_directory_groups_page' ); ?>
     1<?php
     2
     3/**
     4 * Fires at the top of the groups directory template file.
     5 *
     6 * @since BuddyPress (1.5.0)
     7 */
     8do_action( 'bp_before_directory_groups_page' ); ?>
    29
    310<div id="buddypress">
    411
    5     <?php do_action( 'bp_before_directory_groups' ); ?>
     12    <?php
    613
    7     <?php do_action( 'bp_before_directory_groups_content' ); ?>
     14    /**
     15     * Fires before the display of the groups.
     16     *
     17     * @since BuddyPress (1.1.0)
     18     */
     19    do_action( 'bp_before_directory_groups' ); ?>
     20
     21    <?php
     22
     23    /**
     24     * Fires before the display of the groups content.
     25     *
     26     * @since BuddyPress (1.1.0)
     27     */
     28    do_action( 'bp_before_directory_groups_content' ); ?>
    829
    930    <div id="group-dir-search" class="dir-search" role="search">
     
    2344                <?php endif; ?>
    2445
    25                 <?php do_action( 'bp_groups_directory_group_filter' ); ?>
     46                <?php
     47
     48                /**
     49                 * Fires inside the groups directory group filter input.
     50                 *
     51                 * @since BuddyPress (1.5.0)
     52                 */
     53                do_action( 'bp_groups_directory_group_filter' ); ?>
    2654
    2755            </ul>
     
    3058        <div class="item-list-tabs" id="subnav" role="navigation">
    3159            <ul>
    32                 <?php do_action( 'bp_groups_directory_group_types' ); ?>
     60                <?php
     61
     62                /**
     63                 * Fires inside the groups directory group types.
     64                 *
     65                 * @since BuddyPress (1.2.0)
     66                 */
     67                do_action( 'bp_groups_directory_group_types' ); ?>
    3368
    3469                <li id="groups-order-select" class="last filter">
     
    4277                        <option value="alphabetical"><?php _e( 'Alphabetical', 'buddypress' ); ?></option>
    4378
    44                         <?php do_action( 'bp_groups_directory_order_options' ); ?>
     79                        <?php
     80
     81                        /**
     82                         * Fires inside the groups directory group order options.
     83                         *
     84                         * @since BuddyPress (1.2.0)
     85                         */
     86                        do_action( 'bp_groups_directory_order_options' ); ?>
    4587                    </select>
    4688                </li>
     
    5294        </div><!-- #groups-dir-list -->
    5395
    54         <?php do_action( 'bp_directory_groups_content' ); ?>
     96        <?php
     97
     98        /**
     99         * Fires and displays the group content.
     100         *
     101         * @since BuddyPress (1.1.0)
     102         */
     103        do_action( 'bp_directory_groups_content' ); ?>
    55104
    56105        <?php wp_nonce_field( 'directory_groups', '_wpnonce-groups-filter' ); ?>
    57106
    58         <?php do_action( 'bp_after_directory_groups_content' ); ?>
     107        <?php
     108
     109        /**
     110         * Fires after the display of the groups content.
     111         *
     112         * @since BuddyPress (1.1.0)
     113         */
     114        do_action( 'bp_after_directory_groups_content' ); ?>
    59115
    60116    </form><!-- #groups-directory-form -->
    61117
    62     <?php do_action( 'bp_after_directory_groups' ); ?>
     118    <?php
     119
     120    /**
     121     * Fires after the display of the groups.
     122     *
     123     * @since BuddyPress (1.1.0)
     124     */
     125    do_action( 'bp_after_directory_groups' ); ?>
    63126
    64127</div><!-- #buddypress -->
    65128
    66 <?php do_action( 'bp_after_directory_groups_page' ); ?>
     129<?php
     130
     131/**
     132 * Fires at the bottom of the groups directory template file.
     133 *
     134 * @since BuddyPress (1.5.0)
     135 */
     136do_action( 'bp_after_directory_groups_page' ); ?>
Note: See TracChangeset for help on using the changeset viewer.