Skip to:
Content

BuddyPress.org

Changeset 9812


Ignore:
Timestamp:
04/28/2015 01:03:58 AM (10 years ago)
Author:
tw2113
Message:

Adds hooks documentation for the groups templates plugins.php file.

See #5948

File:
1 edited

Legend:

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

    r9604 r9812  
    1 <?php do_action( 'bp_before_group_plugin_template' ); ?>
     1<?php
    22
    3 <?php do_action( 'bp_template_content' ); ?>
     3/**
     4 * Fires before the display of content for plugins using the BP_Group_Extension.
     5 *
     6 * @since BuddyPress (1.2.0)
     7 */
     8do_action( 'bp_before_group_plugin_template' ); ?>
    49
    5 <?php do_action( 'bp_after_group_plugin_template' );
     10<?php
     11
     12/**
     13 * Fires and displays content for plugins using the BP_Group_Extension.
     14 *
     15 * @since BuddyPress (1.0.0)
     16 */
     17do_action( 'bp_template_content' ); ?>
     18
     19<?php
     20
     21/**
     22 * Fires after the display of content for plugins using the BP_Group_Extension.
     23 *
     24 * @since BuddyPress (1.2.0)
     25 */
     26do_action( 'bp_after_group_plugin_template' );
Note: See TracChangeset for help on using the changeset viewer.