Skip to:
Content

BuddyPress.org

Changeset 10150


Ignore:
Timestamp:
09/27/2015 06:04:27 AM (11 years ago)
Author:
tw2113
Message:

Standardizing our @since tags for the Templates Component.

Fixes #6576.

Location:
trunk/src/bp-templates/bp-legacy
Files:
66 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-legacy/buddypress-functions.php

    r10048 r10150  
    11<?php
    2 
    32/**
    43 * Functions of BuddyPress's Legacy theme
     4 *
     5 * @since 1.7.0
    56 *
    67 * @package BuddyPress
    78 * @subpackage BP_Theme_Compat
    8  * @since BuddyPress (1.7)
    9  */
    10 
    11 // Exit if accessed directly
     9 */
     10
     11// Exit if accessed directly.
    1212defined( 'ABSPATH' ) || exit;
    1313
     
    2828 * See @link BP_Theme_Compat() for more.
    2929 *
    30  * @since BuddyPress (1.7)
     30 * @since 1.7.0
    3131 *
    3232 * @package BuddyPress
     
    4040         * The main BuddyPress (Legacy) Loader
    4141         *
    42          * @since BuddyPress (1.7)
     42         * @since 1.7.0
    4343         *
    4444         * @uses BP_Legacy::setup_globals()
     
    5555         * needs are.
    5656         *
    57          * @since BuddyPress (1.7)
     57         * @since 1.7.0
    5858         * @access private
    5959         */
     
    7070         * Setup the theme hooks
    7171         *
    72          * @since BuddyPress (1.7)
     72         * @since 1.7.0
    7373         * @access private
    7474         *
     
    201201                 * Fires after all of the BuddyPress theme compat actions have been added.
    202202                 *
    203                  * @since BuddyPress (1.7.0)
     203                 * @since 1.7.0
    204204                 *
    205205                 * @param BP_Legacy $this Current BP_Legacy instance.
     
    211211         * Load the theme CSS
    212212         *
    213          * @since BuddyPress (1.7)
    214          * @since BuddyPress (2.3.0) Support custom CSS file named after the current theme or parent theme.
     213         * @since 1.7.0
     214         * @since 2.3.0 Support custom CSS file named after the current theme or parent theme.
    215215         *
    216216         * @uses wp_enqueue_style() To enqueue the styles
     
    275275         * Enqueue the required JavaScript files
    276276         *
    277          * @since BuddyPress (1.7)
     277         * @since 1.7.0
    278278         */
    279279        public function enqueue_scripts() {
     
    292292                 * Filters core JavaScript strings for internationalization before AJAX usage.
    293293                 *
    294                  * @since BuddyPress (2.0.0)
     294                 * @since 2.0.0
    295295                 *
    296296                 * @param array $value Array of key/value pairs for AJAX usage.
     
    372372         * and theme authors should not attempt to use what follows.
    373373         *
    374          * @since BuddyPress (1.8)
     374         * @since 1.8.0
    375375         * @access private
    376376         * @param string $file A filename like buddypress.css
     
    436436         * Put some scripts in the header, like AJAX url for wp-lists
    437437         *
    438          * @since BuddyPress (1.7)
     438         * @since 1.7.0
    439439         */
    440440        public function head_scripts() {
     
    459459         * The no-js class is removed by the JavaScript created in buddypress.js.
    460460         *
    461          * @since BuddyPress (1.7)
     461         * @since 1.7.0
    462462         */
    463463        public function add_nojs_body_class( $classes ) {
     
    473473         * These localizations require information that may not be loaded even by init.
    474474         *
    475          * @since BuddyPress (1.7)
     475         * @since 1.7.0
    476476         */
    477477        public function localize_scripts() {
     
    481481         * Outputs sitewide notices markup in the footer.
    482482         *
    483          * @since BuddyPress (1.7)
     483         * @since 1.7.0
    484484         *
    485485         * @see https://buddypress.trac.wordpress.org/ticket/4802
     
    501501         * Add secondary avatar image to this activity stream's record, if supported.
    502502         *
    503          * @since BuddyPress (1.7)
     503         * @since 1.7.0
    504504         *
    505505         * @param string $action The text of this activity
     
    530530         * @see https://buddypress.trac.wordpress.org/ticket/6065
    531531         *
    532          * @since BuddyPress (2.2.0)
     532         * @since 2.2.0
    533533         *
    534534         * @param  array $templates
     
    542542                 * Filters whether or not we are looking at a directory to determine if to return early.
    543543                 *
    544                  * @since BuddyPress (2.2.0)
     544                 * @since 2.2.0
    545545                 *
    546546                 * @param bool $value Whether or not we are viewing a directory.
     
    608608 * the behavior of bp-default.
    609609 *
    610  * @since BuddyPress (2.0.0)
     610 * @since 2.0.0
    611611 * @todo Deprecate
    612612 *
     
    624624 * the Groups directory navigation.
    625625 *
    626  * @since BuddyPress (2.2.0)
     626 * @since 2.2.0
    627627 *
    628628 * @uses   bp_group_create_nav_item() to output the create a Group nav item
     
    639639 * the behavior of bp-default.
    640640 *
    641  * @since BuddyPress (2.0.0)
     641 * @since 2.0.0
    642642 * @todo Deprecate
    643643 *
     
    655655 * the Sites directory navigation.
    656656 *
    657  * @since BuddyPress (2.2.0)
     657 * @since 2.2.0
    658658 *
    659659 * @uses   bp_blog_create_nav_item() to output the Create a Site nav item
     
    678678 *
    679679 * @return string Query string for the component loops
    680  * @since BuddyPress (1.2)
     680 * @since 1.2.0
    681681 */
    682682function bp_legacy_theme_ajax_querystring( $query_string, $object ) {
     
    760760         * Filters the AJAX query string for the component loops.
    761761         *
    762          * @since BuddyPress (1.7.0)
     762         * @since 1.7.0
    763763         *
    764764         * @param string $query_string        The query string we are working with.
     
    777777 *
    778778 * @return string Prints template loop for the specified object
    779  * @since BuddyPress (1.2)
     779 * @since 1.2.0
    780780 */
    781781function bp_legacy_theme_object_template_loader() {
     
    820820 *
    821821 * @return string Prints template loop for the Messages component
    822  * @since BuddyPress (1.6)
     822 * @since 1.6.0
    823823 */
    824824function bp_legacy_theme_messages_template_loader() {
     
    830830 * Load group invitations loop to handle pagination requests sent via AJAX.
    831831 *
    832  * @since BuddyPress (2.0.0)
     832 * @since 2.0.0
    833833 */
    834834function bp_legacy_theme_invite_template_loader() {
     
    840840 * Load group membership requests loop to handle pagination requests sent via AJAX.
    841841 *
    842  * @since BuddyPress (2.0.0)
     842 * @since 2.0.0
    843843 */
    844844function bp_legacy_theme_requests_template_loader() {
     
    853853 * for the Activity component) and 'feed_url' (URL to the relevant RSS feed).
    854854 *
    855  * @since BuddyPress (1.2)
     855 * @since 1.2.0
    856856 */
    857857function bp_legacy_theme_activity_template_loader() {
     
    892892         * Filters the feed URL for when activity is requested via AJAX.
    893893         *
    894          * @since BuddyPress (1.7.0)
     894         * @since 1.7.0
    895895         *
    896896         * @param string $feed_url URL for the feed to be used.
     
    907907 *
    908908 * @return string HTML
    909  * @since BuddyPress (1.2)
     909 * @since 1.2.0
    910910 */
    911911function bp_legacy_theme_post_update() {
     
    970970 * @global BP_Activity_Template $activities_template
    971971 * @return string HTML
    972  * @since BuddyPress (1.2)
     972 * @since 1.2.0
    973973 */
    974974function bp_legacy_theme_new_activity_comment() {
     
    10461046 *
    10471047 * @return mixed String on error, void on success
    1048  * @since BuddyPress (1.2)
     1048 * @since 1.2.0
    10491049 */
    10501050function bp_legacy_theme_delete_activity() {
     
    10831083 *
    10841084 * @return mixed String on error, void on success
    1085  * @since BuddyPress (1.2)
     1085 * @since 1.2.0
    10861086 */
    10871087function bp_legacy_theme_delete_activity_comment() {
     
    11201120 *
    11211121 * @return mixed String on error, void on success
    1122  * @since BuddyPress (1.6)
     1122 * @since 1.6.0
    11231123 */
    11241124function bp_legacy_theme_spam_activity() {
     
    11651165 *
    11661166 * @return string HTML
    1167  * @since BuddyPress (1.2)
     1167 * @since 1.2.0
    11681168 */
    11691169function bp_legacy_theme_mark_activity_favorite() {
     
    11841184 *
    11851185 * @return string HTML
    1186  * @since BuddyPress (1.2)
     1186 * @since 1.2.0
    11871187 */
    11881188function bp_legacy_theme_unmark_activity_favorite() {
     
    12041204 *
    12051205 * @return string HTML
    1206  * @since BuddyPress (1.5)
     1206 * @since 1.5.0
    12071207 */
    12081208function bp_legacy_theme_get_single_activity_content() {
     
    12241224         * Fires before the return of an activity's full, non-excerpted content via a POST request.
    12251225         *
    1226          * @since BuddyPress (1.7.0)
     1226         * @since 1.7.0
    12271227         *
    12281228         * @param string $activity Activity content. Passed by reference.
     
    12421242 * Invites a friend to join a group via a POST request.
    12431243 *
    1244  * @since BuddyPress (1.2)
     1244 * @since 1.2.0
    12451245 * @todo Audit return types
    12461246 */
     
    13251325 *
    13261326 * @return string HTML
    1327  * @since BuddyPress (1.2)
     1327 * @since 1.2.0
    13281328 */
    13291329function bp_legacy_theme_ajax_addremove_friend() {
     
    13781378 *
    13791379 * @return mixed String on error, void on success
    1380  * @since BuddyPress (1.2)
     1380 * @since 1.2.0
    13811381 */
    13821382function bp_legacy_theme_ajax_accept_friendship() {
     
    13971397 *
    13981398 * @return mixed String on error, void on success
    1399  * @since BuddyPress (1.2)
     1399 * @since 1.2.0
    14001400 */
    14011401function bp_legacy_theme_ajax_reject_friendship() {
     
    14161416 *
    14171417 * @return string HTML
    1418  * @since BuddyPress (1.2)
     1418 * @since 1.2.0
    14191419 */
    14201420function bp_legacy_theme_ajax_joinleave_group() {
     
    14861486 *
    14871487 * @return mixed String on error, void on success
    1488  * @since BuddyPress (1.2)
     1488 * @since 1.2.0
    14891489 */
    14901490function bp_legacy_theme_ajax_close_notice() {
     
    15111511 *
    15121512 * @return string HTML
    1513  * @since BuddyPress (1.2)
     1513 * @since 1.2.0
    15141514 */
    15151515function bp_legacy_theme_ajax_messages_send_reply() {
     
    15661566 *
    15671567 * @return mixed String on error, void on success
    1568  * @since BuddyPress (1.2)
     1568 * @since 1.2.0
    15691569 */
    15701570function bp_legacy_theme_ajax_message_markunread() {
     
    15911591 *
    15921592 * @return mixed String on error, void on success
    1593  * @since BuddyPress (1.2)
     1593 * @since 1.2.0
    15941594 */
    15951595function bp_legacy_theme_ajax_message_markread() {
     
    16161616 *
    16171617 * @return string HTML
    1618  * @since BuddyPress (1.2)
     1618 * @since 1.2.0
    16191619 */
    16201620function bp_legacy_theme_ajax_messages_delete() {
     
    16411641 * Displays friends only, unless BP_MESSAGES_AUTOCOMPLETE_ALL is defined.
    16421642 *
    1643  * @since BuddyPress (1.2.0)
     1643 * @since 1.2.0
    16441644 *
    16451645 * @return string HTML.
     
    16501650         * Filters the max results default value for ajax messages autocomplete results.
    16511651         *
    1652          * @since BuddyPress (1.5.0)
     1652         * @since 1.5.0
    16531653         *
    16541654         * @param int $value Max results for autocomplete. Default 10.
     
    16911691 * AJAX callback to set a message's star status.
    16921692 *
    1693  * @since BuddyPress (2.3.0)
     1693 * @since 2.3.0
    16941694 */
    16951695function bp_legacy_theme_ajax_messages_star_handler() {
  • trunk/src/bp-templates/bp-legacy/buddypress/activity/activity-loop.php

    r9819 r10150  
    11<?php
     2/**
     3 * BuddyPress - Activity Loop
     4 *
     5 * @package    BuddyPress
     6 * @subpackage bp-legacy
     7 */
    28
    39/**
    410 * Fires before the start of the activity loop.
    511 *
    6  * @since BuddyPress (1.2.0)
     12 * @since 1.2.0
    713 */
    814do_action( 'bp_before_activity_loop' ); ?>
     
    4955 * Fires after the finish of the activity loop.
    5056 *
    51  * @since BuddyPress (1.2.0)
     57 * @since 1.2.0
    5258 */
    5359do_action( 'bp_after_activity_loop' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/activity/comment.php

    r9819 r10150  
    11<?php
    2 
    32/**
    43 * BuddyPress - Activity Stream Comment
     
    1110 */
    1211
    13 ?>
    14 
    15 <?php
    16 
    1712/**
    1813 * Fires before the display of an activity comment.
    1914 *
    20  * @since BuddyPress (1.5.0)
     15 * @since 1.5.0
    2116 */
    2217do_action( 'bp_before_activity_comment' ); ?>
     
    5752                 * Fires after the defualt comment action options display.
    5853                 *
    59                  * @since BuddyPress (1.6.0)
     54                 * @since 1.6.0
    6055                 */
    6156                do_action( 'bp_activity_comment_options' ); ?>
     
    7166 * Fires after the display of an activity comment.
    7267 *
    73  * @since BuddyPress (1.5.0)
     68 * @since 1.5.0
    7469 */
    7570do_action( 'bp_after_activity_comment' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/activity/entry.php

    r9819 r10150  
    11<?php
    2 
    32/**
    43 * BuddyPress - Activity Stream (Single Item)
     
    1110 */
    1211
    13 ?>
    14 
    15 <?php
    16 
    1712/**
    1813 * Fires before the display of an activity entry.
    1914 *
    20  * @since BuddyPress (1.2.0)
     15 * @since 1.2.0
    2116 */
    2217do_action( 'bp_before_activity_entry' ); ?>
     
    5449                 * Fires after the display of an activity entry content.
    5550                 *
    56                  * @since BuddyPress (1.2.0)
     51                 * @since 1.2.0
    5752                 */
    5853                do_action( 'bp_activity_entry_content' ); ?>
     
    9590                                 * Fires at the end of the activity entry meta data area.
    9691                                 *
    97                                  * @since BuddyPress (1.2.0)
     92                                 * @since 1.2.0
    9893                                 */
    9994                                do_action( 'bp_activity_entry_meta' ); ?>
     
    110105         * Fires before the display of the activity entry comments.
    111106         *
    112          * @since BuddyPress (1.2.0)
     107         * @since 1.2.0
    113108         */
    114109        do_action( 'bp_before_activity_entry_comments' ); ?>
     
    137132                                         * Fires after the activity entry comment form.
    138133                                         *
    139                                          * @since BuddyPress (1.5.0)
     134                                         * @since 1.5.0
    140135                                         */
    141136                                        do_action( 'bp_activity_entry_comments' ); ?>
     
    156151         * Fires after the display of the activity entry comments.
    157152         *
    158          * @since BuddyPress (1.2.0)
     153         * @since 1.2.0
    159154         */
    160155        do_action( 'bp_after_activity_entry_comments' ); ?>
     
    167162 * Fires after the display of an activity entry.
    168163 *
    169  * @since BuddyPress (1.2.0)
     164 * @since 1.2.0
    170165 */
    171166do_action( 'bp_after_activity_entry' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/activity/index.php

    r9896 r10150  
    11<?php
     2/**
     3 * BuddyPress Activity templates
     4 *
     5 * @since      2.3.0
     6 * @package    BuddyPress
     7 * @subpackage BuddyPressActivity
     8 */
    29
    310/**
    411 * Fires before the activity directory listing.
    512 *
    6  * @since BuddyPress (1.5.0)
     13 * @since 1.5.0
    714 */
    815do_action( 'bp_before_directory_activity' ); ?>
     
    1522         * Fires before the activity directory display content.
    1623         *
    17          * @since BuddyPress (1.2.0)
     24         * @since 1.2.0
    1825         */
    1926        do_action( 'bp_before_directory_activity_content' ); ?>
     
    3037         * Fires towards the top of template pages for notice display.
    3138         *
    32          * @since BuddyPress (1.0.0)
     39         * @since 1.0.0
    3340         */
    3441        do_action( 'template_notices' ); ?>
     
    4148                         * Fires before the listing of activity type tabs.
    4249                         *
    43                          * @since BuddyPress (1.2.0)
     50                         * @since 1.2.0
    4451                         */
    4552                        do_action( 'bp_before_activity_type_tab_all' ); ?>
     
    5461                                 * Fires before the listing of friends activity type tab.
    5562                                 *
    56                                  * @since BuddyPress (1.2.0)
     63                                 * @since 1.2.0
    5764                                 */
    5865                                do_action( 'bp_before_activity_type_tab_friends' ); ?>
     
    7380                                 * Fires before the listing of groups activity type tab.
    7481                                 *
    75                                  * @since BuddyPress (1.2.0)
     82                                 * @since 1.2.0
    7683                                 */
    7784                                do_action( 'bp_before_activity_type_tab_groups' ); ?>
     
    9299                                 * Fires before the listing of favorites activity type tab.
    93100                                 *
    94                                  * @since BuddyPress (1.2.0)
     101                                 * @since 1.2.0
    95102                                 */
    96103                                do_action( 'bp_before_activity_type_tab_favorites' ); ?>
     
    109116                                         * Fires before the listing of mentions activity type tab.
    110117                                         *
    111                                          * @since BuddyPress (1.2.0)
     118                                         * @since 1.2.0
    112119                                         */
    113120                                        do_action( 'bp_before_activity_type_tab_mentions' ); ?>
     
    124131                         * Fires after the listing of activity type tabs.
    125132                         *
    126                          * @since BuddyPress (1.2.0)
     133                         * @since 1.2.0
    127134                         */
    128135                        do_action( 'bp_activity_type_tabs' ); ?>
     
    139146                         * Fires before the display of the activity syndication options.
    140147                         *
    141                          * @since BuddyPress (1.2.0)
     148                         * @since 1.2.0
    142149                         */
    143150                        do_action( 'bp_activity_syndication_options' ); ?>
     
    155162                                         * Fires inside the select input for activity filter by options.
    156163                                         *
    157                                          * @since BuddyPress (1.2.0)
     164                                         * @since 1.2.0
    158165                                         */
    159166                                        do_action( 'bp_activity_filter_options' ); ?>
     
    169176         * Fires before the display of the activity list.
    170177         *
    171          * @since BuddyPress (1.5.0)
     178         * @since 1.5.0
    172179         */
    173180        do_action( 'bp_before_directory_activity_list' ); ?>
     
    184191         * Fires after the display of the activity list.
    185192         *
    186          * @since BuddyPress (1.5.0)
     193         * @since 1.5.0
    187194         */
    188195        do_action( 'bp_after_directory_activity_list' ); ?>
     
    200207         * Fires after the activity directory display content.
    201208         *
    202          * @since BuddyPress (1.2.0)
     209         * @since 1.2.0
    203210         */
    204211        do_action( 'bp_after_directory_activity_content' ); ?>
     
    209216         * Fires after the activity directory listing.
    210217         *
    211          * @since BuddyPress (1.5.0)
     218         * @since 1.5.0
    212219         */
    213220        do_action( 'bp_after_directory_activity' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/activity/post-form.php

    r10085 r10150  
    11<?php
    2 
    32/**
    43 * BuddyPress - Activity Post Form
     
    1716         * Fires before the activity post form.
    1817         *
    19          * @since BuddyPress (1.2.0)
     18         * @since 1.2.0
    2019         */
    2120        do_action( 'bp_before_activity_post_form' ); ?>
     
    8079                         * Fires at the end of the activity post form markup.
    8180                         *
    82                          * @since BuddyPress (1.2.0)
     81                         * @since 1.2.0
    8382                         */
    8483                        do_action( 'bp_activity_post_form_options' ); ?>
     
    9392         * Fires after the activity post form.
    9493         *
    95          * @since BuddyPress (1.2.0)
     94         * @since 1.2.0
    9695         */
    9796        do_action( 'bp_after_activity_post_form' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/activity/single/home.php

    r9896 r10150  
     1<?php
     2/**
     3 * BuddyPress - Home
     4 *
     5 * @package BuddyPress
     6 * @subpackage bp-legacy
     7 */
     8
     9?>
    110<div id="buddypress">
    211        <?php
  • trunk/src/bp-templates/bp-legacy/buddypress/assets/_attachments/avatars/camera.php

    r9860 r10150  
    55 * This template is used to create the camera Backbone views
    66 *
    7  * @since 2.3
     7 * @since 2.3.0
    88 *
    99 * @package BuddyPress
    1010 * @subpackage bp-attachments
    1111 */
     12
    1213?>
    1314<script id="tmpl-bp-avatar-webcam" type="text/html">
  • trunk/src/bp-templates/bp-legacy/buddypress/assets/_attachments/avatars/crop.php

    r9819 r10150  
    55 * This template is used to create the crop Backbone views
    66 *
    7  * @since 2.3
     7 * @since 2.3.0
    88 *
    99 * @package BuddyPress
    1010 * @subpackage bp-attachments
    1111 */
     12
    1213?>
    1314<script id="tmpl-bp-avatar-item" type="text/html">
  • trunk/src/bp-templates/bp-legacy/buddypress/assets/_attachments/avatars/index.php

    r9819 r10150  
    77 * It's also used to create the common Backbone views
    88 *
    9  * @since 2.3
     9 * @since 2.3.0
    1010 *
    1111 * @package BuddyPress
    1212 * @subpackage bp-attachments
    1313 */
    14 
    1514
    1615/**
  • trunk/src/bp-templates/bp-legacy/buddypress/assets/_attachments/uploader.php

    r10051 r10150  
    55 * This template is used to create the BuddyPress Uploader Backbone views
    66 *
    7  * @since 2.3
     7 * @since 2.3.0
    88 *
    99 * @package BuddyPress
    1010 * @subpackage bp-attachments
    1111 */
     12
    1213?>
    1314<script type="text/html" id="tmpl-upload-window">
  • trunk/src/bp-templates/bp-legacy/buddypress/blogs/blogs-loop.php

    r9896 r10150  
    11<?php
    2 
    32/**
    43 * BuddyPress - Blogs Loop
     
    109 */
    1110
    12 ?>
    13 
    14 <?php
    15 
    1611/**
    1712 * Fires before the start of the blogs loop.
    1813 *
    19  * @since BuddyPress (1.2.0)
     14 * @since 1.2.0
    2015 */
    2116do_action( 'bp_before_blogs_loop' ); ?>
     
    4035         * Fires before the blogs directory list.
    4136         *
    42          * @since BuddyPress (1.1.0)
     37         * @since 1.1.0
    4338         */
    4439        do_action( 'bp_before_directory_blogs_list' ); ?>
     
    6257                                 * Fires after the listing of a blog item in the blogs loop.
    6358                                 *
    64                                  * @since BuddyPress (1.2.0)
     59                                 * @since 1.2.0
    6560                                 */
    6661                                do_action( 'bp_directory_blogs_item' ); ?>
     
    7469                                 * Fires inside the blogs action listing area.
    7570                                 *
    76                                  * @since BuddyPress (1.1.0)
     71                                 * @since 1.1.0
    7772                                 */
    7873                                do_action( 'bp_directory_blogs_actions' ); ?>
     
    9893         * Fires after the blogs directory list.
    9994         *
    100          * @since BuddyPress (1.1.0)
     95         * @since 1.1.0
    10196         */
    10297        do_action( 'bp_after_directory_blogs_list' ); ?>
     
    133128 * Fires after the display of the blogs loop.
    134129 *
    135  * @since BuddyPress (1.2.0)
     130 * @since 1.2.0
    136131 */
    137132do_action( 'bp_after_blogs_loop' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/blogs/create.php

    r9819 r10150  
    11<?php
     2/**
     3 * BuddyPress - Blogs Create
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/**
    49 * Fires at the top of the blog creation template file.
    510 *
    6  * @since BuddyPress (1.6.0)
     11 * @since 1.6.0
    712 */
    813do_action( 'bp_before_create_blog_content_template' ); ?>
     
    1823 * Fires before the display of the blog creation form.
    1924 *
    20  * @since BuddyPress (1.1.0)
     25 * @since 1.1.0
    2126 */
    2227do_action( 'bp_before_create_blog_content' ); ?>
     
    3944 * Fires after the display of the blog creation form.
    4045 *
    41  * @since BuddyPress (1.1.0)
     46 * @since 1.1.0
    4247 */
    4348do_action( 'bp_after_create_blog_content' ); ?>
     
    4853 * Fires at the bottom of the blog creation template file.
    4954 *
    50  * @since BuddyPress (1.6.0)
     55 * @since 1.6.0
    5156 */
    5257do_action( 'bp_after_create_blog_content_template' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/blogs/index.php

    r9891 r10150  
    11<?php
     2/**
     3 * BuddyPress - Blogs
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/**
    49 * Fires at the top of the blogs directory template file.
    510 *
    6  * @since BuddyPress (2.3.0)
     11 * @since 2.3.0
    712 */
    813do_action( 'bp_before_directory_blogs_page' ); ?>
     
    1520         * Fires before the display of the blogs
    1621         *
    17          * @since BuddyPress (1.5.0)
     22         * @since 1.5.0
    1823         */
    1924        do_action( 'bp_before_directory_blogs' ); ?>
     
    2429         * Fires before the display of the blogs listing content.
    2530         *
    26          * @since BuddyPress (1.1.0)
     31         * @since 1.1.0
    2732         */
    2833        do_action( 'bp_before_directory_blogs_content' ); ?>
     
    3742         * Fires before the display of the blogs list tabs.
    3843         *
    39          * @since BuddyPress (2.3.0)
     44         * @since 2.3.0
    4045         */
    4146        do_action( 'bp_before_directory_blogs_tabs' ); ?>
     
    5863                                 * Fires inside the unordered list displaying blog types.
    5964                                 *
    60                                  * @since BuddyPress (1.2.0)
     65                                 * @since 1.2.0
    6166                                 */
    6267                                do_action( 'bp_blogs_directory_blog_types' ); ?>
     
    7378                                 * Fires inside the unordered list displaying blog sub-types.
    7479                                 *
    75                                  * @since BuddyPress (1.5.0)
     80                                 * @since 1.5.0
    7681                                 */
    7782                                do_action( 'bp_blogs_directory_blog_sub_types' ); ?>
     
    9095                                                 * Fires inside the select input listing blogs orderby options.
    9196                                                 *
    92                                                  * @since BuddyPress (1.2.0)
     97                                                 * @since 1.2.0
    9398                                                 */
    9499                                                do_action( 'bp_blogs_directory_order_options' ); ?>
     
    110115                 * Fires inside and displays the blogs content.
    111116                 *
    112                  * @since BuddyPress (1.1.0)
     117                 * @since 1.1.0
    113118                 */
    114119                do_action( 'bp_directory_blogs_content' ); ?>
     
    121126                 * Fires after the display of the blogs listing content.
    122127                 *
    123                  * @since BuddyPress (1.1.0)
     128                 * @since 1.1.0
    124129                 */
    125130                do_action( 'bp_after_directory_blogs_content' ); ?>
     
    132137         * Fires at the bottom of the blogs directory template file.
    133138         *
    134          * @since BuddyPress (1.5.0)
     139         * @since 1.5.0
    135140         */
    136141        do_action( 'bp_after_directory_blogs' ); ?>
     
    143148 * Fires at the bottom of the blogs directory template file.
    144149 *
    145  * @since BuddyPress (2.3.0)
     150 * @since 2.3.0
    146151 */
    147152do_action( 'bp_after_directory_blogs_page' );
  • trunk/src/bp-templates/bp-legacy/buddypress/forums/forums-loop.php

    r9819 r10150  
    11<?php
    2 
    32/**
    43 * BuddyPress - Forums Loop
     
    1716 * Fires at the start of the forums loop.
    1817 *
    19  * @since BuddyPress (1.2.6)
     18 * @since 1.2.6
    2019 */
    2120do_action( 'bp_before_forums_loop' ); ?>
     
    4443         * Fires before the display of the forums list.
    4544         *
    46          * @since BuddyPress (1.1.0)
     45         * @since 1.1.0
    4746         */
    4847        do_action( 'bp_before_directory_forums_list' ); ?>
     
    6059                                 * Fires at the end of <tr> row holding the <th> tags.
    6160                                 *
    62                                  * @since BuddyPress (1.2.4)
     61                                 * @since 1.2.4
    6362                                 */
    6463                                do_action( 'bp_directory_forums_extra_cell_head' ); ?>
     
    118117                                 * Fires at the end of <tr> row holding the <td> tags.
    119118                                 *
    120                                  * @since BuddyPress (1.1.0)
     119                                 * @since 1.1.0
    121120                                 */
    122121                                do_action( 'bp_directory_forums_extra_cell' ); ?>
     
    129128                                 * Fires after the <tr> for a forum listing display.
    130129                                 *
    131                                  * @since BuddyPress (1.1.0)
     130                                 * @since 1.1.0
    132131                                 */
    133132                                do_action( 'bp_directory_forums_extra_row' ); ?>
     
    143142         * Fires after the display of the forums list.
    144143         *
    145          * @since BuddyPress (1.1.0)
     144         * @since 1.1.0
    146145         */
    147146        do_action( 'bp_after_directory_forums_list' ); ?>
     
    172171 * Fires at the end of the forums loop.
    173172 *
    174  * @since BuddyPress (1.2.6)
     173 * @since 1.2.6
    175174 */
    176175do_action( 'bp_after_forums_loop' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/forums/index.php

    r10101 r10150  
    66         * Fires at the start of the forums template.
    77         *
    8          * @since BuddyPress (1.5.0)
     8         * @since 1.5.0
    99         */
    1010        do_action( 'bp_before_directory_forums' ); ?>
     
    1717                 * Fires before the display of the forums content.
    1818                 *
    19                  * @since BuddyPress (1.1.0)
     19                 * @since 1.1.0
    2020                 */
    2121                do_action( 'bp_before_directory_forums_content' ); ?>
     
    3333         * Fires before the display of the forum topics.
    3434         *
    35          * @since BuddyPress (1.5.0)
     35         * @since 1.5.0
    3636         */
    3737        do_action( 'bp_before_topics' ); ?>
     
    5454                                 * Fires inside the forum group types list.
    5555                                 *
    56                                  * @since BuddyPress (1.2.0)
     56                                 * @since 1.2.0
    5757                                 */
    5858                                do_action( 'bp_forums_directory_group_types' ); ?>
     
    6969                                 * Fires inside the forum group sub-types list.
    7070                                 *
    71                                  * @since BuddyPress (1.5.0)
     71                                 * @since 1.5.0
    7272                                 */
    7373                                do_action( 'bp_forums_directory_group_sub_types' ); ?>
     
    8686                                                 * Fires inside the select input for forums order options.
    8787                                                 *
    88                                                  * @since BuddyPress (1.2.0)
     88                                                 * @since 1.2.0
    8989                                                 */
    9090                                                do_action( 'bp_forums_directory_order_options' ); ?>
     
    106106                 * Fires and displays the forums content.
    107107                 *
    108                  * @since BuddyPress (1.1.0)
     108                 * @since 1.1.0
    109109                 */
    110110                do_action( 'bp_directory_forums_content' ); ?>
     
    119119         * Fires after the display of the forums.
    120120         *
    121          * @since BuddyPress (1.5.0)
     121         * @since 1.5.0
    122122         */
    123123        do_action( 'bp_after_directory_forums' ); ?>
     
    128128         * Fires before the display of the new topic form.
    129129         *
    130          * @since BuddyPress (1.5.0)
     130         * @since 1.5.0
    131131         */
    132132        do_action( 'bp_before_new_topic_form' ); ?>
     
    145145                                         * Fires inside the new topic form tag and before input display.
    146146                                         *
    147                                          * @since BuddyPress (1.0.0)
     147                                         * @since 1.0.0
    148148                                         */
    149149                                        do_action( 'groups_forum_new_topic_before' ); ?>
     
    188188                                         * Fires before the new topic form submit actions.
    189189                                         *
    190                                          * @since BuddyPress (1.0.0)
     190                                         * @since 1.0.0
    191191                                         */
    192192                                        do_action( 'groups_forum_new_topic_after' ); ?>
     
    219219         * Fires after the display of the new topic form.
    220220         *
    221          * @since BuddyPress (1.5.0)
     221         * @since 1.5.0
    222222         */
    223223        do_action( 'bp_after_new_topic_form' ); ?>
     
    228228         * Fires before the display of the forums content.
    229229         *
    230          * @since BuddyPress (1.1.0)
     230         * @since 1.1.0
    231231         */
    232232        do_action( 'bp_after_directory_forums_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/create.php

    r10129 r10150  
    11<?php
     2/**
     3 * BuddyPress - Groups Create
     4 *
     5 * @package    BuddyPress
     6 * @subpackage bp-legacy
     7 */
    28
    39/**
    410 * Fires at the top of the groups creation template file.
    511 *
    6  * @since BuddyPress (1.7.0)
     12 * @since 1.7.0
    713 */
    814do_action( 'bp_before_create_group_page' ); ?>
     
    1521         * Fires before the display of group creation content.
    1622         *
    17          * @since BuddyPress (1.6.0)
     23         * @since 1.6.0
    1824         */
    1925        do_action( 'bp_before_create_group_content_template' ); ?>
     
    2632                 * Fires before the display of group creation.
    2733                 *
    28                  * @since BuddyPress (1.2.0)
     34                 * @since 1.2.0
    2935                 */
    3036                do_action( 'bp_before_create_group' ); ?>
     
    5359                                 * Fires before the display of the group details creation step.
    5460                                 *
    55                                  * @since BuddyPress (1.1.0)
     61                                 * @since 1.1.0
    5662                                 */
    5763                                do_action( 'bp_before_group_details_creation_step' ); ?>
     
    7278                                 * Fires after the display of the group details creation step.
    7379                                 *
    74                                  * @since BuddyPress (1.1.0)
     80                                 * @since 1.1.0
    7581                                 */
    7682                                do_action( 'bp_after_group_details_creation_step' );
     
    8995                                 * Fires before the display of the group settings creation step.
    9096                                 *
    91                                  * @since BuddyPress (1.1.0)
     97                                 * @since 1.1.0
    9298                                 */
    9399                                do_action( 'bp_before_group_settings_creation_step' ); ?>
     
    163169                                 * Fires after the display of the group settings creation step.
    164170                                 *
    165                                  * @since BuddyPress (1.1.0)
     171                                 * @since 1.1.0
    166172                                 */
    167173                                do_action( 'bp_after_group_settings_creation_step' ); ?>
     
    179185                                 * Fires before the display of the group avatar creation step.
    180186                                 *
    181                                  * @since BuddyPress (1.1.0)
     187                                 * @since 1.1.0
    182188                                 */
    183189                                do_action( 'bp_before_group_avatar_creation_step' ); ?>
     
    207213                                         * Load the Avatar UI templates
    208214                                         *
    209                                          * @since  BuddyPress (2.3.0)
     215                                         * @since 2.3.0
    210216                                         */
    211217                                        bp_avatar_get_templates(); ?>
     
    239245                                 * Fires after the display of the group avatar creation step.
    240246                                 *
    241                                  * @since BuddyPress (1.1.0)
     247                                 * @since 1.1.0
    242248                                 */
    243249                                do_action( 'bp_after_group_avatar_creation_step' ); ?>
     
    255261                                 * Fires before the display of the group invites creation step.
    256262                                 *
    257                                  * @since BuddyPress (1.1.0)
     263                                 * @since 1.1.0
    258264                                 */
    259265                                do_action( 'bp_before_group_invites_creation_step' ); ?>
     
    323329                                 * Fires after the display of the group invites creation step.
    324330                                 *
    325                                  * @since BuddyPress (1.1.0)
     331                                 * @since 1.1.0
    326332                                 */
    327333                                do_action( 'bp_after_group_invites_creation_step' ); ?>
     
    336342                         * Allows plugins to add custom group creation steps.
    337343                         *
    338                          * @since BuddyPress (1.1.0)
     344                         * @since 1.1.0
    339345                         */
    340346                        do_action( 'groups_custom_create_steps' ); ?>
     
    345351                         * Fires before the display of the group creation step buttons.
    346352                         *
    347                          * @since BuddyPress (1.1.0)
     353                         * @since 1.1.0
    348354                         */
    349355                        do_action( 'bp_before_group_creation_step_buttons' ); ?>
     
    389395                         * Fires after the display of the group creation step buttons.
    390396                         *
    391                          * @since BuddyPress (1.1.0)
     397                         * @since 1.1.0
    392398                         */
    393399                        do_action( 'bp_after_group_creation_step_buttons' ); ?>
     
    401407                         * Fires and displays the groups directory content.
    402408                         *
    403                          * @since BuddyPress (1.1.0)
     409                         * @since 1.1.0
    404410                         */
    405411                        do_action( 'bp_directory_groups_content' ); ?>
     
    412418                 * Fires after the display of group creation.
    413419                 *
    414                  * @since BuddyPress (1.2.0)
     420                 * @since 1.2.0
    415421                 */
    416422                do_action( 'bp_after_create_group' ); ?>
     
    423429         * Fires after the display of group creation content.
    424430         *
    425          * @since BuddyPress (1.6.0)
     431         * @since 1.6.0
    426432         */
    427433        do_action( 'bp_after_create_group_content_template' ); ?>
     
    434440 * Fires at the bottom of the groups creation template file.
    435441 *
    436  * @since BuddyPress (1.7.0)
     442 * @since 1.7.0
    437443 */
    438444do_action( 'bp_after_create_group_page' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/groups-loop.php

    r9896 r10150  
    11<?php
    2 
    32/**
    43 * BuddyPress - Groups Loop
     
    1716 * Fires before the display of groups from the groups loop.
    1817 *
    19  * @since BuddyPress (1.2.0)
     18 * @since 1.2.0
    2019 */
    2120do_action( 'bp_before_groups_loop' ); ?>
     
    4443         * Fires before the listing of the groups list.
    4544         *
    46          * @since BuddyPress (1.1.0)
     45         * @since 1.1.0
    4746         */
    4847        do_action( 'bp_before_directory_groups_list' ); ?>
     
    7069                                 * Fires inside the listing of an individual group listing item.
    7170                                 *
    72                                  * @since BuddyPress (1.1.0)
     71                                 * @since 1.1.0
    7372                                 */
    7473                                do_action( 'bp_directory_groups_item' ); ?>
     
    8382                                 * Fires inside the action section of an individual group listing item.
    8483                                 *
    85                                  * @since BuddyPress (1.1.0)
     84                                 * @since 1.1.0
    8685                                 */
    8786                                do_action( 'bp_directory_groups_actions' ); ?>
     
    107106         * Fires after the listing of the groups list.
    108107         *
    109          * @since BuddyPress (1.1.0)
     108         * @since 1.1.0
    110109         */
    111110        do_action( 'bp_after_directory_groups_list' ); ?>
     
    140139 * Fires after the display of groups from the groups loop.
    141140 *
    142  * @since BuddyPress (1.2.0)
     141 * @since 1.2.0
    143142 */
    144143do_action( 'bp_after_groups_loop' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/index.php

    r9890 r10150  
    11<?php
     2/**
     3 * BuddyPress - Groups
     4 *
     5 * @package    BuddyPress
     6 * @subpackage bp-legacy
     7 */
    28
    39/**
    410 * Fires at the top of the groups directory template file.
    511 *
    6  * @since BuddyPress (1.5.0)
     12 * @since 1.5.0
    713 */
    814do_action( 'bp_before_directory_groups_page' ); ?>
     
    1521         * Fires before the display of the groups.
    1622         *
    17          * @since BuddyPress (1.1.0)
     23         * @since 1.1.0
    1824         */
    1925        do_action( 'bp_before_directory_groups' ); ?>
     
    2430         * Fires before the display of the groups content.
    2531         *
    26          * @since BuddyPress (1.1.0)
     32         * @since 1.1.0
    2733         */
    2834        do_action( 'bp_before_directory_groups_content' ); ?>
     
    5258                                 * Fires inside the groups directory group filter input.
    5359                                 *
    54                                  * @since BuddyPress (1.5.0)
     60                                 * @since 1.5.0
    5561                                 */
    5662                                do_action( 'bp_groups_directory_group_filter' ); ?>
     
    6672                                 * Fires inside the groups directory group types.
    6773                                 *
    68                                  * @since BuddyPress (1.2.0)
     74                                 * @since 1.2.0
    6975                                 */
    7076                                do_action( 'bp_groups_directory_group_types' ); ?>
     
    8591                                                 * Fires inside the groups directory group order options.
    8692                                                 *
    87                                                  * @since BuddyPress (1.2.0)
     93                                                 * @since 1.2.0
    8894                                                 */
    8995                                                do_action( 'bp_groups_directory_order_options' ); ?>
     
    102108                 * Fires and displays the group content.
    103109                 *
    104                  * @since BuddyPress (1.1.0)
     110                 * @since 1.1.0
    105111                 */
    106112                do_action( 'bp_directory_groups_content' ); ?>
     
    113119                 * Fires after the display of the groups content.
    114120                 *
    115                  * @since BuddyPress (1.1.0)
     121                 * @since 1.1.0
    116122                 */
    117123                do_action( 'bp_after_directory_groups_content' ); ?>
     
    124130         * Fires after the display of the groups.
    125131         *
    126          * @since BuddyPress (1.1.0)
     132         * @since 1.1.0
    127133         */
    128134        do_action( 'bp_after_directory_groups' ); ?>
     
    135141 * Fires at the bottom of the groups directory template file.
    136142 *
    137  * @since BuddyPress (1.5.0)
     143 * @since 1.5.0
    138144 */
    139145do_action( 'bp_after_directory_groups_page' );
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/single/activity.php

    r9896 r10150  
    88                 * Fires inside the syndication options list, after the RSS option.
    99                 *
    10                  * @since BuddyPress (1.2.0)
     10                 * @since 1.2.0
    1111                 */
    1212                do_action( 'bp_group_activity_syndication_options' ); ?>
     
    2424                                 * Fires inside the select input for group activity filter options.
    2525                                 *
    26                                  * @since BuddyPress (1.2.0)
     26                                 * @since 1.2.0
    2727                                 */
    2828                                do_action( 'bp_group_activity_filter_options' ); ?>
     
    3737 * Fires before the display of the group activity post form.
    3838 *
    39  * @since BuddyPress (1.2.0)
     39 * @since 1.2.0
    4040 */
    4141do_action( 'bp_before_group_activity_post_form' ); ?>
     
    5252 * Fires after the display of the group activity post form.
    5353 *
    54  * @since BuddyPress (1.2.0)
     54 * @since 1.2.0
    5555 */
    5656do_action( 'bp_after_group_activity_post_form' ); ?>
     
    6060 * Fires before the display of the group activities list.
    6161 *
    62  * @since BuddyPress (1.2.0)
     62 * @since 1.2.0
    6363 */
    6464do_action( 'bp_before_group_activity_content' ); ?>
     
    7575 * Fires after the display of the group activities list.
    7676 *
    77  * @since BuddyPress (1.2.0)
     77 * @since 1.2.0
    7878 */
    7979do_action( 'bp_after_group_activity_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/single/admin.php

    r10128 r10150  
    1212 * Fires inside the group admin form and before the content.
    1313 *
    14  * @since BuddyPress (1.1.0)
     14 * @since 1.1.0
    1515 */
    1616do_action( 'bp_before_group_admin_content' ); ?>
     
    2424         * Fires before the display of group admin details.
    2525         *
    26          * @since BuddyPress (1.1.0)
     26         * @since 1.1.0
    2727         */
    2828        do_action( 'bp_before_group_details_admin' ); ?>
     
    3939         * Fires after the group description admin details.
    4040         *
    41          * @since BuddyPress (1.0.0)
     41         * @since 1.0.0
    4242         */
    4343        do_action( 'groups_custom_group_fields_editable' ); ?>
     
    5454         * Fires after the display of group admin details.
    5555         *
    56          * @since BuddyPress (1.1.0)
     56         * @since 1.1.0
    5757         */
    5858        do_action( 'bp_after_group_details_admin' ); ?>
     
    7171         * Fires before the group settings admin display.
    7272         *
    73          * @since BuddyPress (1.1.0)
     73         * @since 1.1.0
    7474         */
    7575        do_action( 'bp_before_group_settings_admin' ); ?>
     
    142142         * Fires after the group settings admin display.
    143143         *
    144          * @since BuddyPress (1.1.0)
     144         * @since 1.1.0
    145145         */
    146146        do_action( 'bp_after_group_settings_admin' ); ?>
     
    176176                         * Load the Avatar UI templates
    177177                         *
    178                          * @since  BuddyPress (2.3.0)
     178                         * @since  2.3.0
    179179                         */
    180180                        bp_avatar_get_templates(); ?>
     
    216216         * Fires before the group manage members admin display.
    217217         *
    218          * @since BuddyPress (1.1.0)
     218         * @since 1.1.0
    219219         */
    220220        do_action( 'bp_before_group_manage_members_admin' ); ?>
     
    327327                                                                 * Fires inside the display of a member admin item in group management area.
    328328                                                                 *
    329                                                                  * @since BuddyPress (1.1.0)
     329                                                                 * @since 1.1.0
    330330                                                                 */
    331331                                                                do_action( 'bp_group_manage_members_admin_item' ); ?>
     
    353353         * Fires after the group manage members admin display.
    354354         *
    355          * @since BuddyPress (1.1.0)
     355         * @since 1.1.0
    356356         */
    357357        do_action( 'bp_after_group_manage_members_admin' ); ?>
     
    367367         * Fires before the display of group membership requests admin.
    368368         *
    369          * @since BuddyPress (1.1.0)
     369         * @since 1.1.0
    370370         */
    371371        do_action( 'bp_before_group_membership_requests_admin' ); ?>
     
    382382         * Fires after the display of group membership requests admin.
    383383         *
    384          * @since BuddyPress (1.1.0)
     384         * @since 1.1.0
    385385         */
    386386        do_action( 'bp_after_group_membership_requests_admin' ); ?>
     
    395395 * Allows plugins to add custom group edit screens.
    396396 *
    397  * @since BuddyPress (1.1.0)
     397 * @since 1.1.0
    398398 */
    399399do_action( 'groups_custom_edit_steps' ); ?>
     
    407407         * Fires before the display of group delete admin.
    408408         *
    409          * @since BuddyPress (1.1.0)
     409         * @since 1.1.0
    410410         */
    411411        do_action( 'bp_before_group_delete_admin' ); ?>
     
    422422         * Fires after the display of group delete admin.
    423423         *
    424          * @since BuddyPress (1.1.0)
     424         * @since 1.1.0
    425425         */
    426426        do_action( 'bp_after_group_delete_admin' ); ?>
     
    442442 * Fires inside the group admin form and after the content.
    443443 *
    444  * @since BuddyPress (1.1.0)
     444 * @since 1.1.0
    445445 */
    446446do_action( 'bp_after_group_admin_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/single/forum.php

    r10102 r10150  
    11<?php
     2/**
     3 * BuddyPress - Groups Single Forum
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/**
    49 * Fires before the display of a group's forum content.
    510 *
    6  * @since BuddyPress (1.2.0)
     11 * @since 1.2.0
    712 */
    813do_action( 'bp_before_group_forum_content' );
     
    7176 * Fires after the display of a group's forum content.
    7277 *
    73  * @since BuddyPress (1.2.0)
     78 * @since 1.2.0
    7479 */
    7580do_action( 'bp_after_group_forum_content' ); ?>
     
    8792                                 * Fires before the display of a group forum new post form.
    8893                                 *
    89                                  * @since BuddyPress (1.2.0)
     94                                 * @since 1.2.0
    9095                                 */
    9196                                do_action( 'bp_before_group_forum_post_new' ); ?>
     
    112117                                 * Fires after the display of a group forum new post form.
    113118                                 *
    114                                  * @since BuddyPress (1.2.0)
     119                                 * @since 1.2.0
    115120                                 */
    116121                                do_action( 'bp_after_group_forum_post_new' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/single/forum/edit.php

    r10104 r10150  
    11<?php
     2/**
     3 * BuddyPress - Groups Single Forum Edit
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/**
    49 * Fires at the top of the group forum edit form.
    510 *
    6  * @since BuddyPress (1.2.4)
     11 * @since 1.2.4
    712 */
    813do_action( 'bp_before_group_forum_edit_form' ); ?>
     
    4752                         * Fires at the end of the group forum topic meta section.
    4853                         *
    49                          * @since BuddyPress (1.2.5)
     54                         * @since 1.2.5
    5055                         */
    5156                        do_action( 'bp_group_forum_topic_meta' ); ?>
     
    6267                                 * Fires before the group forum topic form fields.
    6368                                 *
    64                                  * @since BuddyPress (1.2.0)
     69                                 * @since 1.2.0
    6570                                 */
    6671                                do_action( 'bp_group_before_edit_forum_topic' ); ?>
     
    8085                                 * Fires after the group forum topic form fields.
    8186                                 *
    82                                  * @since BuddyPress (1.2.0)
     87                                 * @since 1.2.0
    8388                                 */
    8489                                do_action( 'bp_group_after_edit_forum_topic' ); ?>
     
    99104                                 * Fires before the group edit forum textarea.
    100105                                 *
    101                                  * @since BuddyPress (1.2.0)
     106                                 * @since 1.2.0
    102107                                 */
    103108                                do_action( 'bp_group_before_edit_forum_post' ); ?>
     
    110115                                 * Fires after the group edit forum textarea.
    111116                                 *
    112                                  * @since BuddyPress (1.2.0)
     117                                 * @since 1.2.0
    113118                                 */
    114119                                do_action( 'bp_group_after_edit_forum_post' ); ?>
     
    137142 * Fires at the end of the group forum edit form.
    138143 *
    139  * @since BuddyPress (1.2.4)
     144 * @since 1.2.4
    140145 */
    141146do_action( 'bp_after_group_forum_edit_form' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/single/forum/topic.php

    r9896 r10150  
    11<?php
     2/**
     3 * BuddyPress - Groups Single Forum Topic
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/**
    49 * Fires at the top of the group forum topic template.
    510 *
    6  * @since BuddyPress (1.2.4)
     11 * @since 1.2.4
    712 */
    813do_action( 'bp_before_group_forum_topic' ); ?>
     
    5863                 * Fires at the end of the group forum topic meta markup.
    5964                 *
    60                  * @since BuddyPress (1.2.5)
     65                 * @since 1.2.5
    6166                 */
    6267                do_action( 'bp_group_forum_topic_meta' ); ?>
     
    8893                 * Fires before the listing of the group forum topic posts.
    8994                 *
    90                  * @since BuddyPress (1.2.4)
     95                 * @since 1.2.4
    9196                 */
    9297                do_action( 'bp_before_group_forum_topic_posts' ); ?>
     
    117122                                                 * Fires inside the group forum post meta markup.
    118123                                                 *
    119                                                  * @since BuddyPress (1.2.5)
     124                                                 * @since 1.2.5
    120125                                                 */
    121126                                                do_action( 'bp_group_forum_post_meta' ); ?>
     
    133138                 * Fires before the listing of the group forum topic posts.
    134139                 *
    135                  * @since BuddyPress (1.2.4)
     140                 * @since 1.2.4
    136141                 */
    137142                do_action( 'bp_after_group_forum_topic_posts' ); ?>
     
    175180                                         * Fires before the display of the group forum new reply section.
    176181                                         *
    177                                          * @since BuddyPress (1.0.0)
     182                                         * @since 1.0.0
    178183                                         */
    179184                                        do_action( 'groups_forum_new_reply_before' ); ?>
     
    192197                                         * Fires after the display of the group forum new reply section.
    193198                                         *
    194                                          * @since BuddyPress (1.0.0)
     199                                         * @since 1.0.0
    195200                                         */
    196201                                        do_action( 'groups_forum_new_reply_after' ); ?>
     
    218223 * Fires at the end of the group forum topic template.
    219224 *
    220  * @since BuddyPress (1.2.4)
     225 * @since 1.2.4
    221226 */
    222227do_action( 'bp_after_group_forum_topic' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/single/group-header.php

    r9828 r10150  
    11<?php
     2/**
     3 * BuddyPress - Groups Header
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/**
    49 * Fires before the display of a group's header.
    510 *
    6  * @since BuddyPress (1.2.0)
     11 * @since 1.2.0
    712 */
    813do_action( 'bp_before_group_header' );
     
    2126                 * Fires after the display of the group's administrators.
    2227                 *
    23                  * @since BuddyPress (1.1.0)
     28                 * @since 1.1.0
    2429                 */
    2530                do_action( 'bp_after_group_menu_admins' );
     
    3035                         * Fires before the display of the group's moderators, if there are any.
    3136                         *
    32                          * @since BuddyPress (1.1.0)
     37                         * @since 1.1.0
    3338                         */
    3439                        do_action( 'bp_before_group_menu_mods' ); ?>
     
    4146                         * Fires after the display of the group's moderators, if there are any.
    4247                         *
    43                          * @since BuddyPress (1.1.0)
     48                         * @since 1.1.0
    4449                         */
    4550                        do_action( 'bp_after_group_menu_mods' );
     
    7075         * Fires before the display of the group's header meta.
    7176         *
    72          * @since BuddyPress (1.2.0)
     77         * @since 1.2.0
    7378         */
    7479        do_action( 'bp_before_group_header_meta' ); ?>
     
    8590                         * Fires in the group header actions section.
    8691                         *
    87                          * @since BuddyPress (1.2.6)
     92                         * @since 1.2.6
    8893                         */
    8994                        do_action( 'bp_group_header_actions' ); ?>
     
    96101                 * Fires after the group header actions section.
    97102                 *
    98                  * @since BuddyPress (1.2.0)
     103                 * @since 1.2.0
    99104                 */
    100105                do_action( 'bp_group_header_meta' ); ?>
     
    108113 * Fires after the display of a group's header.
    109114 *
    110  * @since BuddyPress (1.2.0)
     115 * @since 1.2.0
    111116 */
    112117do_action( 'bp_after_group_header' );
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/single/home.php

    r9819 r10150  
    88         * Fires before the display of the group home content.
    99         *
    10          * @since BuddyPress (1.2.0)
     10         * @since 1.2.0
    1111         */
    1212        do_action( 'bp_before_group_home_content' ); ?>
     
    2929                                 * Fires after the display of group options navigation.
    3030                                 *
    31                                  * @since BuddyPress (1.2.0)
     31                                 * @since 1.2.0
    3232                                 */
    3333                                do_action( 'bp_group_options_nav' ); ?>
     
    4444                 * Fires before the display of the group home body.
    4545                 *
    46                  * @since BuddyPress (1.2.0)
     46                 * @since 1.2.0
    4747                 */
    4848                do_action( 'bp_before_group_body' );
     
    7777                                         * Fires before the display of the group status message.
    7878                                         *
    79                                          * @since BuddyPress (1.1.0)
     79                                         * @since 1.1.0
    8080                                         */
    8181                                        do_action( 'bp_before_group_status_message' ); ?>
     
    9090                                         * Fires after the display of the group status message.
    9191                                         *
    92                                          * @since BuddyPress (1.1.0)
     92                                         * @since 1.1.0
    9393                                         */
    9494                                        do_action( 'bp_after_group_status_message' );
     
    127127                 * Fires after the display of the group home body.
    128128                 *
    129                  * @since BuddyPress (1.2.0)
     129                 * @since 1.2.0
    130130                 */
    131131                do_action( 'bp_after_group_body' ); ?>
     
    138138         * Fires after the display of the group home content.
    139139         *
    140          * @since BuddyPress (1.2.0)
     140         * @since 1.2.0
    141141         */
    142142        do_action( 'bp_after_group_home_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/single/invites-loop.php

    r9854 r10150  
    2121         * Fires before the display of the group send invites list.
    2222         *
    23          * @since BuddyPress (1.1.0)
     23         * @since 1.1.0
    2424         */
    2525        do_action( 'bp_before_group_send_invites_list' ); ?>
     
    5959                                 * Fires inside the invite item listing.
    6060                                 *
    61                                  * @since BuddyPress (1.1.0)
     61                                 * @since 1.1.0
    6262                                 */
    6363                                do_action( 'bp_group_send_invites_item' ); ?>
     
    7171                                         * Fires inside the action area for a send invites item.
    7272                                         *
    73                                          * @since BuddyPress (1.1.0)
     73                                         * @since 1.1.0
    7474                                         */
    7575                                        do_action( 'bp_group_send_invites_item_action' ); ?>
     
    110110 * Fires after the display of the group send invites list.
    111111 *
    112  * @since BuddyPress (1.1.0)
     112 * @since 1.1.0
    113113 */
    114114do_action( 'bp_after_group_send_invites_list' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/single/members.php

    r9896 r10150  
    66         * Fires before the display of the group members content.
    77         *
    8          * @since BuddyPress (1.1.0)
     8         * @since 1.1.0
    99         */
    1010        do_action( 'bp_before_group_members_content' ); ?>
     
    3131         * Fires before the display of the group members list.
    3232         *
    33          * @since BuddyPress (1.1.0)
     33         * @since 1.1.0
    3434         */
    3535        do_action( 'bp_before_group_members_list' ); ?>
     
    5454                                 * Fires inside the listing of an individual group member listing item.
    5555                                 *
    56                                  * @since BuddyPress (1.1.0)
     56                                 * @since 1.1.0
    5757                                 */
    5858                                do_action( 'bp_group_members_list_item' ); ?>
     
    6969                                                 * Fires inside the action section of an individual group member listing item.
    7070                                                 *
    71                                                  * @since BuddyPress (1.1.0)
     71                                                 * @since 1.1.0
    7272                                                 */
    7373                                                do_action( 'bp_group_members_list_item_action' ); ?>
     
    8787         * Fires after the display of the group members list.
    8888         *
    89          * @since BuddyPress (1.1.0)
     89         * @since 1.1.0
    9090         */
    9191        do_action( 'bp_after_group_members_list' ); ?>
     
    112112         * Fires after the display of the group members content.
    113113         *
    114          * @since BuddyPress (1.1.0)
     114         * @since 1.1.0
    115115         */
    116116        do_action( 'bp_after_group_members_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/single/plugins.php

    r9819 r10150  
    11<?php
     2/**
     3 * BuddyPress - Groups plugins
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/**
    49 * Fires before the display of content for plugins using the BP_Group_Extension.
    510 *
    6  * @since BuddyPress (1.2.0)
     11 * @since 1.2.0
    712 */
    813do_action( 'bp_before_group_plugin_template' ); ?>
     
    1318 * Fires and displays content for plugins using the BP_Group_Extension.
    1419 *
    15  * @since BuddyPress (1.0.0)
     20 * @since 1.0.0
    1621 */
    1722do_action( 'bp_template_content' ); ?>
     
    2227 * Fires after the display of content for plugins using the BP_Group_Extension.
    2328 *
    24  * @since BuddyPress (1.2.0)
     29 * @since 1.2.0
    2530 */
    2631do_action( 'bp_after_group_plugin_template' );
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/single/request-membership.php

    r9819 r10150  
    11<?php
     2/**
     3 * BuddyPress - Groups Request Membership
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/**
    49 * Fires before the display of the group membership request form.
    510 *
    6  * @since BuddyPress (1.1.0)
     11 * @since 1.1.0
    712 */
    813do_action( 'bp_before_group_request_membership_content' ); ?>
     
    2025                 * Fires after the textarea for the group membership request form.
    2126                 *
    22                  * @since BuddyPress (1.1.0)
     27                 * @since 1.1.0
    2328                 */
    2429                do_action( 'bp_group_request_membership_content' ); ?>
     
    3540 * Fires after the display of the group membership request form.
    3641 *
    37  * @since BuddyPress (1.1.0)
     42 * @since 1.1.0
    3843 */
    3944do_action( 'bp_after_group_request_membership_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/single/requests-loop.php

    r9819 r10150  
    3030                                 * Fires inside the groups membership request list loop.
    3131                                 *
    32                                  * @since BuddyPress (1.1.0)
     32                                 * @since 1.1.0
    3333                                 */
    3434                                do_action( 'bp_group_membership_requests_admin_item' ); ?>
     
    4545                                         * Fires inside the list of membership request actions.
    4646                                         *
    47                                          * @since BuddyPress (1.1.0)
     47                                         * @since 1.1.0
    4848                                         */
    4949                                        do_action( 'bp_group_membership_requests_admin_item_action' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/groups/single/send-invites.php

    r9896 r10150  
    11<?php
     2/**
     3 * BuddyPress - Groups Send Invites
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/**
    49 * Fires before the send invites content.
    510 *
    6  * @since BuddyPress (1.1.0)
     11 * @since 1.1.0
    712 */
    813do_action( 'bp_before_group_send_invites_content' ); ?>
     
    5459 * Fires after the send invites content.
    5560 *
    56  * @since BuddyPress (1.2.0)
     61 * @since 1.2.0
    5762 */
    5863do_action( 'bp_after_group_send_invites_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/activate.php

    r9819 r10150  
    66         * Fires before the display of the member activation page.
    77         *
    8          * @since BuddyPress (1.1.0)
     8         * @since 1.1.0
    99         */
    1010        do_action( 'bp_before_activation_page' ); ?>
     
    2222                 * Fires before the display of the member activation page content.
    2323                 *
    24                  * @since BuddyPress (1.1.0)
     24                 * @since 1.1.0
    2525                 */
    2626                do_action( 'bp_before_activate_content' ); ?>
     
    5656                 * Fires after the display of the member activation page content.
    5757                 *
    58                  * @since BuddyPress (1.1.0)
     58                 * @since 1.1.0
    5959                 */
    6060                do_action( 'bp_after_activate_content' ); ?>
     
    6767         * Fires after the display of the member activation page.
    6868         *
    69          * @since BuddyPress (1.1.0)
     69         * @since 1.1.0
    7070         */
    7171        do_action( 'bp_after_activation_page' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/index.php

    r9890 r10150  
    11<?php
     2/**
     3 * BuddyPress - Members
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/**
    49 * Fires at the top of the members directory template file.
    510 *
    6  * @since BuddyPress (1.5.0)
     11 * @since 1.5.0
    712 */
    813do_action( 'bp_before_directory_members_page' ); ?>
     
    1520         * Fires before the display of the members.
    1621         *
    17          * @since BuddyPress (1.1.0)
     22         * @since 1.1.0
    1823         */
    1924        do_action( 'bp_before_directory_members' ); ?>
     
    2429         * Fires before the display of the members content.
    2530         *
    26          * @since BuddyPress (1.1.0)
     31         * @since 1.1.0
    2732         */
    2833        do_action( 'bp_before_directory_members_content' ); ?>
     
    3742         * Fires before the display of the members list tabs.
    3843         *
    39          * @since BuddyPress (1.8.0)
     44         * @since 1.8.0
    4045         */
    4146        do_action( 'bp_before_directory_members_tabs' ); ?>
     
    5661                                 * Fires inside the members directory member types.
    5762                                 *
    58                                  * @since BuddyPress (1.2.0)
     63                                 * @since 1.2.0
    5964                                 */
    6065                                do_action( 'bp_members_directory_member_types' ); ?>
     
    7075                                 * Fires inside the members directory member sub-types.
    7176                                 *
    72                                  * @since BuddyPress (1.5.0)
     77                                 * @since 1.5.0
    7378                                 */
    7479                                do_action( 'bp_members_directory_member_sub_types' ); ?>
     
    8994                                                 * Fires inside the members directory member order options.
    9095                                                 *
    91                                                  * @since BuddyPress (1.2.0)
     96                                                 * @since 1.2.0
    9297                                                 */
    9398                                                do_action( 'bp_members_directory_order_options' ); ?>
     
    106111                 * Fires and displays the members content.
    107112                 *
    108                  * @since BuddyPress (1.1.0)
     113                 * @since 1.1.0
    109114                 */
    110115                do_action( 'bp_directory_members_content' ); ?>
     
    117122                 * Fires after the display of the members content.
    118123                 *
    119                  * @since BuddyPress (1.1.0)
     124                 * @since 1.1.0
    120125                 */
    121126                do_action( 'bp_after_directory_members_content' ); ?>
     
    128133         * Fires after the display of the members.
    129134         *
    130          * @since BuddyPress (1.1.0)
     135         * @since 1.1.0
    131136         */
    132137        do_action( 'bp_after_directory_members' ); ?>
     
    139144 * Fires at the bottom of the members directory template file.
    140145 *
    141  * @since BuddyPress (1.5.0)
     146 * @since 1.5.0
    142147 */
    143148do_action( 'bp_after_directory_members_page' );
  • trunk/src/bp-templates/bp-legacy/buddypress/members/members-loop.php

    r9896 r10150  
    11<?php
    2 
    32/**
    43 * BuddyPress - Members Loop
     
    109 */
    1110
    12 ?>
    13 
    14 <?php
    15 
    1611/**
    1712 * Fires before the display of the members loop.
    1813 *
    19  * @since BuddyPress (1.2.0)
     14 * @since 1.2.0
    2015 */
    2116do_action( 'bp_before_members_loop' ); ?>
     
    4843         * Fires before the display of the members list.
    4944         *
    50          * @since BuddyPress (1.1.0)
     45         * @since 1.1.0
    5146         */
    5247        do_action( 'bp_before_directory_members_list' ); ?>
     
    8075                                 * Fires inside the display of a directory member item.
    8176                                 *
    82                                  * @since BuddyPress (1.1.0)
     77                                 * @since 1.1.0
    8378                                 */
    8479                                do_action( 'bp_directory_members_item' ); ?>
     
    10297                                 * Fires inside the members action HTML markup to display actions.
    10398                                 *
    104                                  * @since BuddyPress (1.1.0)
     99                                 * @since 1.1.0
    105100                                 */
    106101                                do_action( 'bp_directory_members_actions' ); ?>
     
    120115         * Fires after the display of the members list.
    121116         *
    122          * @since BuddyPress (1.1.0)
     117         * @since 1.1.0
    123118         */
    124119        do_action( 'bp_after_directory_members_list' ); ?>
     
    155150 * Fires after the display of the members loop.
    156151 *
    157  * @since BuddyPress (1.2.0)
     152 * @since 1.2.0
    158153 */
    159154do_action( 'bp_after_members_loop' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/register.php

    r10103 r10150  
    66         * Fires at the top of the BuddyPress member registration page template.
    77         *
    8          * @since BuddyPress (1.1.0)
     8         * @since 1.1.0
    99         */
    1010        do_action( 'bp_before_register_page' ); ?>
     
    2424                         * Fires before the display of the registration disabled message.
    2525                         *
    26                          * @since BuddyPress (1.5.0)
     26                         * @since 1.5.0
    2727                         */
    2828                        do_action( 'bp_before_registration_disabled' ); ?>
     
    3535                         * Fires after the display of the registration disabled message.
    3636                         *
    37                          * @since BuddyPress (1.5.0)
     37                         * @since 1.5.0
    3838                         */
    3939                        do_action( 'bp_after_registration_disabled' ); ?>
     
    5454                         * Fires before the display of member registration account details fields.
    5555                         *
    56                          * @since BuddyPress (1.1.0)
     56                         * @since 1.1.0
    5757                         */
    5858                        do_action( 'bp_before_account_details_fields' ); ?>
     
    7070                                 * Fires and displays any member registration username errors.
    7171                                 *
    72                                  * @since BuddyPress (1.1.0)
     72                                 * @since 1.1.0
    7373                                 */
    7474                                do_action( 'bp_signup_username_errors' ); ?>
     
    8181                                 * Fires and displays any member registration email errors.
    8282                                 *
    83                                  * @since BuddyPress (1.1.0)
     83                                 * @since 1.1.0
    8484                                 */
    8585                                do_action( 'bp_signup_email_errors' ); ?>
     
    9292                                 * Fires and displays any member registration password errors.
    9393                                 *
    94                                  * @since BuddyPress (1.1.0)
     94                                 * @since 1.1.0
    9595                                 */
    9696                                do_action( 'bp_signup_password_errors' ); ?>
     
    104104                                 * Fires and displays any member registration password confirmation errors.
    105105                                 *
    106                                  * @since BuddyPress (1.1.0)
     106                                 * @since 1.1.0
    107107                                 */
    108108                                do_action( 'bp_signup_password_confirm_errors' ); ?>
     
    114114                                 * Fires and displays any extra member registration details fields.
    115115                                 *
    116                                  * @since BuddyPress (1.9.0)
     116                                 * @since 1.9.0
    117117                                 */
    118118                                do_action( 'bp_account_details_fields' ); ?>
     
    125125                         * Fires after the display of member registration account details fields.
    126126                         *
    127                          * @since BuddyPress (1.1.0)
     127                         * @since 1.1.0
    128128                         */
    129129                        do_action( 'bp_after_account_details_fields' ); ?>
     
    138138                                 * Fires before the display of member registration xprofile fields.
    139139                                 *
    140                                  * @since BuddyPress (1.2.4)
     140                                 * @since 1.2.4
    141141                                 */
    142142                                do_action( 'bp_before_signup_profile_fields' ); ?>
     
    160160                                                         * Fires before the display of the visibility options for xprofile fields.
    161161                                                         *
    162                                                          * @since BuddyPress (1.7.0)
     162                                                         * @since 1.7.0
    163163                                                         */
    164164                                                        do_action( 'bp_custom_profile_edit_fields_pre_visibility' );
     
    190190                                                         * Fires after the display of the visibility options for xprofile fields.
    191191                                                         *
    192                                                          * @since BuddyPress (1.1.0)
     192                                                         * @since 1.1.0
    193193                                                         */
    194194                                                        do_action( 'bp_custom_profile_edit_fields' ); ?>
     
    209209                                         * Fires and displays any extra member registration xprofile fields.
    210210                                         *
    211                                          * @since BuddyPress (1.9.0)
     211                                         * @since 1.9.0
    212212                                         */
    213213                                        do_action( 'bp_signup_profile_fields' ); ?>
     
    220220                                 * Fires after the display of member registration xprofile fields.
    221221                                 *
    222                                  * @since BuddyPress (1.1.0)
     222                                 * @since 1.1.0
    223223                                 */
    224224                                do_action( 'bp_after_signup_profile_fields' ); ?>
     
    233233                                 * Fires before the display of member registration blog details fields.
    234234                                 *
    235                                  * @since BuddyPress (1.1.0)
     235                                 * @since 1.1.0
    236236                                 */
    237237                                do_action( 'bp_before_blog_details_fields' ); ?>
     
    253253                                                 * Fires and displays any member registration blog URL errors.
    254254                                                 *
    255                                                  * @since BuddyPress (1.1.0)
     255                                                 * @since 1.1.0
    256256                                                 */
    257257                                                do_action( 'bp_signup_blog_url_errors' ); ?>
     
    269269                                                 * Fires and displays any member registration blog title errors.
    270270                                                 *
    271                                                  * @since BuddyPress (1.1.0)
     271                                                 * @since 1.1.0
    272272                                                 */
    273273                                                do_action( 'bp_signup_blog_title_errors' ); ?>
     
    280280                                                 * Fires and displays any member registration blog privacy errors.
    281281                                                 *
    282                                                  * @since BuddyPress (1.1.0)
     282                                                 * @since 1.1.0
    283283                                                 */
    284284                                                do_action( 'bp_signup_blog_privacy_errors' ); ?>
     
    292292                                                 * Fires and displays any extra member registration blog details fields.
    293293                                                 *
    294                                                  * @since BuddyPress (1.9.0)
     294                                                 * @since 1.9.0
    295295                                                 */
    296296                                                do_action( 'bp_blog_details_fields' ); ?>
     
    305305                                 * Fires after the display of member registration blog details fields.
    306306                                 *
    307                                  * @since BuddyPress (1.1.0)
     307                                 * @since 1.1.0
    308308                                 */
    309309                                do_action( 'bp_after_blog_details_fields' ); ?>
     
    316316                         * Fires before the display of the registration submit buttons.
    317317                         *
    318                          * @since BuddyPress (1.1.0)
     318                         * @since 1.1.0
    319319                         */
    320320                        do_action( 'bp_before_registration_submit_buttons' ); ?>
     
    329329                         * Fires after the display of the registration submit buttons.
    330330                         *
    331                          * @since BuddyPress (1.1.0)
     331                         * @since 1.1.0
    332332                         */
    333333                        do_action( 'bp_after_registration_submit_buttons' ); ?>
     
    348348                         * Fires before the display of the registration confirmed messages.
    349349                         *
    350                          * @since BuddyPress (1.5.0)
     350                         * @since 1.5.0
    351351                         */
    352352                        do_action( 'bp_before_registration_confirmed' ); ?>
     
    363363                         * Fires after the display of the registration confirmed messages.
    364364                         *
    365                          * @since BuddyPress (1.5.0)
     365                         * @since 1.5.0
    366366                         */
    367367                        do_action( 'bp_after_registration_confirmed' ); ?>
     
    374374                 * Fires and displays any custom signup steps.
    375375                 *
    376                  * @since BuddyPress (1.1.0)
     376                 * @since 1.1.0
    377377                 */
    378378                do_action( 'bp_custom_signup_steps' ); ?>
     
    387387         * Fires at the bottom of the BuddyPress member registration page template.
    388388         *
    389          * @since BuddyPress (1.1.0)
     389         * @since 1.1.0
    390390         */
    391391        do_action( 'bp_after_register_page' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/activity.php

    r9896 r10150  
    11<?php
    2 
    32/**
    43 * BuddyPress - Users Activity
     
    2726                                 * Fires inside the select input for member activity filter options.
    2827                                 *
    29                                  * @since BuddyPress (1.2.0)
     28                                 * @since 1.2.0
    3029                                 */
    3130                                do_action( 'bp_member_activity_filter_options' ); ?>
     
    4140 * Fires before the display of the member activity post form.
    4241 *
    43  * @since BuddyPress (1.2.0)
     42 * @since 1.2.0
    4443 */
    4544do_action( 'bp_before_member_activity_post_form' ); ?>
     
    5251 * Fires after the display of the member activity post form.
    5352 *
    54  * @since BuddyPress (1.2.0)
     53 * @since 1.2.0
    5554 */
    5655do_action( 'bp_after_member_activity_post_form' );
     
    5958 * Fires before the display of the member activities list.
    6059 *
    61  * @since BuddyPress (1.2.0)
     60 * @since 1.2.0
    6261 */
    6362do_action( 'bp_before_member_activity_content' ); ?>
     
    7473 * Fires after the display of the member activities list.
    7574 *
    76  * @since BuddyPress (1.2.0)
     75 * @since 1.2.0
    7776 */
    7877do_action( 'bp_after_member_activity_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/blogs.php

    r9896 r10150  
    11<?php
    2 
    32/**
    43 * BuddyPress - Users Blogs
     
    2827                                 * Fires inside the members blogs order options select input.
    2928                                 *
    30                                  * @since BuddyPress (1.2.0)
     29                                 * @since 1.2.0
    3130                                 */
    3231                                do_action( 'bp_member_blog_order_options' ); ?>
     
    4645                 * Fires before the display of member blogs content.
    4746                 *
    48                  * @since BuddyPress (1.2.0)
     47                 * @since 1.2.0
    4948                 */
    5049                do_action( 'bp_before_member_blogs_content' ); ?>
     
    6160                 * Fires after the display of member blogs content.
    6261                 *
    63                  * @since BuddyPress (1.2.0)
     62                 * @since 1.2.0
    6463                 */
    6564                do_action( 'bp_after_member_blogs_content' );
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/forums.php

    r9819 r10150  
    11<?php
    2 
    32/**
    43 * BuddyPress - Users Forums
     
    2726                                 * Fires inside the members forums order options select input.
    2827                                 *
    29                                  * @since BuddyPress (1.2.0)
     28                                 * @since 1.2.0
    3029                                 */
    3130                                do_action( 'bp_forums_directory_order_options' ); ?>
     
    4645         * Fires before the display of member forums content.
    4746         *
    48          * @since BuddyPress (1.5.0)
     47         * @since 1.5.0
    4948         */
    5049        do_action( 'bp_before_member_forums_content' ); ?>
     
    6160         * Fires after the display of member forums content.
    6261         *
    63          * @since BuddyPress (1.5.0)
     62         * @since 1.5.0
    6463         */
    6564        do_action( 'bp_after_member_forums_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/forums/topics.php

    r9819 r10150  
    11<?php
    2 /*
     2/**
    33 * To change this template, choose Tools | Templates
    44 * and open the template in the editor.
     5 *
     6 * @package BuddyPress
     7 * @subpackage bp-legacy
    58 */
    69
    7 ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/friends.php

    r9819 r10150  
    11<?php
    2 
    32/**
    43 * BuddyPress - Users Friends
     
    2928                                         * Fires inside the members friends order options select input.
    3029                                         *
    31                                          * @since BuddyPress (2.0.0)
     30                                         * @since 2.0.0
    3231                                         */
    3332                                        do_action( 'bp_member_friends_order_options' ); ?>
     
    5049                 * Fires before the display of member friends content.
    5150                 *
    52                  * @since BuddyPress (1.2.0)
     51                 * @since 1.2.0
    5352                 */
    5453                do_action( 'bp_before_member_friends_content' ); ?>
     
    6564                 * Fires after the display of member friends content.
    6665                 *
    67                  * @since BuddyPress (1.2.0)
     66                 * @since 1.2.0
    6867                 */
    6968                do_action( 'bp_after_member_friends_content' );
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/friends/requests.php

    r9896 r10150  
    44 * Fires before the display of member friend requests content.
    55 *
    6  * @since BuddyPress (1.2.0)
     6 * @since 1.2.0
    77 */
    88do_action( 'bp_before_member_friend_requests_content' ); ?>
     
    4444                                 * Fires inside the display of a member friend request item.
    4545                                 *
    46                                  * @since BuddyPress (1.1.0)
     46                                 * @since 1.1.0
    4747                                 */
    4848                                do_action( 'bp_friend_requests_item' ); ?>
     
    5757                                         * Fires inside the member friend request actions markup.
    5858                                         *
    59                                          * @since BuddyPress (1.1.0)
     59                                         * @since 1.1.0
    6060                                         */
    6161                                        do_action( 'bp_friend_requests_item_action' ); ?>
     
    7171         * Fires and displays the member friend requests content.
    7272         *
    73          * @since BuddyPress (1.1.0)
     73         * @since 1.1.0
    7474         */
    7575        do_action( 'bp_friend_requests_content' ); ?>
     
    104104 * Fires after the display of member friend requests content.
    105105 *
    106  * @since BuddyPress (1.2.0)
     106 * @since 1.2.0
    107107 */
    108108do_action( 'bp_after_member_friend_requests_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/groups.php

    r9819 r10150  
    11<?php
    2 
    32/**
    43 * BuddyPress - Users Groups
     
    3029                                         * Fires inside the members group order options select input.
    3130                                         *
    32                                          * @since BuddyPress (1.2.0)
     31                                         * @since 1.2.0
    3332                                         */
    3433                                        do_action( 'bp_member_group_order_options' ); ?>
     
    5251                 * Fires before the display of member groups content.
    5352                 *
    54                  * @since BuddyPress (1.2.0)
     53                 * @since 1.2.0
    5554                 */
    5655                do_action( 'bp_before_member_groups_content' ); ?>
     
    6766                 * Fires after the display of member groups content.
    6867                 *
    69                  * @since BuddyPress (1.2.0)
     68                 * @since 1.2.0
    7069                 */
    7170                do_action( 'bp_after_member_groups_content' );
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/groups/invites.php

    r9896 r10150  
    11<?php
     2/**
     3 * BuddyPress - Members Single Group Invites
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/**
    49 * Fires before the display of member group invites content.
    510 *
    6  * @since BuddyPress (1.1.0)
     11 * @since 1.1.0
    712 */
    813do_action( 'bp_before_group_invites_content' ); ?>
     
    3237                                 * Fires inside the display of a member group invite item.
    3338                                 *
    34                                  * @since BuddyPress (1.1.0)
     39                                 * @since 1.1.0
    3540                                 */
    3641                                do_action( 'bp_group_invites_item' ); ?>
     
    4550                                         * Fires inside the member group item action markup.
    4651                                         *
    47                                          * @since BuddyPress (1.1.0)
     52                                         * @since 1.1.0
    4853                                         */
    4954                                        do_action( 'bp_group_invites_item_action' ); ?>
     
    6873 * Fires after the display of member group invites content.
    6974 *
    70  * @since BuddyPress (1.1.0)
     75 * @since 1.1.0
    7176 */
    7277do_action( 'bp_after_group_invites_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/home.php

    r9896 r10150  
    66         * Fires before the display of member home content.
    77         *
    8          * @since BuddyPress (1.2.0)
     8         * @since 1.2.0
    99         */
    1010        do_action( 'bp_before_member_home_content' ); ?>
     
    2727                                 * Fires after the display of member options navigation.
    2828                                 *
    29                                  * @since BuddyPress (1.2.4)
     29                                 * @since 1.2.4
    3030                                 */
    3131                                do_action( 'bp_member_options_nav' ); ?>
     
    4242                 * Fires before the display of member body content.
    4343                 *
    44                  * @since BuddyPress (1.2.0)
     44                 * @since 1.2.0
    4545                 */
    4646                do_action( 'bp_before_member_body' );
     
    8282                 * Fires after the display of member body content.
    8383                 *
    84                  * @since BuddyPress (1.2.0)
     84                 * @since 1.2.0
    8585                 */
    8686                do_action( 'bp_after_member_body' ); ?>
     
    9393         * Fires after the display of member home content.
    9494         *
    95          * @since BuddyPress (1.2.0)
     95         * @since 1.2.0
    9696         */
    9797        do_action( 'bp_after_member_home_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/member-header.php

    r9819 r10150  
    11<?php
    2 
    32/**
    43 * BuddyPress - Users Header
     
    1514 * Fires before the display of a member's header.
    1615 *
    17  * @since BuddyPress (1.2.0)
     16 * @since 1.2.0
    1817 */
    1918do_action( 'bp_before_member_header' ); ?>
     
    4039         * Fires before the display of the member's header meta.
    4140         *
    42          * @since BuddyPress (1.2.0)
     41         * @since 1.2.0
    4342         */
    4443        do_action( 'bp_before_member_header_meta' ); ?>
     
    6362                         * Fires in the member header actions section.
    6463                         *
    65                          * @since BuddyPress (1.2.6)
     64                         * @since 1.2.6
    6665                         */
    6766                        do_action( 'bp_member_header_actions' ); ?>
     
    7776                  * bp_member_profile_data( 'field=About Me' ); -- Pass the name of the field
    7877                  *
    79                   * @since BuddyPress (1.2.0)
     78                  * @since 1.2.0
    8079                  */
    8180                 do_action( 'bp_profile_header_meta' );
     
    9291 * Fires after the display of a member's header.
    9392 *
    94  * @since BuddyPress (1.2.0)
     93 * @since 1.2.0
    9594 */
    9695do_action( 'bp_after_member_header' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages.php

    r9896 r10150  
    11<?php
    2 
    32/**
    43 * BuddyPress - Users Messages
     
    3534                 * Fires before the member messages content for inbox and sentbox.
    3635                 *
    37                  * @since BuddyPress (1.2.0)
     36                 * @since 1.2.0
    3837                 */
    3938                do_action( 'bp_before_member_messages_content' ); ?>
     
    4847                 * Fires after the member messages content for inbox and sentbox.
    4948                 *
    50                  * @since BuddyPress (1.2.0)
     49                 * @since 1.2.0
    5150                 */
    5251                do_action( 'bp_after_member_messages_content' );
     
    6968                 * Fires before the member messages content for notices.
    7069                 *
    71                  * @since BuddyPress (1.2.0)
     70                 * @since 1.2.0
    7271                 */
    7372                do_action( 'bp_before_member_messages_content' ); ?>
     
    8281                 * Fires after the member messages content for inbox and sentbox.
    8382                 *
    84                  * @since BuddyPress (1.2.0)
     83                 * @since 1.2.0
    8584                 */
    8685                do_action( 'bp_after_member_messages_content' );
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/compose.php

    r10086 r10150  
    66         * Fires before the display of message compose content.
    77         *
    8          * @since BuddyPress (1.1.0)
     8         * @since 1.1.0
    99         */
    1010        do_action( 'bp_before_messages_compose_content' ); ?>
     
    3535         * Fires after the display of message compose content.
    3636         *
    37          * @since BuddyPress (1.1.0)
     37         * @since 1.1.0
    3838         */
    3939        do_action( 'bp_after_messages_compose_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/message.php

    r10048 r10150  
    2222                                         * Fires before the single message header is displayed.
    2323                                         *
    24                                          * @since BuddyPress (1.1.0)
     24                                         * @since 1.1.0
    2525                                         */
    2626                                        do_action( 'bp_before_message_meta' ); ?>
     
    5151                                         * Fires after the single message header is displayed.
    5252                                         *
    53                                          * @since BuddyPress (1.1.0)
     53                                         * @since 1.1.0
    5454                                         */
    5555                                        do_action( 'bp_after_message_meta' ); ?>
     
    6262                                 * Fires before the message content for a private message.
    6363                                 *
    64                                  * @since BuddyPress (1.1.0)
     64                                 * @since 1.1.0
    6565                                 */
    6666                                do_action( 'bp_before_message_content' ); ?>
     
    7777                                 * Fires after the message content for a private message.
    7878                                 *
    79                                  * @since BuddyPress (1.1.0)
     79                                 * @since 1.1.0
    8080                                 */
    8181                                do_action( 'bp_after_message_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php

    r10083 r10150  
    11<?php
     2/**
     3 * BuddyPress - Members Messages Loop
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/**
    49 * Fires before the members messages loop.
    510 *
    6  * @since BuddyPress (1.2.0)
     11 * @since 1.2.0
    712 */
    813do_action( 'bp_before_member_messages_loop' ); ?>
     
    2732         * Fires after the members messages pagination display.
    2833         *
    29          * @since BuddyPress (1.2.0)
     34         * @since 1.2.0
    3035         */
    3136        do_action( 'bp_after_member_messages_pagination' ); ?>
     
    3641         * Fires before the members messages threads.
    3742         *
    38          * @since BuddyPress (1.2.0)
     43         * @since 1.2.0
    3944         */
    4045        do_action( 'bp_before_member_messages_threads' ); ?>
     
    5863                                         * the related 'bp_messages_inbox_list_item' hook to add a <td> cell.
    5964                                         *
    60                                          * @since BuddyPress (2.3.0)
     65                                         * @since 2.3.0
    6166                                         */
    6267                                        do_action( 'bp_messages_inbox_list_header' ); ?>
     
    108113                                                 * related 'bp_messages_inbox_list_header' hook to add a <th> header cell.
    109114                                                 *
    110                                                  * @since BuddyPress (1.1.0)
     115                                                 * @since 1.1.0
    111116                                                 */
    112117                                                do_action( 'bp_messages_inbox_list_item' ); ?>
     
    147152         * Fires after the members messages threads.
    148153         *
    149          * @since BuddyPress (1.2.0)
     154         * @since 1.2.0
    150155         */
    151156        do_action( 'bp_after_member_messages_threads' ); ?>
     
    156161         * Fires and displays member messages options.
    157162         *
    158          * @since BuddyPress (1.2.0)
     163         * @since 1.2.0
    159164         */
    160165        do_action( 'bp_after_member_messages_options' ); ?>
     
    173178 * Fires after the members messages loop.
    174179 *
    175  * @since BuddyPress (1.2.0)
     180 * @since 1.2.0
    176181 */
    177182do_action( 'bp_after_member_messages_loop' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/notices-loop.php

    r9863 r10150  
    11<?php
     2/**
     3 * BuddyPress - Members Single Messages Notice Loop
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/**
    49 * Fires before the members notices loop.
    510 *
    6  * @since BuddyPress (1.2.0)
     11 * @since 1.2.0
    712 */
    813do_action( 'bp_before_notices_loop' ); ?>
     
    2732         * Fires after the members notices pagination display.
    2833         *
    29          * @since BuddyPress (1.2.0)
     34         * @since 1.2.0
    3035         */
    3136        do_action( 'bp_after_notices_pagination' ); ?>
     
    3540         * Fires before the members notice items.
    3641         *
    37          * @since BuddyPress (1.2.0)
     42         * @since 1.2.0
    3843         */
    3944        do_action( 'bp_before_notices' ); ?>
     
    6368                                 * Fires inside the display of a member notice list item.
    6469                                 *
    65                                  * @since BuddyPress (1.2.0)
     70                                 * @since 1.2.0
    6671                                 */
    6772                                do_action( 'bp_notices_list_item' ); ?>
     
    8085         * Fires after the members notice items.
    8186         *
    82          * @since BuddyPress (1.2.0)
     87         * @since 1.2.0
    8388         */
    8489        do_action( 'bp_after_notices' ); ?>
     
    97102 * Fires after the members notices loop.
    98103 *
    99  * @since BuddyPress (1.2.0)
     104 * @since 1.2.0
    100105 */
    101106do_action( 'bp_after_notices_loop' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/single.php

    r10087 r10150  
    66         * Fires before the display of a single member message thread content.
    77         *
    8          * @since BuddyPress (1.1.0)
     8         * @since 1.1.0
    99         */
    1010        do_action( 'bp_before_message_thread_content' ); ?>
     
    4141                 * Fires before the display of the message thread list.
    4242                 *
    43                  * @since BuddyPress (1.1.0)
     43                 * @since 1.1.0
    4444                 */
    4545                do_action( 'bp_before_message_thread_list' ); ?>
     
    5454                 * Fires after the display of the message thread list.
    5555                 *
    56                  * @since BuddyPress (1.1.0)
     56                 * @since 1.1.0
    5757                 */
    5858                do_action( 'bp_after_message_thread_list' ); ?>
     
    6363                 * Fires before the display of the message thread reply form.
    6464                 *
    65                  * @since BuddyPress (1.1.0)
     65                 * @since 1.1.0
    6666                 */
    6767                do_action( 'bp_before_message_thread_reply' ); ?>
     
    9898                                         * Fires before the display of the message reply box.
    9999                                         *
    100                                          * @since BuddyPress (1.1.0)
     100                                         * @since 1.1.0
    101101                                         */
    102102                                        do_action( 'bp_before_message_reply_box' ); ?>
     
    110110                                         * Fires after the display of the message reply box.
    111111                                         *
    112                                          * @since BuddyPress (1.1.0)
     112                                         * @since 1.1.0
    113113                                         */
    114114                                        do_action( 'bp_after_message_reply_box' ); ?>
     
    133133                 * Fires after the display of the message thread reply form.
    134134                 *
    135                  * @since BuddyPress (1.1.0)
     135                 * @since 1.1.0
    136136                 */
    137137                do_action( 'bp_after_message_thread_reply' ); ?>
     
    144144         * Fires after the display of a single member message thread content.
    145145         *
    146          * @since BuddyPress (1.1.0)
     146         * @since 1.1.0
    147147         */
    148148        do_action( 'bp_after_message_thread_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/notifications.php

    r9819 r10150  
    11<?php
    2 
    32/**
    43 * BuddyPress - Users Notifications
     
    2322switch ( bp_current_action() ) :
    2423
    25         // Unread
    2624        case 'unread' :
    2725                bp_get_template_part( 'members/single/notifications/unread' );
    2826                break;
    2927
    30         // Read
    3128        case 'read' :
    3229                bp_get_template_part( 'members/single/notifications/read' );
    3330                break;
    3431
    35         // Any other
     32        // Any other actions.
    3633        default :
    3734                bp_get_template_part( 'members/single/plugins' );
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/plugins.php

    r9819 r10150  
    99 * @subpackage bp-legacy
    1010 */
    11 ?>
    12 
    13                 <?php
    1411
    1512                /**
    1613                 * Fires at the start of the member plugin template.
    1714                 *
    18                  * @since BuddyPress (1.2.0)
     15                 * @since 1.2.0
    1916                 */
    2017                do_action( 'bp_before_member_plugin_template' ); ?>
     
    3128                                 * Fires inside the member plugin template nav <ul> tag.
    3229                                 *
    33                                  * @since BuddyPress (1.2.2)
     30                                 * @since 1.2.2
    3431                                 */
    3532                                do_action( 'bp_member_plugin_options_nav' ); ?>
     
    4441                         * Fires inside the member plugin template <h3> tag.
    4542                         *
    46                          * @since BuddyPress (1.0.0)
     43                         * @since 1.0.0
    4744                         */
    4845                        do_action( 'bp_template_title' ); ?></h3>
     
    5350                 * Fires and displays the member plugin template content.
    5451                 *
    55                  * @since BuddyPress (1.0.0)
     52                 * @since 1.0.0
    5653                 */
    5754                do_action( 'bp_template_content' ); ?>
     
    6259                 * Fires at the end of the member plugin template.
    6360                 *
    64                  * @since BuddyPress (1.2.0)
     61                 * @since 1.2.0
    6562                 */
    6663                do_action( 'bp_after_member_plugin_template' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile.php

    r9896 r10150  
    11<?php
    2 
    32/**
    43 * BuddyPress - Users Profile
     
    2120 * Fires before the display of member profile content.
    2221 *
    23  * @since BuddyPress (1.1.0)
     22 * @since 1.1.0
    2423 */
    2524do_action( 'bp_before_profile_content' ); ?>
     
    6463 * Fires after the display of member profile content.
    6564 *
    66  * @since BuddyPress (1.1.0)
     65 * @since 1.1.0
    6766 */
    6867do_action( 'bp_after_profile_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/change-avatar.php

    r9819 r10150  
    66 * Fires before the display of profile avatar upload content.
    77 *
    8  * @since BuddyPress (1.1.0)
     8 * @since 1.1.0
    99 */
    1010do_action( 'bp_before_profile_avatar_upload_content' ); ?>
     
    6262         * Load the Avatar UI templates
    6363         *
    64          * @since  BuddyPress (2.3.0)
     64         * @since  2.3.0
    6565         */
    6666        bp_avatar_get_templates(); ?>
     
    7777 * Fires after the display of profile avatar upload content.
    7878 *
    79  * @since BuddyPress (1.1.0)
     79 * @since 1.1.0
    8080 */
    8181do_action( 'bp_after_profile_avatar_upload_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/edit.php

    r9819 r10150  
    11<?php
     2/**
     3 * BuddyPress - Members Single Profile Edit
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/**
    49 * Fires after the display of member profile edit content.
    510 *
    6  * @since BuddyPress (1.1.0)
     11 * @since 1.1.0
    712 */
    813do_action( 'bp_before_profile_edit_content' );
     
    4146                                 * Fires before the display of visibility options for the field.
    4247                                 *
    43                                  * @since BuddyPress (1.7.0)
     48                                 * @since 1.7.0
    4449                                 */
    4550                                do_action( 'bp_custom_profile_edit_fields_pre_visibility' );
     
    7176                                 * Fires after the visibility options for a field.
    7277                                 *
    73                                  * @since BuddyPress (1.1.0)
     78                                 * @since 1.1.0
    7479                                 */
    7580                                do_action( 'bp_custom_profile_edit_fields' ); ?>
     
    102107 * Fires after the display of member profile edit content.
    103108 *
    104  * @since BuddyPress (1.1.0)
     109 * @since 1.1.0
    105110 */
    106111do_action( 'bp_after_profile_edit_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/profile-loop.php

    r9819 r10150  
    4040                                                 * Fires after the display of a field table row for profile data.
    4141                                                 *
    42                                                  * @since BuddyPress (1.1.0)
     42                                                 * @since 1.1.0
    4343                                                 */
    4444                                                do_action( 'bp_profile_field_item' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/profile-wp.php

    r9819 r10150  
    11<?php
     2/**
     3 * BuddyPress - Members Single Profile WP
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/**
    49 * Fires before the display of member profile loop content.
    510 *
    6  * @since BuddyPress (1.2.0)
     11 * @since 1.2.0
    712 */
    813do_action( 'bp_before_profile_loop_content' ); ?>
     
    1520         * Fires before the display of member profile field content.
    1621         *
    17          * @since BuddyPress (1.1.0)
     22         * @since 1.1.0
    1823         */
    1924        do_action( 'bp_before_profile_field_content' ); ?>
     
    8691 * Fires after the display of member profile field content.
    8792 *
    88  * @since BuddyPress (1.1.0)
     93 * @since 1.1.0
    8994 */
    9095do_action( 'bp_after_profile_field_content' ); ?>
     
    95100 * Fires and displays the profile field buttons.
    96101 *
    97  * @since BuddyPress (1.1.0)
     102 * @since 1.1.0
    98103 */
    99104do_action( 'bp_profile_field_buttons' ); ?>
     
    104109 * Fires after the display of member profile loop content.
    105110 *
    106  * @since BuddyPress (1.2.0)
     111 * @since 1.2.0
    107112 */
    108113do_action( 'bp_after_profile_loop_content' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings.php

    r9819 r10150  
    11<?php
    2 
    32/**
    43 * BuddyPress - Users Settings
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/capabilities.php

    r10105 r10150  
    1111         * Fires before the display of the submit button for user capabilities saving.
    1212         *
    13          * @since BuddyPress (1.6.0)
     13         * @since 1.6.0
    1414         */
    1515        do_action( 'bp_members_capabilities_account_before_submit' ); ?>
     
    2929         * Fires after the display of the submit button for user capabilities saving.
    3030         *
    31          * @since BuddyPress (1.6.0)
     31         * @since 1.6.0
    3232         */
    3333        do_action( 'bp_members_capabilities_account_after_submit' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/delete-account.php

    r10124 r10150  
    2525         * Fires before the display of the submit button for user delete account submitting.
    2626         *
    27          * @since BuddyPress (1.5.0)
     27         * @since 1.5.0
    2828         */
    2929        do_action( 'bp_members_delete_account_before_submit' ); ?>
     
    4343         * Fires after the display of the submit button for user delete account submitting.
    4444         *
    45          * @since BuddyPress (1.5.0)
     45         * @since 1.5.0
    4646         */
    4747        do_action( 'bp_members_delete_account_after_submit' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/general.php

    r10089 r10150  
    11<?php
     2/**
     3 * BuddyPress - Members Single Profile
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/** This action is documented in bp-templates/bp-legacy/buddypress/members/single/settings/profile.php */
     
    2732         * Fires before the display of the submit button for user general settings saving.
    2833         *
    29          * @since BuddyPress (1.5.0)
     34         * @since 1.5.0
    3035         */
    3136        do_action( 'bp_core_general_settings_before_submit' ); ?>
     
    4045         * Fires after the display of the submit button for user general settings saving.
    4146         *
    42          * @since BuddyPress (1.5.0)
     47         * @since 1.5.0
    4348         */
    4449        do_action( 'bp_core_general_settings_after_submit' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/notifications.php

    r9819 r10150  
    1212         * Fires at the top of the member template notification settings form.
    1313         *
    14          * @since BuddyPress (1.0.0)
     14         * @since 1.0.0
    1515         */
    1616        do_action( 'bp_notification_settings' ); ?>
     
    2121         * Fires before the display of the submit button for user notification saving.
    2222         *
    23          * @since BuddyPress (1.5.0)
     23         * @since 1.5.0
    2424         */
    2525        do_action( 'bp_members_notification_settings_before_submit' ); ?>
     
    3434         * Fires after the display of the submit button for user notification saving.
    3535         *
    36          * @since BuddyPress (1.5.0)
     36         * @since 1.5.0
    3737         */
    3838        do_action( 'bp_members_notification_settings_after_submit' ); ?>
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/profile.php

    r9819 r10150  
    11<?php
     2/**
     3 * BuddyPress - Members Single Profile
     4 * @package    BuddyPress
     5 * @subpackage bp-legacy
     6 */
    27
    38/**
    49 * Fires before the display of member settings template.
    510 *
    6  * @since BuddyPress (1.5.0)
     11 * @since 1.5.0
    712 */
    813do_action( 'bp_before_member_settings_template' ); ?>
     
    4954         * Fires before the display of the submit button for user profile saving.
    5055         *
    51          * @since BuddyPress (2.0.0)
     56         * @since 2.0.0
    5257         */
    5358        do_action( 'bp_core_xprofile_settings_before_submit' ); ?>
     
    6267         * Fires after the display of the submit button for user profile saving.
    6368         *
    64          * @since BuddyPress (2.0.0)
     69         * @since 2.0.0
    6570         */
    6671        do_action( 'bp_core_xprofile_settings_after_submit' ); ?>
     
    7782 * Fires after the display of member settings template.
    7883 *
    79  * @since BuddyPress (1.5.0)
     84 * @since 1.5.0
    8085 */
    8186do_action( 'bp_after_member_settings_template' );
  • trunk/src/bp-templates/bp-legacy/js/buddypress.js

    r10133 r10150  
    20312031 *
    20322032 * @param {String} container HTML ID of the field
    2033  * @since BuddyPress (1.2.0)
     2033 * @since 1.2.0
    20342034 */
    20352035function clear( container ) {
Note: See TracChangeset for help on using the changeset viewer.