Skip to:
Content

BuddyPress.org


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

Adds hooks documentation for the members template files.

Fixes #5948.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/single.php

    r9604 r9814  
    11<div id="message-thread" role="main">
    22
    3     <?php do_action( 'bp_before_message_thread_content' ); ?>
     3    <?php
     4
     5    /**
     6     * Fires before the display of a single member message thread content.
     7     *
     8     * @since BuddyPress (1.1.0)
     9     */
     10    do_action( 'bp_before_message_thread_content' ); ?>
    411
    512    <?php if ( bp_thread_has_messages() ) : ?>
     
    2936        </p>
    3037
    31         <?php do_action( 'bp_before_message_thread_list' ); ?>
     38        <?php
     39
     40        /**
     41         * Fires before the display of the message thread list.
     42         *
     43         * @since BuddyPress (1.1.0)
     44         */
     45        do_action( 'bp_before_message_thread_list' ); ?>
    3246
    3347        <?php while ( bp_thread_messages() ) : bp_thread_the_message(); ?>
     
    3751                <div class="message-metadata">
    3852
    39                     <?php do_action( 'bp_before_message_meta' ); ?>
     53                    <?php
     54
     55                    /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */
     56                    do_action( 'bp_before_message_meta' ); ?>
    4057
    4158                    <?php bp_the_thread_message_sender_avatar( 'type=thumb&width=30&height=30' ); ?>
     
    5370                    <span class="activity"><?php bp_the_thread_message_time_since(); ?></span>
    5471
    55                     <?php do_action( 'bp_after_message_meta' ); ?>
     72                    <?php
     73
     74                    /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */
     75                    do_action( 'bp_after_message_meta' ); ?>
    5676
    5777                </div><!-- .message-metadata -->
    5878
    59                 <?php do_action( 'bp_before_message_content' ); ?>
     79                <?php
     80
     81                /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */
     82                do_action( 'bp_before_message_content' ); ?>
    6083
    6184                <div class="message-content">
     
    6588                </div><!-- .message-content -->
    6689
    67                 <?php do_action( 'bp_after_message_content' ); ?>
     90                <?php
     91
     92                /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */
     93                do_action( 'bp_after_message_content' ); ?>
    6894
    6995                <div class="clear"></div>
     
    7399        <?php endwhile; ?>
    74100
    75         <?php do_action( 'bp_after_message_thread_list' ); ?>
     101        <?php
    76102
    77         <?php do_action( 'bp_before_message_thread_reply' ); ?>
     103        /**
     104         * Fires after the display of the message thread list.
     105         *
     106         * @since BuddyPress (1.1.0)
     107         */
     108        do_action( 'bp_after_message_thread_list' ); ?>
     109
     110        <?php
     111
     112        /**
     113         * Fires before the display of the message thread reply form.
     114         *
     115         * @since BuddyPress (1.1.0)
     116         */
     117        do_action( 'bp_before_message_thread_reply' ); ?>
    78118
    79119        <form id="send-reply" action="<?php bp_messages_form_action(); ?>" method="post" class="standard-form">
     
    83123                <div class="message-metadata">
    84124
    85                     <?php do_action( 'bp_before_message_meta' ); ?>
     125                    <?php
     126
     127                    /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */
     128                    do_action( 'bp_before_message_meta' ); ?>
    86129
    87130                    <div class="avatar-box">
     
    91134                    </div>
    92135
    93                     <?php do_action( 'bp_after_message_meta' ); ?>
     136                    <?php
     137
     138                    /** This action is documented in bp-templates/bp-legacy/buddypress-functions.php */
     139                    do_action( 'bp_after_message_meta' ); ?>
    94140
    95141                </div><!-- .message-metadata -->
     
    97143                <div class="message-content">
    98144
    99                     <?php do_action( 'bp_before_message_reply_box' ); ?>
     145                    <?php
     146
     147                    /**
     148                     * Fires before the display of the message reply box.
     149                     *
     150                     * @since BuddyPress (1.1.0)
     151                     */
     152                    do_action( 'bp_before_message_reply_box' ); ?>
    100153
    101154                    <textarea name="content" id="message_content" rows="15" cols="40"></textarea>
    102155
    103                     <?php do_action( 'bp_after_message_reply_box' ); ?>
     156                    <?php
     157
     158                    /**
     159                     * Fires after the display of the message reply box.
     160                     *
     161                     * @since BuddyPress (1.1.0)
     162                     */
     163                    do_action( 'bp_after_message_reply_box' ); ?>
    104164
    105165                    <div class="submit">
     
    117177        </form><!-- #send-reply -->
    118178
    119         <?php do_action( 'bp_after_message_thread_reply' ); ?>
     179        <?php
     180
     181        /**
     182         * Fires after the display of the message thread reply form.
     183         *
     184         * @since BuddyPress (1.1.0)
     185         */
     186        do_action( 'bp_after_message_thread_reply' ); ?>
    120187
    121188    <?php endif; ?>
    122189
    123     <?php do_action( 'bp_after_message_thread_content' ); ?>
     190    <?php
     191
     192    /**
     193     * Fires after the display of a single member message thread content.
     194     *
     195     * @since BuddyPress (1.1.0)
     196     */
     197    do_action( 'bp_after_message_thread_content' ); ?>
    124198
    125199</div>
Note: See TracChangeset for help on using the changeset viewer.