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/forum/edit.php

    r9604 r9786  
    1 <?php do_action( 'bp_before_group_forum_edit_form' ); ?>
     1<?php
     2
     3/**
     4 * Fires at the top of the group forum edit form.
     5 *
     6 * @since BuddyPress (1.2.4)
     7 */
     8do_action( 'bp_before_group_forum_edit_form' ); ?>
    29
    310<?php if ( bp_has_forum_topic_posts() ) : ?>
     
    3542            <?php endif; ?>
    3643
    37             <?php do_action( 'bp_group_forum_topic_meta' ); ?>
     44            <?php
     45
     46            /**
     47             * Fires at the end of the group forum topic meta section.
     48             *
     49             * @since BuddyPress (1.2.5)
     50             */
     51            do_action( 'bp_group_forum_topic_meta' ); ?>
    3852
    3953        </div>
     
    4357            <div id="edit-topic">
    4458
    45                 <?php do_action( 'bp_group_before_edit_forum_topic' ); ?>
     59                <?php
     60
     61                /**
     62                 * Fires before the group forum topic form fields.
     63                 *
     64                 * @since BuddyPress (1.2.0)
     65                 */
     66                do_action( 'bp_group_before_edit_forum_topic' ); ?>
    4667
    4768                <label for="topic_title"><?php _e( 'Title:', 'buddypress' ); ?></label>
     
    5475                <input type="text" name="topic_tags" id="topic_tags" value="<?php bp_forum_topic_tag_list(); ?>" />
    5576
    56                 <?php do_action( 'bp_group_after_edit_forum_topic' ); ?>
     77                <?php
     78
     79                /**
     80                 * Fires after the group forum topic form fields.
     81                 *
     82                 * @since BuddyPress (1.2.0)
     83                 */
     84                do_action( 'bp_group_after_edit_forum_topic' ); ?>
    5785
    5886                <p class="submit"><input type="submit" name="save_changes" id="save_changes" value="<?php esc_attr_e( 'Save Changes', 'buddypress' ); ?>" /></p>
     
    6694            <div id="edit-post">
    6795
    68                 <?php do_action( 'bp_group_before_edit_forum_post' ); ?>
     96                <?php
     97
     98                /**
     99                 * Fires before the group edit forum textarea.
     100                 *
     101                 * @since BuddyPress (1.2.0)
     102                 */
     103                do_action( 'bp_group_before_edit_forum_post' ); ?>
    69104
    70105                <textarea name="post_text" id="post_text"><?php bp_the_topic_post_edit_text(); ?></textarea>
    71106
    72                 <?php do_action( 'bp_group_after_edit_forum_post' ); ?>
     107                <?php
     108
     109                /**
     110                 * Fires after the group edit forum textarea.
     111                 *
     112                 * @since BuddyPress (1.2.0)
     113                 */
     114                do_action( 'bp_group_after_edit_forum_post' ); ?>
    73115
    74116                <p class="submit"><input type="submit" name="save_changes" id="save_changes" value="<?php esc_attr_e( 'Save Changes', 'buddypress' ); ?>" /></p>
     
    90132<?php endif;?>
    91133
    92 <?php do_action( 'bp_after_group_forum_edit_form' ); ?>
     134<?php
     135
     136/**
     137 * Fires at the end of the group forum edit form.
     138 *
     139 * @since BuddyPress (1.2.4)
     140 */
     141do_action( 'bp_after_group_forum_edit_form' ); ?>
Note: See TracChangeset for help on using the changeset viewer.