Changeset 10150
- Timestamp:
- 09/27/2015 06:04:27 AM (9 years ago)
- 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 1 1 <?php 2 3 2 /** 4 3 * Functions of BuddyPress's Legacy theme 4 * 5 * @since 1.7.0 5 6 * 6 7 * @package BuddyPress 7 8 * @subpackage BP_Theme_Compat 8 * @since BuddyPress (1.7) 9 */ 10 11 // Exit if accessed directly 9 */ 10 11 // Exit if accessed directly. 12 12 defined( 'ABSPATH' ) || exit; 13 13 … … 28 28 * See @link BP_Theme_Compat() for more. 29 29 * 30 * @since BuddyPress (1.7)30 * @since 1.7.0 31 31 * 32 32 * @package BuddyPress … … 40 40 * The main BuddyPress (Legacy) Loader 41 41 * 42 * @since BuddyPress (1.7)42 * @since 1.7.0 43 43 * 44 44 * @uses BP_Legacy::setup_globals() … … 55 55 * needs are. 56 56 * 57 * @since BuddyPress (1.7)57 * @since 1.7.0 58 58 * @access private 59 59 */ … … 70 70 * Setup the theme hooks 71 71 * 72 * @since BuddyPress (1.7)72 * @since 1.7.0 73 73 * @access private 74 74 * … … 201 201 * Fires after all of the BuddyPress theme compat actions have been added. 202 202 * 203 * @since BuddyPress (1.7.0)203 * @since 1.7.0 204 204 * 205 205 * @param BP_Legacy $this Current BP_Legacy instance. … … 211 211 * Load the theme CSS 212 212 * 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. 215 215 * 216 216 * @uses wp_enqueue_style() To enqueue the styles … … 275 275 * Enqueue the required JavaScript files 276 276 * 277 * @since BuddyPress (1.7)277 * @since 1.7.0 278 278 */ 279 279 public function enqueue_scripts() { … … 292 292 * Filters core JavaScript strings for internationalization before AJAX usage. 293 293 * 294 * @since BuddyPress (2.0.0)294 * @since 2.0.0 295 295 * 296 296 * @param array $value Array of key/value pairs for AJAX usage. … … 372 372 * and theme authors should not attempt to use what follows. 373 373 * 374 * @since BuddyPress (1.8)374 * @since 1.8.0 375 375 * @access private 376 376 * @param string $file A filename like buddypress.css … … 436 436 * Put some scripts in the header, like AJAX url for wp-lists 437 437 * 438 * @since BuddyPress (1.7)438 * @since 1.7.0 439 439 */ 440 440 public function head_scripts() { … … 459 459 * The no-js class is removed by the JavaScript created in buddypress.js. 460 460 * 461 * @since BuddyPress (1.7)461 * @since 1.7.0 462 462 */ 463 463 public function add_nojs_body_class( $classes ) { … … 473 473 * These localizations require information that may not be loaded even by init. 474 474 * 475 * @since BuddyPress (1.7)475 * @since 1.7.0 476 476 */ 477 477 public function localize_scripts() { … … 481 481 * Outputs sitewide notices markup in the footer. 482 482 * 483 * @since BuddyPress (1.7)483 * @since 1.7.0 484 484 * 485 485 * @see https://buddypress.trac.wordpress.org/ticket/4802 … … 501 501 * Add secondary avatar image to this activity stream's record, if supported. 502 502 * 503 * @since BuddyPress (1.7)503 * @since 1.7.0 504 504 * 505 505 * @param string $action The text of this activity … … 530 530 * @see https://buddypress.trac.wordpress.org/ticket/6065 531 531 * 532 * @since BuddyPress (2.2.0)532 * @since 2.2.0 533 533 * 534 534 * @param array $templates … … 542 542 * Filters whether or not we are looking at a directory to determine if to return early. 543 543 * 544 * @since BuddyPress (2.2.0)544 * @since 2.2.0 545 545 * 546 546 * @param bool $value Whether or not we are viewing a directory. … … 608 608 * the behavior of bp-default. 609 609 * 610 * @since BuddyPress (2.0.0)610 * @since 2.0.0 611 611 * @todo Deprecate 612 612 * … … 624 624 * the Groups directory navigation. 625 625 * 626 * @since BuddyPress (2.2.0)626 * @since 2.2.0 627 627 * 628 628 * @uses bp_group_create_nav_item() to output the create a Group nav item … … 639 639 * the behavior of bp-default. 640 640 * 641 * @since BuddyPress (2.0.0)641 * @since 2.0.0 642 642 * @todo Deprecate 643 643 * … … 655 655 * the Sites directory navigation. 656 656 * 657 * @since BuddyPress (2.2.0)657 * @since 2.2.0 658 658 * 659 659 * @uses bp_blog_create_nav_item() to output the Create a Site nav item … … 678 678 * 679 679 * @return string Query string for the component loops 680 * @since BuddyPress (1.2)680 * @since 1.2.0 681 681 */ 682 682 function bp_legacy_theme_ajax_querystring( $query_string, $object ) { … … 760 760 * Filters the AJAX query string for the component loops. 761 761 * 762 * @since BuddyPress (1.7.0)762 * @since 1.7.0 763 763 * 764 764 * @param string $query_string The query string we are working with. … … 777 777 * 778 778 * @return string Prints template loop for the specified object 779 * @since BuddyPress (1.2)779 * @since 1.2.0 780 780 */ 781 781 function bp_legacy_theme_object_template_loader() { … … 820 820 * 821 821 * @return string Prints template loop for the Messages component 822 * @since BuddyPress (1.6)822 * @since 1.6.0 823 823 */ 824 824 function bp_legacy_theme_messages_template_loader() { … … 830 830 * Load group invitations loop to handle pagination requests sent via AJAX. 831 831 * 832 * @since BuddyPress (2.0.0)832 * @since 2.0.0 833 833 */ 834 834 function bp_legacy_theme_invite_template_loader() { … … 840 840 * Load group membership requests loop to handle pagination requests sent via AJAX. 841 841 * 842 * @since BuddyPress (2.0.0)842 * @since 2.0.0 843 843 */ 844 844 function bp_legacy_theme_requests_template_loader() { … … 853 853 * for the Activity component) and 'feed_url' (URL to the relevant RSS feed). 854 854 * 855 * @since BuddyPress (1.2)855 * @since 1.2.0 856 856 */ 857 857 function bp_legacy_theme_activity_template_loader() { … … 892 892 * Filters the feed URL for when activity is requested via AJAX. 893 893 * 894 * @since BuddyPress (1.7.0)894 * @since 1.7.0 895 895 * 896 896 * @param string $feed_url URL for the feed to be used. … … 907 907 * 908 908 * @return string HTML 909 * @since BuddyPress (1.2)909 * @since 1.2.0 910 910 */ 911 911 function bp_legacy_theme_post_update() { … … 970 970 * @global BP_Activity_Template $activities_template 971 971 * @return string HTML 972 * @since BuddyPress (1.2)972 * @since 1.2.0 973 973 */ 974 974 function bp_legacy_theme_new_activity_comment() { … … 1046 1046 * 1047 1047 * @return mixed String on error, void on success 1048 * @since BuddyPress (1.2)1048 * @since 1.2.0 1049 1049 */ 1050 1050 function bp_legacy_theme_delete_activity() { … … 1083 1083 * 1084 1084 * @return mixed String on error, void on success 1085 * @since BuddyPress (1.2)1085 * @since 1.2.0 1086 1086 */ 1087 1087 function bp_legacy_theme_delete_activity_comment() { … … 1120 1120 * 1121 1121 * @return mixed String on error, void on success 1122 * @since BuddyPress (1.6)1122 * @since 1.6.0 1123 1123 */ 1124 1124 function bp_legacy_theme_spam_activity() { … … 1165 1165 * 1166 1166 * @return string HTML 1167 * @since BuddyPress (1.2)1167 * @since 1.2.0 1168 1168 */ 1169 1169 function bp_legacy_theme_mark_activity_favorite() { … … 1184 1184 * 1185 1185 * @return string HTML 1186 * @since BuddyPress (1.2)1186 * @since 1.2.0 1187 1187 */ 1188 1188 function bp_legacy_theme_unmark_activity_favorite() { … … 1204 1204 * 1205 1205 * @return string HTML 1206 * @since BuddyPress (1.5)1206 * @since 1.5.0 1207 1207 */ 1208 1208 function bp_legacy_theme_get_single_activity_content() { … … 1224 1224 * Fires before the return of an activity's full, non-excerpted content via a POST request. 1225 1225 * 1226 * @since BuddyPress (1.7.0)1226 * @since 1.7.0 1227 1227 * 1228 1228 * @param string $activity Activity content. Passed by reference. … … 1242 1242 * Invites a friend to join a group via a POST request. 1243 1243 * 1244 * @since BuddyPress (1.2)1244 * @since 1.2.0 1245 1245 * @todo Audit return types 1246 1246 */ … … 1325 1325 * 1326 1326 * @return string HTML 1327 * @since BuddyPress (1.2)1327 * @since 1.2.0 1328 1328 */ 1329 1329 function bp_legacy_theme_ajax_addremove_friend() { … … 1378 1378 * 1379 1379 * @return mixed String on error, void on success 1380 * @since BuddyPress (1.2)1380 * @since 1.2.0 1381 1381 */ 1382 1382 function bp_legacy_theme_ajax_accept_friendship() { … … 1397 1397 * 1398 1398 * @return mixed String on error, void on success 1399 * @since BuddyPress (1.2)1399 * @since 1.2.0 1400 1400 */ 1401 1401 function bp_legacy_theme_ajax_reject_friendship() { … … 1416 1416 * 1417 1417 * @return string HTML 1418 * @since BuddyPress (1.2)1418 * @since 1.2.0 1419 1419 */ 1420 1420 function bp_legacy_theme_ajax_joinleave_group() { … … 1486 1486 * 1487 1487 * @return mixed String on error, void on success 1488 * @since BuddyPress (1.2)1488 * @since 1.2.0 1489 1489 */ 1490 1490 function bp_legacy_theme_ajax_close_notice() { … … 1511 1511 * 1512 1512 * @return string HTML 1513 * @since BuddyPress (1.2)1513 * @since 1.2.0 1514 1514 */ 1515 1515 function bp_legacy_theme_ajax_messages_send_reply() { … … 1566 1566 * 1567 1567 * @return mixed String on error, void on success 1568 * @since BuddyPress (1.2)1568 * @since 1.2.0 1569 1569 */ 1570 1570 function bp_legacy_theme_ajax_message_markunread() { … … 1591 1591 * 1592 1592 * @return mixed String on error, void on success 1593 * @since BuddyPress (1.2)1593 * @since 1.2.0 1594 1594 */ 1595 1595 function bp_legacy_theme_ajax_message_markread() { … … 1616 1616 * 1617 1617 * @return string HTML 1618 * @since BuddyPress (1.2)1618 * @since 1.2.0 1619 1619 */ 1620 1620 function bp_legacy_theme_ajax_messages_delete() { … … 1641 1641 * Displays friends only, unless BP_MESSAGES_AUTOCOMPLETE_ALL is defined. 1642 1642 * 1643 * @since BuddyPress (1.2.0)1643 * @since 1.2.0 1644 1644 * 1645 1645 * @return string HTML. … … 1650 1650 * Filters the max results default value for ajax messages autocomplete results. 1651 1651 * 1652 * @since BuddyPress (1.5.0)1652 * @since 1.5.0 1653 1653 * 1654 1654 * @param int $value Max results for autocomplete. Default 10. … … 1691 1691 * AJAX callback to set a message's star status. 1692 1692 * 1693 * @since BuddyPress (2.3.0)1693 * @since 2.3.0 1694 1694 */ 1695 1695 function bp_legacy_theme_ajax_messages_star_handler() { -
trunk/src/bp-templates/bp-legacy/buddypress/activity/activity-loop.php
r9819 r10150 1 1 <?php 2 /** 3 * BuddyPress - Activity Loop 4 * 5 * @package BuddyPress 6 * @subpackage bp-legacy 7 */ 2 8 3 9 /** 4 10 * Fires before the start of the activity loop. 5 11 * 6 * @since BuddyPress (1.2.0)12 * @since 1.2.0 7 13 */ 8 14 do_action( 'bp_before_activity_loop' ); ?> … … 49 55 * Fires after the finish of the activity loop. 50 56 * 51 * @since BuddyPress (1.2.0)57 * @since 1.2.0 52 58 */ 53 59 do_action( 'bp_after_activity_loop' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/activity/comment.php
r9819 r10150 1 1 <?php 2 3 2 /** 4 3 * BuddyPress - Activity Stream Comment … … 11 10 */ 12 11 13 ?>14 15 <?php16 17 12 /** 18 13 * Fires before the display of an activity comment. 19 14 * 20 * @since BuddyPress (1.5.0)15 * @since 1.5.0 21 16 */ 22 17 do_action( 'bp_before_activity_comment' ); ?> … … 57 52 * Fires after the defualt comment action options display. 58 53 * 59 * @since BuddyPress (1.6.0)54 * @since 1.6.0 60 55 */ 61 56 do_action( 'bp_activity_comment_options' ); ?> … … 71 66 * Fires after the display of an activity comment. 72 67 * 73 * @since BuddyPress (1.5.0)68 * @since 1.5.0 74 69 */ 75 70 do_action( 'bp_after_activity_comment' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/activity/entry.php
r9819 r10150 1 1 <?php 2 3 2 /** 4 3 * BuddyPress - Activity Stream (Single Item) … … 11 10 */ 12 11 13 ?>14 15 <?php16 17 12 /** 18 13 * Fires before the display of an activity entry. 19 14 * 20 * @since BuddyPress (1.2.0)15 * @since 1.2.0 21 16 */ 22 17 do_action( 'bp_before_activity_entry' ); ?> … … 54 49 * Fires after the display of an activity entry content. 55 50 * 56 * @since BuddyPress (1.2.0)51 * @since 1.2.0 57 52 */ 58 53 do_action( 'bp_activity_entry_content' ); ?> … … 95 90 * Fires at the end of the activity entry meta data area. 96 91 * 97 * @since BuddyPress (1.2.0)92 * @since 1.2.0 98 93 */ 99 94 do_action( 'bp_activity_entry_meta' ); ?> … … 110 105 * Fires before the display of the activity entry comments. 111 106 * 112 * @since BuddyPress (1.2.0)107 * @since 1.2.0 113 108 */ 114 109 do_action( 'bp_before_activity_entry_comments' ); ?> … … 137 132 * Fires after the activity entry comment form. 138 133 * 139 * @since BuddyPress (1.5.0)134 * @since 1.5.0 140 135 */ 141 136 do_action( 'bp_activity_entry_comments' ); ?> … … 156 151 * Fires after the display of the activity entry comments. 157 152 * 158 * @since BuddyPress (1.2.0)153 * @since 1.2.0 159 154 */ 160 155 do_action( 'bp_after_activity_entry_comments' ); ?> … … 167 162 * Fires after the display of an activity entry. 168 163 * 169 * @since BuddyPress (1.2.0)164 * @since 1.2.0 170 165 */ 171 166 do_action( 'bp_after_activity_entry' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/activity/index.php
r9896 r10150 1 1 <?php 2 /** 3 * BuddyPress Activity templates 4 * 5 * @since 2.3.0 6 * @package BuddyPress 7 * @subpackage BuddyPressActivity 8 */ 2 9 3 10 /** 4 11 * Fires before the activity directory listing. 5 12 * 6 * @since BuddyPress (1.5.0)13 * @since 1.5.0 7 14 */ 8 15 do_action( 'bp_before_directory_activity' ); ?> … … 15 22 * Fires before the activity directory display content. 16 23 * 17 * @since BuddyPress (1.2.0)24 * @since 1.2.0 18 25 */ 19 26 do_action( 'bp_before_directory_activity_content' ); ?> … … 30 37 * Fires towards the top of template pages for notice display. 31 38 * 32 * @since BuddyPress (1.0.0)39 * @since 1.0.0 33 40 */ 34 41 do_action( 'template_notices' ); ?> … … 41 48 * Fires before the listing of activity type tabs. 42 49 * 43 * @since BuddyPress (1.2.0)50 * @since 1.2.0 44 51 */ 45 52 do_action( 'bp_before_activity_type_tab_all' ); ?> … … 54 61 * Fires before the listing of friends activity type tab. 55 62 * 56 * @since BuddyPress (1.2.0)63 * @since 1.2.0 57 64 */ 58 65 do_action( 'bp_before_activity_type_tab_friends' ); ?> … … 73 80 * Fires before the listing of groups activity type tab. 74 81 * 75 * @since BuddyPress (1.2.0)82 * @since 1.2.0 76 83 */ 77 84 do_action( 'bp_before_activity_type_tab_groups' ); ?> … … 92 99 * Fires before the listing of favorites activity type tab. 93 100 * 94 * @since BuddyPress (1.2.0)101 * @since 1.2.0 95 102 */ 96 103 do_action( 'bp_before_activity_type_tab_favorites' ); ?> … … 109 116 * Fires before the listing of mentions activity type tab. 110 117 * 111 * @since BuddyPress (1.2.0)118 * @since 1.2.0 112 119 */ 113 120 do_action( 'bp_before_activity_type_tab_mentions' ); ?> … … 124 131 * Fires after the listing of activity type tabs. 125 132 * 126 * @since BuddyPress (1.2.0)133 * @since 1.2.0 127 134 */ 128 135 do_action( 'bp_activity_type_tabs' ); ?> … … 139 146 * Fires before the display of the activity syndication options. 140 147 * 141 * @since BuddyPress (1.2.0)148 * @since 1.2.0 142 149 */ 143 150 do_action( 'bp_activity_syndication_options' ); ?> … … 155 162 * Fires inside the select input for activity filter by options. 156 163 * 157 * @since BuddyPress (1.2.0)164 * @since 1.2.0 158 165 */ 159 166 do_action( 'bp_activity_filter_options' ); ?> … … 169 176 * Fires before the display of the activity list. 170 177 * 171 * @since BuddyPress (1.5.0)178 * @since 1.5.0 172 179 */ 173 180 do_action( 'bp_before_directory_activity_list' ); ?> … … 184 191 * Fires after the display of the activity list. 185 192 * 186 * @since BuddyPress (1.5.0)193 * @since 1.5.0 187 194 */ 188 195 do_action( 'bp_after_directory_activity_list' ); ?> … … 200 207 * Fires after the activity directory display content. 201 208 * 202 * @since BuddyPress (1.2.0)209 * @since 1.2.0 203 210 */ 204 211 do_action( 'bp_after_directory_activity_content' ); ?> … … 209 216 * Fires after the activity directory listing. 210 217 * 211 * @since BuddyPress (1.5.0)218 * @since 1.5.0 212 219 */ 213 220 do_action( 'bp_after_directory_activity' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/activity/post-form.php
r10085 r10150 1 1 <?php 2 3 2 /** 4 3 * BuddyPress - Activity Post Form … … 17 16 * Fires before the activity post form. 18 17 * 19 * @since BuddyPress (1.2.0)18 * @since 1.2.0 20 19 */ 21 20 do_action( 'bp_before_activity_post_form' ); ?> … … 80 79 * Fires at the end of the activity post form markup. 81 80 * 82 * @since BuddyPress (1.2.0)81 * @since 1.2.0 83 82 */ 84 83 do_action( 'bp_activity_post_form_options' ); ?> … … 93 92 * Fires after the activity post form. 94 93 * 95 * @since BuddyPress (1.2.0)94 * @since 1.2.0 96 95 */ 97 96 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 ?> 1 10 <div id="buddypress"> 2 11 <?php -
trunk/src/bp-templates/bp-legacy/buddypress/assets/_attachments/avatars/camera.php
r9860 r10150 5 5 * This template is used to create the camera Backbone views 6 6 * 7 * @since 2.3 7 * @since 2.3.0 8 8 * 9 9 * @package BuddyPress 10 10 * @subpackage bp-attachments 11 11 */ 12 12 13 ?> 13 14 <script id="tmpl-bp-avatar-webcam" type="text/html"> -
trunk/src/bp-templates/bp-legacy/buddypress/assets/_attachments/avatars/crop.php
r9819 r10150 5 5 * This template is used to create the crop Backbone views 6 6 * 7 * @since 2.3 7 * @since 2.3.0 8 8 * 9 9 * @package BuddyPress 10 10 * @subpackage bp-attachments 11 11 */ 12 12 13 ?> 13 14 <script id="tmpl-bp-avatar-item" type="text/html"> -
trunk/src/bp-templates/bp-legacy/buddypress/assets/_attachments/avatars/index.php
r9819 r10150 7 7 * It's also used to create the common Backbone views 8 8 * 9 * @since 2.3 9 * @since 2.3.0 10 10 * 11 11 * @package BuddyPress 12 12 * @subpackage bp-attachments 13 13 */ 14 15 14 16 15 /** -
trunk/src/bp-templates/bp-legacy/buddypress/assets/_attachments/uploader.php
r10051 r10150 5 5 * This template is used to create the BuddyPress Uploader Backbone views 6 6 * 7 * @since 2.3 7 * @since 2.3.0 8 8 * 9 9 * @package BuddyPress 10 10 * @subpackage bp-attachments 11 11 */ 12 12 13 ?> 13 14 <script type="text/html" id="tmpl-upload-window"> -
trunk/src/bp-templates/bp-legacy/buddypress/blogs/blogs-loop.php
r9896 r10150 1 1 <?php 2 3 2 /** 4 3 * BuddyPress - Blogs Loop … … 10 9 */ 11 10 12 ?>13 14 <?php15 16 11 /** 17 12 * Fires before the start of the blogs loop. 18 13 * 19 * @since BuddyPress (1.2.0)14 * @since 1.2.0 20 15 */ 21 16 do_action( 'bp_before_blogs_loop' ); ?> … … 40 35 * Fires before the blogs directory list. 41 36 * 42 * @since BuddyPress (1.1.0)37 * @since 1.1.0 43 38 */ 44 39 do_action( 'bp_before_directory_blogs_list' ); ?> … … 62 57 * Fires after the listing of a blog item in the blogs loop. 63 58 * 64 * @since BuddyPress (1.2.0)59 * @since 1.2.0 65 60 */ 66 61 do_action( 'bp_directory_blogs_item' ); ?> … … 74 69 * Fires inside the blogs action listing area. 75 70 * 76 * @since BuddyPress (1.1.0)71 * @since 1.1.0 77 72 */ 78 73 do_action( 'bp_directory_blogs_actions' ); ?> … … 98 93 * Fires after the blogs directory list. 99 94 * 100 * @since BuddyPress (1.1.0)95 * @since 1.1.0 101 96 */ 102 97 do_action( 'bp_after_directory_blogs_list' ); ?> … … 133 128 * Fires after the display of the blogs loop. 134 129 * 135 * @since BuddyPress (1.2.0)130 * @since 1.2.0 136 131 */ 137 132 do_action( 'bp_after_blogs_loop' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/blogs/create.php
r9819 r10150 1 1 <?php 2 /** 3 * BuddyPress - Blogs Create 4 * @package BuddyPress 5 * @subpackage bp-legacy 6 */ 2 7 3 8 /** 4 9 * Fires at the top of the blog creation template file. 5 10 * 6 * @since BuddyPress (1.6.0)11 * @since 1.6.0 7 12 */ 8 13 do_action( 'bp_before_create_blog_content_template' ); ?> … … 18 23 * Fires before the display of the blog creation form. 19 24 * 20 * @since BuddyPress (1.1.0)25 * @since 1.1.0 21 26 */ 22 27 do_action( 'bp_before_create_blog_content' ); ?> … … 39 44 * Fires after the display of the blog creation form. 40 45 * 41 * @since BuddyPress (1.1.0)46 * @since 1.1.0 42 47 */ 43 48 do_action( 'bp_after_create_blog_content' ); ?> … … 48 53 * Fires at the bottom of the blog creation template file. 49 54 * 50 * @since BuddyPress (1.6.0)55 * @since 1.6.0 51 56 */ 52 57 do_action( 'bp_after_create_blog_content_template' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/blogs/index.php
r9891 r10150 1 1 <?php 2 /** 3 * BuddyPress - Blogs 4 * @package BuddyPress 5 * @subpackage bp-legacy 6 */ 2 7 3 8 /** 4 9 * Fires at the top of the blogs directory template file. 5 10 * 6 * @since BuddyPress (2.3.0)11 * @since 2.3.0 7 12 */ 8 13 do_action( 'bp_before_directory_blogs_page' ); ?> … … 15 20 * Fires before the display of the blogs 16 21 * 17 * @since BuddyPress (1.5.0)22 * @since 1.5.0 18 23 */ 19 24 do_action( 'bp_before_directory_blogs' ); ?> … … 24 29 * Fires before the display of the blogs listing content. 25 30 * 26 * @since BuddyPress (1.1.0)31 * @since 1.1.0 27 32 */ 28 33 do_action( 'bp_before_directory_blogs_content' ); ?> … … 37 42 * Fires before the display of the blogs list tabs. 38 43 * 39 * @since BuddyPress (2.3.0)44 * @since 2.3.0 40 45 */ 41 46 do_action( 'bp_before_directory_blogs_tabs' ); ?> … … 58 63 * Fires inside the unordered list displaying blog types. 59 64 * 60 * @since BuddyPress (1.2.0)65 * @since 1.2.0 61 66 */ 62 67 do_action( 'bp_blogs_directory_blog_types' ); ?> … … 73 78 * Fires inside the unordered list displaying blog sub-types. 74 79 * 75 * @since BuddyPress (1.5.0)80 * @since 1.5.0 76 81 */ 77 82 do_action( 'bp_blogs_directory_blog_sub_types' ); ?> … … 90 95 * Fires inside the select input listing blogs orderby options. 91 96 * 92 * @since BuddyPress (1.2.0)97 * @since 1.2.0 93 98 */ 94 99 do_action( 'bp_blogs_directory_order_options' ); ?> … … 110 115 * Fires inside and displays the blogs content. 111 116 * 112 * @since BuddyPress (1.1.0)117 * @since 1.1.0 113 118 */ 114 119 do_action( 'bp_directory_blogs_content' ); ?> … … 121 126 * Fires after the display of the blogs listing content. 122 127 * 123 * @since BuddyPress (1.1.0)128 * @since 1.1.0 124 129 */ 125 130 do_action( 'bp_after_directory_blogs_content' ); ?> … … 132 137 * Fires at the bottom of the blogs directory template file. 133 138 * 134 * @since BuddyPress (1.5.0)139 * @since 1.5.0 135 140 */ 136 141 do_action( 'bp_after_directory_blogs' ); ?> … … 143 148 * Fires at the bottom of the blogs directory template file. 144 149 * 145 * @since BuddyPress (2.3.0)150 * @since 2.3.0 146 151 */ 147 152 do_action( 'bp_after_directory_blogs_page' ); -
trunk/src/bp-templates/bp-legacy/buddypress/forums/forums-loop.php
r9819 r10150 1 1 <?php 2 3 2 /** 4 3 * BuddyPress - Forums Loop … … 17 16 * Fires at the start of the forums loop. 18 17 * 19 * @since BuddyPress (1.2.6)18 * @since 1.2.6 20 19 */ 21 20 do_action( 'bp_before_forums_loop' ); ?> … … 44 43 * Fires before the display of the forums list. 45 44 * 46 * @since BuddyPress (1.1.0)45 * @since 1.1.0 47 46 */ 48 47 do_action( 'bp_before_directory_forums_list' ); ?> … … 60 59 * Fires at the end of <tr> row holding the <th> tags. 61 60 * 62 * @since BuddyPress (1.2.4)61 * @since 1.2.4 63 62 */ 64 63 do_action( 'bp_directory_forums_extra_cell_head' ); ?> … … 118 117 * Fires at the end of <tr> row holding the <td> tags. 119 118 * 120 * @since BuddyPress (1.1.0)119 * @since 1.1.0 121 120 */ 122 121 do_action( 'bp_directory_forums_extra_cell' ); ?> … … 129 128 * Fires after the <tr> for a forum listing display. 130 129 * 131 * @since BuddyPress (1.1.0)130 * @since 1.1.0 132 131 */ 133 132 do_action( 'bp_directory_forums_extra_row' ); ?> … … 143 142 * Fires after the display of the forums list. 144 143 * 145 * @since BuddyPress (1.1.0)144 * @since 1.1.0 146 145 */ 147 146 do_action( 'bp_after_directory_forums_list' ); ?> … … 172 171 * Fires at the end of the forums loop. 173 172 * 174 * @since BuddyPress (1.2.6)173 * @since 1.2.6 175 174 */ 176 175 do_action( 'bp_after_forums_loop' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/forums/index.php
r10101 r10150 6 6 * Fires at the start of the forums template. 7 7 * 8 * @since BuddyPress (1.5.0)8 * @since 1.5.0 9 9 */ 10 10 do_action( 'bp_before_directory_forums' ); ?> … … 17 17 * Fires before the display of the forums content. 18 18 * 19 * @since BuddyPress (1.1.0)19 * @since 1.1.0 20 20 */ 21 21 do_action( 'bp_before_directory_forums_content' ); ?> … … 33 33 * Fires before the display of the forum topics. 34 34 * 35 * @since BuddyPress (1.5.0)35 * @since 1.5.0 36 36 */ 37 37 do_action( 'bp_before_topics' ); ?> … … 54 54 * Fires inside the forum group types list. 55 55 * 56 * @since BuddyPress (1.2.0)56 * @since 1.2.0 57 57 */ 58 58 do_action( 'bp_forums_directory_group_types' ); ?> … … 69 69 * Fires inside the forum group sub-types list. 70 70 * 71 * @since BuddyPress (1.5.0)71 * @since 1.5.0 72 72 */ 73 73 do_action( 'bp_forums_directory_group_sub_types' ); ?> … … 86 86 * Fires inside the select input for forums order options. 87 87 * 88 * @since BuddyPress (1.2.0)88 * @since 1.2.0 89 89 */ 90 90 do_action( 'bp_forums_directory_order_options' ); ?> … … 106 106 * Fires and displays the forums content. 107 107 * 108 * @since BuddyPress (1.1.0)108 * @since 1.1.0 109 109 */ 110 110 do_action( 'bp_directory_forums_content' ); ?> … … 119 119 * Fires after the display of the forums. 120 120 * 121 * @since BuddyPress (1.5.0)121 * @since 1.5.0 122 122 */ 123 123 do_action( 'bp_after_directory_forums' ); ?> … … 128 128 * Fires before the display of the new topic form. 129 129 * 130 * @since BuddyPress (1.5.0)130 * @since 1.5.0 131 131 */ 132 132 do_action( 'bp_before_new_topic_form' ); ?> … … 145 145 * Fires inside the new topic form tag and before input display. 146 146 * 147 * @since BuddyPress (1.0.0)147 * @since 1.0.0 148 148 */ 149 149 do_action( 'groups_forum_new_topic_before' ); ?> … … 188 188 * Fires before the new topic form submit actions. 189 189 * 190 * @since BuddyPress (1.0.0)190 * @since 1.0.0 191 191 */ 192 192 do_action( 'groups_forum_new_topic_after' ); ?> … … 219 219 * Fires after the display of the new topic form. 220 220 * 221 * @since BuddyPress (1.5.0)221 * @since 1.5.0 222 222 */ 223 223 do_action( 'bp_after_new_topic_form' ); ?> … … 228 228 * Fires before the display of the forums content. 229 229 * 230 * @since BuddyPress (1.1.0)230 * @since 1.1.0 231 231 */ 232 232 do_action( 'bp_after_directory_forums_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/create.php
r10129 r10150 1 1 <?php 2 /** 3 * BuddyPress - Groups Create 4 * 5 * @package BuddyPress 6 * @subpackage bp-legacy 7 */ 2 8 3 9 /** 4 10 * Fires at the top of the groups creation template file. 5 11 * 6 * @since BuddyPress (1.7.0)12 * @since 1.7.0 7 13 */ 8 14 do_action( 'bp_before_create_group_page' ); ?> … … 15 21 * Fires before the display of group creation content. 16 22 * 17 * @since BuddyPress (1.6.0)23 * @since 1.6.0 18 24 */ 19 25 do_action( 'bp_before_create_group_content_template' ); ?> … … 26 32 * Fires before the display of group creation. 27 33 * 28 * @since BuddyPress (1.2.0)34 * @since 1.2.0 29 35 */ 30 36 do_action( 'bp_before_create_group' ); ?> … … 53 59 * Fires before the display of the group details creation step. 54 60 * 55 * @since BuddyPress (1.1.0)61 * @since 1.1.0 56 62 */ 57 63 do_action( 'bp_before_group_details_creation_step' ); ?> … … 72 78 * Fires after the display of the group details creation step. 73 79 * 74 * @since BuddyPress (1.1.0)80 * @since 1.1.0 75 81 */ 76 82 do_action( 'bp_after_group_details_creation_step' ); … … 89 95 * Fires before the display of the group settings creation step. 90 96 * 91 * @since BuddyPress (1.1.0)97 * @since 1.1.0 92 98 */ 93 99 do_action( 'bp_before_group_settings_creation_step' ); ?> … … 163 169 * Fires after the display of the group settings creation step. 164 170 * 165 * @since BuddyPress (1.1.0)171 * @since 1.1.0 166 172 */ 167 173 do_action( 'bp_after_group_settings_creation_step' ); ?> … … 179 185 * Fires before the display of the group avatar creation step. 180 186 * 181 * @since BuddyPress (1.1.0)187 * @since 1.1.0 182 188 */ 183 189 do_action( 'bp_before_group_avatar_creation_step' ); ?> … … 207 213 * Load the Avatar UI templates 208 214 * 209 * @since BuddyPress (2.3.0)215 * @since 2.3.0 210 216 */ 211 217 bp_avatar_get_templates(); ?> … … 239 245 * Fires after the display of the group avatar creation step. 240 246 * 241 * @since BuddyPress (1.1.0)247 * @since 1.1.0 242 248 */ 243 249 do_action( 'bp_after_group_avatar_creation_step' ); ?> … … 255 261 * Fires before the display of the group invites creation step. 256 262 * 257 * @since BuddyPress (1.1.0)263 * @since 1.1.0 258 264 */ 259 265 do_action( 'bp_before_group_invites_creation_step' ); ?> … … 323 329 * Fires after the display of the group invites creation step. 324 330 * 325 * @since BuddyPress (1.1.0)331 * @since 1.1.0 326 332 */ 327 333 do_action( 'bp_after_group_invites_creation_step' ); ?> … … 336 342 * Allows plugins to add custom group creation steps. 337 343 * 338 * @since BuddyPress (1.1.0)344 * @since 1.1.0 339 345 */ 340 346 do_action( 'groups_custom_create_steps' ); ?> … … 345 351 * Fires before the display of the group creation step buttons. 346 352 * 347 * @since BuddyPress (1.1.0)353 * @since 1.1.0 348 354 */ 349 355 do_action( 'bp_before_group_creation_step_buttons' ); ?> … … 389 395 * Fires after the display of the group creation step buttons. 390 396 * 391 * @since BuddyPress (1.1.0)397 * @since 1.1.0 392 398 */ 393 399 do_action( 'bp_after_group_creation_step_buttons' ); ?> … … 401 407 * Fires and displays the groups directory content. 402 408 * 403 * @since BuddyPress (1.1.0)409 * @since 1.1.0 404 410 */ 405 411 do_action( 'bp_directory_groups_content' ); ?> … … 412 418 * Fires after the display of group creation. 413 419 * 414 * @since BuddyPress (1.2.0)420 * @since 1.2.0 415 421 */ 416 422 do_action( 'bp_after_create_group' ); ?> … … 423 429 * Fires after the display of group creation content. 424 430 * 425 * @since BuddyPress (1.6.0)431 * @since 1.6.0 426 432 */ 427 433 do_action( 'bp_after_create_group_content_template' ); ?> … … 434 440 * Fires at the bottom of the groups creation template file. 435 441 * 436 * @since BuddyPress (1.7.0)442 * @since 1.7.0 437 443 */ 438 444 do_action( 'bp_after_create_group_page' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/groups-loop.php
r9896 r10150 1 1 <?php 2 3 2 /** 4 3 * BuddyPress - Groups Loop … … 17 16 * Fires before the display of groups from the groups loop. 18 17 * 19 * @since BuddyPress (1.2.0)18 * @since 1.2.0 20 19 */ 21 20 do_action( 'bp_before_groups_loop' ); ?> … … 44 43 * Fires before the listing of the groups list. 45 44 * 46 * @since BuddyPress (1.1.0)45 * @since 1.1.0 47 46 */ 48 47 do_action( 'bp_before_directory_groups_list' ); ?> … … 70 69 * Fires inside the listing of an individual group listing item. 71 70 * 72 * @since BuddyPress (1.1.0)71 * @since 1.1.0 73 72 */ 74 73 do_action( 'bp_directory_groups_item' ); ?> … … 83 82 * Fires inside the action section of an individual group listing item. 84 83 * 85 * @since BuddyPress (1.1.0)84 * @since 1.1.0 86 85 */ 87 86 do_action( 'bp_directory_groups_actions' ); ?> … … 107 106 * Fires after the listing of the groups list. 108 107 * 109 * @since BuddyPress (1.1.0)108 * @since 1.1.0 110 109 */ 111 110 do_action( 'bp_after_directory_groups_list' ); ?> … … 140 139 * Fires after the display of groups from the groups loop. 141 140 * 142 * @since BuddyPress (1.2.0)141 * @since 1.2.0 143 142 */ 144 143 do_action( 'bp_after_groups_loop' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/index.php
r9890 r10150 1 1 <?php 2 /** 3 * BuddyPress - Groups 4 * 5 * @package BuddyPress 6 * @subpackage bp-legacy 7 */ 2 8 3 9 /** 4 10 * Fires at the top of the groups directory template file. 5 11 * 6 * @since BuddyPress (1.5.0)12 * @since 1.5.0 7 13 */ 8 14 do_action( 'bp_before_directory_groups_page' ); ?> … … 15 21 * Fires before the display of the groups. 16 22 * 17 * @since BuddyPress (1.1.0)23 * @since 1.1.0 18 24 */ 19 25 do_action( 'bp_before_directory_groups' ); ?> … … 24 30 * Fires before the display of the groups content. 25 31 * 26 * @since BuddyPress (1.1.0)32 * @since 1.1.0 27 33 */ 28 34 do_action( 'bp_before_directory_groups_content' ); ?> … … 52 58 * Fires inside the groups directory group filter input. 53 59 * 54 * @since BuddyPress (1.5.0)60 * @since 1.5.0 55 61 */ 56 62 do_action( 'bp_groups_directory_group_filter' ); ?> … … 66 72 * Fires inside the groups directory group types. 67 73 * 68 * @since BuddyPress (1.2.0)74 * @since 1.2.0 69 75 */ 70 76 do_action( 'bp_groups_directory_group_types' ); ?> … … 85 91 * Fires inside the groups directory group order options. 86 92 * 87 * @since BuddyPress (1.2.0)93 * @since 1.2.0 88 94 */ 89 95 do_action( 'bp_groups_directory_order_options' ); ?> … … 102 108 * Fires and displays the group content. 103 109 * 104 * @since BuddyPress (1.1.0)110 * @since 1.1.0 105 111 */ 106 112 do_action( 'bp_directory_groups_content' ); ?> … … 113 119 * Fires after the display of the groups content. 114 120 * 115 * @since BuddyPress (1.1.0)121 * @since 1.1.0 116 122 */ 117 123 do_action( 'bp_after_directory_groups_content' ); ?> … … 124 130 * Fires after the display of the groups. 125 131 * 126 * @since BuddyPress (1.1.0)132 * @since 1.1.0 127 133 */ 128 134 do_action( 'bp_after_directory_groups' ); ?> … … 135 141 * Fires at the bottom of the groups directory template file. 136 142 * 137 * @since BuddyPress (1.5.0)143 * @since 1.5.0 138 144 */ 139 145 do_action( 'bp_after_directory_groups_page' ); -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/activity.php
r9896 r10150 8 8 * Fires inside the syndication options list, after the RSS option. 9 9 * 10 * @since BuddyPress (1.2.0)10 * @since 1.2.0 11 11 */ 12 12 do_action( 'bp_group_activity_syndication_options' ); ?> … … 24 24 * Fires inside the select input for group activity filter options. 25 25 * 26 * @since BuddyPress (1.2.0)26 * @since 1.2.0 27 27 */ 28 28 do_action( 'bp_group_activity_filter_options' ); ?> … … 37 37 * Fires before the display of the group activity post form. 38 38 * 39 * @since BuddyPress (1.2.0)39 * @since 1.2.0 40 40 */ 41 41 do_action( 'bp_before_group_activity_post_form' ); ?> … … 52 52 * Fires after the display of the group activity post form. 53 53 * 54 * @since BuddyPress (1.2.0)54 * @since 1.2.0 55 55 */ 56 56 do_action( 'bp_after_group_activity_post_form' ); ?> … … 60 60 * Fires before the display of the group activities list. 61 61 * 62 * @since BuddyPress (1.2.0)62 * @since 1.2.0 63 63 */ 64 64 do_action( 'bp_before_group_activity_content' ); ?> … … 75 75 * Fires after the display of the group activities list. 76 76 * 77 * @since BuddyPress (1.2.0)77 * @since 1.2.0 78 78 */ 79 79 do_action( 'bp_after_group_activity_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/admin.php
r10128 r10150 12 12 * Fires inside the group admin form and before the content. 13 13 * 14 * @since BuddyPress (1.1.0)14 * @since 1.1.0 15 15 */ 16 16 do_action( 'bp_before_group_admin_content' ); ?> … … 24 24 * Fires before the display of group admin details. 25 25 * 26 * @since BuddyPress (1.1.0)26 * @since 1.1.0 27 27 */ 28 28 do_action( 'bp_before_group_details_admin' ); ?> … … 39 39 * Fires after the group description admin details. 40 40 * 41 * @since BuddyPress (1.0.0)41 * @since 1.0.0 42 42 */ 43 43 do_action( 'groups_custom_group_fields_editable' ); ?> … … 54 54 * Fires after the display of group admin details. 55 55 * 56 * @since BuddyPress (1.1.0)56 * @since 1.1.0 57 57 */ 58 58 do_action( 'bp_after_group_details_admin' ); ?> … … 71 71 * Fires before the group settings admin display. 72 72 * 73 * @since BuddyPress (1.1.0)73 * @since 1.1.0 74 74 */ 75 75 do_action( 'bp_before_group_settings_admin' ); ?> … … 142 142 * Fires after the group settings admin display. 143 143 * 144 * @since BuddyPress (1.1.0)144 * @since 1.1.0 145 145 */ 146 146 do_action( 'bp_after_group_settings_admin' ); ?> … … 176 176 * Load the Avatar UI templates 177 177 * 178 * @since BuddyPress (2.3.0)178 * @since 2.3.0 179 179 */ 180 180 bp_avatar_get_templates(); ?> … … 216 216 * Fires before the group manage members admin display. 217 217 * 218 * @since BuddyPress (1.1.0)218 * @since 1.1.0 219 219 */ 220 220 do_action( 'bp_before_group_manage_members_admin' ); ?> … … 327 327 * Fires inside the display of a member admin item in group management area. 328 328 * 329 * @since BuddyPress (1.1.0)329 * @since 1.1.0 330 330 */ 331 331 do_action( 'bp_group_manage_members_admin_item' ); ?> … … 353 353 * Fires after the group manage members admin display. 354 354 * 355 * @since BuddyPress (1.1.0)355 * @since 1.1.0 356 356 */ 357 357 do_action( 'bp_after_group_manage_members_admin' ); ?> … … 367 367 * Fires before the display of group membership requests admin. 368 368 * 369 * @since BuddyPress (1.1.0)369 * @since 1.1.0 370 370 */ 371 371 do_action( 'bp_before_group_membership_requests_admin' ); ?> … … 382 382 * Fires after the display of group membership requests admin. 383 383 * 384 * @since BuddyPress (1.1.0)384 * @since 1.1.0 385 385 */ 386 386 do_action( 'bp_after_group_membership_requests_admin' ); ?> … … 395 395 * Allows plugins to add custom group edit screens. 396 396 * 397 * @since BuddyPress (1.1.0)397 * @since 1.1.0 398 398 */ 399 399 do_action( 'groups_custom_edit_steps' ); ?> … … 407 407 * Fires before the display of group delete admin. 408 408 * 409 * @since BuddyPress (1.1.0)409 * @since 1.1.0 410 410 */ 411 411 do_action( 'bp_before_group_delete_admin' ); ?> … … 422 422 * Fires after the display of group delete admin. 423 423 * 424 * @since BuddyPress (1.1.0)424 * @since 1.1.0 425 425 */ 426 426 do_action( 'bp_after_group_delete_admin' ); ?> … … 442 442 * Fires inside the group admin form and after the content. 443 443 * 444 * @since BuddyPress (1.1.0)444 * @since 1.1.0 445 445 */ 446 446 do_action( 'bp_after_group_admin_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/forum.php
r10102 r10150 1 1 <?php 2 /** 3 * BuddyPress - Groups Single Forum 4 * @package BuddyPress 5 * @subpackage bp-legacy 6 */ 2 7 3 8 /** 4 9 * Fires before the display of a group's forum content. 5 10 * 6 * @since BuddyPress (1.2.0)11 * @since 1.2.0 7 12 */ 8 13 do_action( 'bp_before_group_forum_content' ); … … 71 76 * Fires after the display of a group's forum content. 72 77 * 73 * @since BuddyPress (1.2.0)78 * @since 1.2.0 74 79 */ 75 80 do_action( 'bp_after_group_forum_content' ); ?> … … 87 92 * Fires before the display of a group forum new post form. 88 93 * 89 * @since BuddyPress (1.2.0)94 * @since 1.2.0 90 95 */ 91 96 do_action( 'bp_before_group_forum_post_new' ); ?> … … 112 117 * Fires after the display of a group forum new post form. 113 118 * 114 * @since BuddyPress (1.2.0)119 * @since 1.2.0 115 120 */ 116 121 do_action( 'bp_after_group_forum_post_new' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/forum/edit.php
r10104 r10150 1 1 <?php 2 /** 3 * BuddyPress - Groups Single Forum Edit 4 * @package BuddyPress 5 * @subpackage bp-legacy 6 */ 2 7 3 8 /** 4 9 * Fires at the top of the group forum edit form. 5 10 * 6 * @since BuddyPress (1.2.4)11 * @since 1.2.4 7 12 */ 8 13 do_action( 'bp_before_group_forum_edit_form' ); ?> … … 47 52 * Fires at the end of the group forum topic meta section. 48 53 * 49 * @since BuddyPress (1.2.5)54 * @since 1.2.5 50 55 */ 51 56 do_action( 'bp_group_forum_topic_meta' ); ?> … … 62 67 * Fires before the group forum topic form fields. 63 68 * 64 * @since BuddyPress (1.2.0)69 * @since 1.2.0 65 70 */ 66 71 do_action( 'bp_group_before_edit_forum_topic' ); ?> … … 80 85 * Fires after the group forum topic form fields. 81 86 * 82 * @since BuddyPress (1.2.0)87 * @since 1.2.0 83 88 */ 84 89 do_action( 'bp_group_after_edit_forum_topic' ); ?> … … 99 104 * Fires before the group edit forum textarea. 100 105 * 101 * @since BuddyPress (1.2.0)106 * @since 1.2.0 102 107 */ 103 108 do_action( 'bp_group_before_edit_forum_post' ); ?> … … 110 115 * Fires after the group edit forum textarea. 111 116 * 112 * @since BuddyPress (1.2.0)117 * @since 1.2.0 113 118 */ 114 119 do_action( 'bp_group_after_edit_forum_post' ); ?> … … 137 142 * Fires at the end of the group forum edit form. 138 143 * 139 * @since BuddyPress (1.2.4)144 * @since 1.2.4 140 145 */ 141 146 do_action( 'bp_after_group_forum_edit_form' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/forum/topic.php
r9896 r10150 1 1 <?php 2 /** 3 * BuddyPress - Groups Single Forum Topic 4 * @package BuddyPress 5 * @subpackage bp-legacy 6 */ 2 7 3 8 /** 4 9 * Fires at the top of the group forum topic template. 5 10 * 6 * @since BuddyPress (1.2.4)11 * @since 1.2.4 7 12 */ 8 13 do_action( 'bp_before_group_forum_topic' ); ?> … … 58 63 * Fires at the end of the group forum topic meta markup. 59 64 * 60 * @since BuddyPress (1.2.5)65 * @since 1.2.5 61 66 */ 62 67 do_action( 'bp_group_forum_topic_meta' ); ?> … … 88 93 * Fires before the listing of the group forum topic posts. 89 94 * 90 * @since BuddyPress (1.2.4)95 * @since 1.2.4 91 96 */ 92 97 do_action( 'bp_before_group_forum_topic_posts' ); ?> … … 117 122 * Fires inside the group forum post meta markup. 118 123 * 119 * @since BuddyPress (1.2.5)124 * @since 1.2.5 120 125 */ 121 126 do_action( 'bp_group_forum_post_meta' ); ?> … … 133 138 * Fires before the listing of the group forum topic posts. 134 139 * 135 * @since BuddyPress (1.2.4)140 * @since 1.2.4 136 141 */ 137 142 do_action( 'bp_after_group_forum_topic_posts' ); ?> … … 175 180 * Fires before the display of the group forum new reply section. 176 181 * 177 * @since BuddyPress (1.0.0)182 * @since 1.0.0 178 183 */ 179 184 do_action( 'groups_forum_new_reply_before' ); ?> … … 192 197 * Fires after the display of the group forum new reply section. 193 198 * 194 * @since BuddyPress (1.0.0)199 * @since 1.0.0 195 200 */ 196 201 do_action( 'groups_forum_new_reply_after' ); ?> … … 218 223 * Fires at the end of the group forum topic template. 219 224 * 220 * @since BuddyPress (1.2.4)225 * @since 1.2.4 221 226 */ 222 227 do_action( 'bp_after_group_forum_topic' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/group-header.php
r9828 r10150 1 1 <?php 2 /** 3 * BuddyPress - Groups Header 4 * @package BuddyPress 5 * @subpackage bp-legacy 6 */ 2 7 3 8 /** 4 9 * Fires before the display of a group's header. 5 10 * 6 * @since BuddyPress (1.2.0)11 * @since 1.2.0 7 12 */ 8 13 do_action( 'bp_before_group_header' ); … … 21 26 * Fires after the display of the group's administrators. 22 27 * 23 * @since BuddyPress (1.1.0)28 * @since 1.1.0 24 29 */ 25 30 do_action( 'bp_after_group_menu_admins' ); … … 30 35 * Fires before the display of the group's moderators, if there are any. 31 36 * 32 * @since BuddyPress (1.1.0)37 * @since 1.1.0 33 38 */ 34 39 do_action( 'bp_before_group_menu_mods' ); ?> … … 41 46 * Fires after the display of the group's moderators, if there are any. 42 47 * 43 * @since BuddyPress (1.1.0)48 * @since 1.1.0 44 49 */ 45 50 do_action( 'bp_after_group_menu_mods' ); … … 70 75 * Fires before the display of the group's header meta. 71 76 * 72 * @since BuddyPress (1.2.0)77 * @since 1.2.0 73 78 */ 74 79 do_action( 'bp_before_group_header_meta' ); ?> … … 85 90 * Fires in the group header actions section. 86 91 * 87 * @since BuddyPress (1.2.6)92 * @since 1.2.6 88 93 */ 89 94 do_action( 'bp_group_header_actions' ); ?> … … 96 101 * Fires after the group header actions section. 97 102 * 98 * @since BuddyPress (1.2.0)103 * @since 1.2.0 99 104 */ 100 105 do_action( 'bp_group_header_meta' ); ?> … … 108 113 * Fires after the display of a group's header. 109 114 * 110 * @since BuddyPress (1.2.0)115 * @since 1.2.0 111 116 */ 112 117 do_action( 'bp_after_group_header' ); -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/home.php
r9819 r10150 8 8 * Fires before the display of the group home content. 9 9 * 10 * @since BuddyPress (1.2.0)10 * @since 1.2.0 11 11 */ 12 12 do_action( 'bp_before_group_home_content' ); ?> … … 29 29 * Fires after the display of group options navigation. 30 30 * 31 * @since BuddyPress (1.2.0)31 * @since 1.2.0 32 32 */ 33 33 do_action( 'bp_group_options_nav' ); ?> … … 44 44 * Fires before the display of the group home body. 45 45 * 46 * @since BuddyPress (1.2.0)46 * @since 1.2.0 47 47 */ 48 48 do_action( 'bp_before_group_body' ); … … 77 77 * Fires before the display of the group status message. 78 78 * 79 * @since BuddyPress (1.1.0)79 * @since 1.1.0 80 80 */ 81 81 do_action( 'bp_before_group_status_message' ); ?> … … 90 90 * Fires after the display of the group status message. 91 91 * 92 * @since BuddyPress (1.1.0)92 * @since 1.1.0 93 93 */ 94 94 do_action( 'bp_after_group_status_message' ); … … 127 127 * Fires after the display of the group home body. 128 128 * 129 * @since BuddyPress (1.2.0)129 * @since 1.2.0 130 130 */ 131 131 do_action( 'bp_after_group_body' ); ?> … … 138 138 * Fires after the display of the group home content. 139 139 * 140 * @since BuddyPress (1.2.0)140 * @since 1.2.0 141 141 */ 142 142 do_action( 'bp_after_group_home_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/invites-loop.php
r9854 r10150 21 21 * Fires before the display of the group send invites list. 22 22 * 23 * @since BuddyPress (1.1.0)23 * @since 1.1.0 24 24 */ 25 25 do_action( 'bp_before_group_send_invites_list' ); ?> … … 59 59 * Fires inside the invite item listing. 60 60 * 61 * @since BuddyPress (1.1.0)61 * @since 1.1.0 62 62 */ 63 63 do_action( 'bp_group_send_invites_item' ); ?> … … 71 71 * Fires inside the action area for a send invites item. 72 72 * 73 * @since BuddyPress (1.1.0)73 * @since 1.1.0 74 74 */ 75 75 do_action( 'bp_group_send_invites_item_action' ); ?> … … 110 110 * Fires after the display of the group send invites list. 111 111 * 112 * @since BuddyPress (1.1.0)112 * @since 1.1.0 113 113 */ 114 114 do_action( 'bp_after_group_send_invites_list' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/members.php
r9896 r10150 6 6 * Fires before the display of the group members content. 7 7 * 8 * @since BuddyPress (1.1.0)8 * @since 1.1.0 9 9 */ 10 10 do_action( 'bp_before_group_members_content' ); ?> … … 31 31 * Fires before the display of the group members list. 32 32 * 33 * @since BuddyPress (1.1.0)33 * @since 1.1.0 34 34 */ 35 35 do_action( 'bp_before_group_members_list' ); ?> … … 54 54 * Fires inside the listing of an individual group member listing item. 55 55 * 56 * @since BuddyPress (1.1.0)56 * @since 1.1.0 57 57 */ 58 58 do_action( 'bp_group_members_list_item' ); ?> … … 69 69 * Fires inside the action section of an individual group member listing item. 70 70 * 71 * @since BuddyPress (1.1.0)71 * @since 1.1.0 72 72 */ 73 73 do_action( 'bp_group_members_list_item_action' ); ?> … … 87 87 * Fires after the display of the group members list. 88 88 * 89 * @since BuddyPress (1.1.0)89 * @since 1.1.0 90 90 */ 91 91 do_action( 'bp_after_group_members_list' ); ?> … … 112 112 * Fires after the display of the group members content. 113 113 * 114 * @since BuddyPress (1.1.0)114 * @since 1.1.0 115 115 */ 116 116 do_action( 'bp_after_group_members_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/plugins.php
r9819 r10150 1 1 <?php 2 /** 3 * BuddyPress - Groups plugins 4 * @package BuddyPress 5 * @subpackage bp-legacy 6 */ 2 7 3 8 /** 4 9 * Fires before the display of content for plugins using the BP_Group_Extension. 5 10 * 6 * @since BuddyPress (1.2.0)11 * @since 1.2.0 7 12 */ 8 13 do_action( 'bp_before_group_plugin_template' ); ?> … … 13 18 * Fires and displays content for plugins using the BP_Group_Extension. 14 19 * 15 * @since BuddyPress (1.0.0)20 * @since 1.0.0 16 21 */ 17 22 do_action( 'bp_template_content' ); ?> … … 22 27 * Fires after the display of content for plugins using the BP_Group_Extension. 23 28 * 24 * @since BuddyPress (1.2.0)29 * @since 1.2.0 25 30 */ 26 31 do_action( 'bp_after_group_plugin_template' ); -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/request-membership.php
r9819 r10150 1 1 <?php 2 /** 3 * BuddyPress - Groups Request Membership 4 * @package BuddyPress 5 * @subpackage bp-legacy 6 */ 2 7 3 8 /** 4 9 * Fires before the display of the group membership request form. 5 10 * 6 * @since BuddyPress (1.1.0)11 * @since 1.1.0 7 12 */ 8 13 do_action( 'bp_before_group_request_membership_content' ); ?> … … 20 25 * Fires after the textarea for the group membership request form. 21 26 * 22 * @since BuddyPress (1.1.0)27 * @since 1.1.0 23 28 */ 24 29 do_action( 'bp_group_request_membership_content' ); ?> … … 35 40 * Fires after the display of the group membership request form. 36 41 * 37 * @since BuddyPress (1.1.0)42 * @since 1.1.0 38 43 */ 39 44 do_action( 'bp_after_group_request_membership_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/requests-loop.php
r9819 r10150 30 30 * Fires inside the groups membership request list loop. 31 31 * 32 * @since BuddyPress (1.1.0)32 * @since 1.1.0 33 33 */ 34 34 do_action( 'bp_group_membership_requests_admin_item' ); ?> … … 45 45 * Fires inside the list of membership request actions. 46 46 * 47 * @since BuddyPress (1.1.0)47 * @since 1.1.0 48 48 */ 49 49 do_action( 'bp_group_membership_requests_admin_item_action' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/groups/single/send-invites.php
r9896 r10150 1 1 <?php 2 /** 3 * BuddyPress - Groups Send Invites 4 * @package BuddyPress 5 * @subpackage bp-legacy 6 */ 2 7 3 8 /** 4 9 * Fires before the send invites content. 5 10 * 6 * @since BuddyPress (1.1.0)11 * @since 1.1.0 7 12 */ 8 13 do_action( 'bp_before_group_send_invites_content' ); ?> … … 54 59 * Fires after the send invites content. 55 60 * 56 * @since BuddyPress (1.2.0)61 * @since 1.2.0 57 62 */ 58 63 do_action( 'bp_after_group_send_invites_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/activate.php
r9819 r10150 6 6 * Fires before the display of the member activation page. 7 7 * 8 * @since BuddyPress (1.1.0)8 * @since 1.1.0 9 9 */ 10 10 do_action( 'bp_before_activation_page' ); ?> … … 22 22 * Fires before the display of the member activation page content. 23 23 * 24 * @since BuddyPress (1.1.0)24 * @since 1.1.0 25 25 */ 26 26 do_action( 'bp_before_activate_content' ); ?> … … 56 56 * Fires after the display of the member activation page content. 57 57 * 58 * @since BuddyPress (1.1.0)58 * @since 1.1.0 59 59 */ 60 60 do_action( 'bp_after_activate_content' ); ?> … … 67 67 * Fires after the display of the member activation page. 68 68 * 69 * @since BuddyPress (1.1.0)69 * @since 1.1.0 70 70 */ 71 71 do_action( 'bp_after_activation_page' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/index.php
r9890 r10150 1 1 <?php 2 /** 3 * BuddyPress - Members 4 * @package BuddyPress 5 * @subpackage bp-legacy 6 */ 2 7 3 8 /** 4 9 * Fires at the top of the members directory template file. 5 10 * 6 * @since BuddyPress (1.5.0)11 * @since 1.5.0 7 12 */ 8 13 do_action( 'bp_before_directory_members_page' ); ?> … … 15 20 * Fires before the display of the members. 16 21 * 17 * @since BuddyPress (1.1.0)22 * @since 1.1.0 18 23 */ 19 24 do_action( 'bp_before_directory_members' ); ?> … … 24 29 * Fires before the display of the members content. 25 30 * 26 * @since BuddyPress (1.1.0)31 * @since 1.1.0 27 32 */ 28 33 do_action( 'bp_before_directory_members_content' ); ?> … … 37 42 * Fires before the display of the members list tabs. 38 43 * 39 * @since BuddyPress (1.8.0)44 * @since 1.8.0 40 45 */ 41 46 do_action( 'bp_before_directory_members_tabs' ); ?> … … 56 61 * Fires inside the members directory member types. 57 62 * 58 * @since BuddyPress (1.2.0)63 * @since 1.2.0 59 64 */ 60 65 do_action( 'bp_members_directory_member_types' ); ?> … … 70 75 * Fires inside the members directory member sub-types. 71 76 * 72 * @since BuddyPress (1.5.0)77 * @since 1.5.0 73 78 */ 74 79 do_action( 'bp_members_directory_member_sub_types' ); ?> … … 89 94 * Fires inside the members directory member order options. 90 95 * 91 * @since BuddyPress (1.2.0)96 * @since 1.2.0 92 97 */ 93 98 do_action( 'bp_members_directory_order_options' ); ?> … … 106 111 * Fires and displays the members content. 107 112 * 108 * @since BuddyPress (1.1.0)113 * @since 1.1.0 109 114 */ 110 115 do_action( 'bp_directory_members_content' ); ?> … … 117 122 * Fires after the display of the members content. 118 123 * 119 * @since BuddyPress (1.1.0)124 * @since 1.1.0 120 125 */ 121 126 do_action( 'bp_after_directory_members_content' ); ?> … … 128 133 * Fires after the display of the members. 129 134 * 130 * @since BuddyPress (1.1.0)135 * @since 1.1.0 131 136 */ 132 137 do_action( 'bp_after_directory_members' ); ?> … … 139 144 * Fires at the bottom of the members directory template file. 140 145 * 141 * @since BuddyPress (1.5.0)146 * @since 1.5.0 142 147 */ 143 148 do_action( 'bp_after_directory_members_page' ); -
trunk/src/bp-templates/bp-legacy/buddypress/members/members-loop.php
r9896 r10150 1 1 <?php 2 3 2 /** 4 3 * BuddyPress - Members Loop … … 10 9 */ 11 10 12 ?>13 14 <?php15 16 11 /** 17 12 * Fires before the display of the members loop. 18 13 * 19 * @since BuddyPress (1.2.0)14 * @since 1.2.0 20 15 */ 21 16 do_action( 'bp_before_members_loop' ); ?> … … 48 43 * Fires before the display of the members list. 49 44 * 50 * @since BuddyPress (1.1.0)45 * @since 1.1.0 51 46 */ 52 47 do_action( 'bp_before_directory_members_list' ); ?> … … 80 75 * Fires inside the display of a directory member item. 81 76 * 82 * @since BuddyPress (1.1.0)77 * @since 1.1.0 83 78 */ 84 79 do_action( 'bp_directory_members_item' ); ?> … … 102 97 * Fires inside the members action HTML markup to display actions. 103 98 * 104 * @since BuddyPress (1.1.0)99 * @since 1.1.0 105 100 */ 106 101 do_action( 'bp_directory_members_actions' ); ?> … … 120 115 * Fires after the display of the members list. 121 116 * 122 * @since BuddyPress (1.1.0)117 * @since 1.1.0 123 118 */ 124 119 do_action( 'bp_after_directory_members_list' ); ?> … … 155 150 * Fires after the display of the members loop. 156 151 * 157 * @since BuddyPress (1.2.0)152 * @since 1.2.0 158 153 */ 159 154 do_action( 'bp_after_members_loop' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/register.php
r10103 r10150 6 6 * Fires at the top of the BuddyPress member registration page template. 7 7 * 8 * @since BuddyPress (1.1.0)8 * @since 1.1.0 9 9 */ 10 10 do_action( 'bp_before_register_page' ); ?> … … 24 24 * Fires before the display of the registration disabled message. 25 25 * 26 * @since BuddyPress (1.5.0)26 * @since 1.5.0 27 27 */ 28 28 do_action( 'bp_before_registration_disabled' ); ?> … … 35 35 * Fires after the display of the registration disabled message. 36 36 * 37 * @since BuddyPress (1.5.0)37 * @since 1.5.0 38 38 */ 39 39 do_action( 'bp_after_registration_disabled' ); ?> … … 54 54 * Fires before the display of member registration account details fields. 55 55 * 56 * @since BuddyPress (1.1.0)56 * @since 1.1.0 57 57 */ 58 58 do_action( 'bp_before_account_details_fields' ); ?> … … 70 70 * Fires and displays any member registration username errors. 71 71 * 72 * @since BuddyPress (1.1.0)72 * @since 1.1.0 73 73 */ 74 74 do_action( 'bp_signup_username_errors' ); ?> … … 81 81 * Fires and displays any member registration email errors. 82 82 * 83 * @since BuddyPress (1.1.0)83 * @since 1.1.0 84 84 */ 85 85 do_action( 'bp_signup_email_errors' ); ?> … … 92 92 * Fires and displays any member registration password errors. 93 93 * 94 * @since BuddyPress (1.1.0)94 * @since 1.1.0 95 95 */ 96 96 do_action( 'bp_signup_password_errors' ); ?> … … 104 104 * Fires and displays any member registration password confirmation errors. 105 105 * 106 * @since BuddyPress (1.1.0)106 * @since 1.1.0 107 107 */ 108 108 do_action( 'bp_signup_password_confirm_errors' ); ?> … … 114 114 * Fires and displays any extra member registration details fields. 115 115 * 116 * @since BuddyPress (1.9.0)116 * @since 1.9.0 117 117 */ 118 118 do_action( 'bp_account_details_fields' ); ?> … … 125 125 * Fires after the display of member registration account details fields. 126 126 * 127 * @since BuddyPress (1.1.0)127 * @since 1.1.0 128 128 */ 129 129 do_action( 'bp_after_account_details_fields' ); ?> … … 138 138 * Fires before the display of member registration xprofile fields. 139 139 * 140 * @since BuddyPress (1.2.4)140 * @since 1.2.4 141 141 */ 142 142 do_action( 'bp_before_signup_profile_fields' ); ?> … … 160 160 * Fires before the display of the visibility options for xprofile fields. 161 161 * 162 * @since BuddyPress (1.7.0)162 * @since 1.7.0 163 163 */ 164 164 do_action( 'bp_custom_profile_edit_fields_pre_visibility' ); … … 190 190 * Fires after the display of the visibility options for xprofile fields. 191 191 * 192 * @since BuddyPress (1.1.0)192 * @since 1.1.0 193 193 */ 194 194 do_action( 'bp_custom_profile_edit_fields' ); ?> … … 209 209 * Fires and displays any extra member registration xprofile fields. 210 210 * 211 * @since BuddyPress (1.9.0)211 * @since 1.9.0 212 212 */ 213 213 do_action( 'bp_signup_profile_fields' ); ?> … … 220 220 * Fires after the display of member registration xprofile fields. 221 221 * 222 * @since BuddyPress (1.1.0)222 * @since 1.1.0 223 223 */ 224 224 do_action( 'bp_after_signup_profile_fields' ); ?> … … 233 233 * Fires before the display of member registration blog details fields. 234 234 * 235 * @since BuddyPress (1.1.0)235 * @since 1.1.0 236 236 */ 237 237 do_action( 'bp_before_blog_details_fields' ); ?> … … 253 253 * Fires and displays any member registration blog URL errors. 254 254 * 255 * @since BuddyPress (1.1.0)255 * @since 1.1.0 256 256 */ 257 257 do_action( 'bp_signup_blog_url_errors' ); ?> … … 269 269 * Fires and displays any member registration blog title errors. 270 270 * 271 * @since BuddyPress (1.1.0)271 * @since 1.1.0 272 272 */ 273 273 do_action( 'bp_signup_blog_title_errors' ); ?> … … 280 280 * Fires and displays any member registration blog privacy errors. 281 281 * 282 * @since BuddyPress (1.1.0)282 * @since 1.1.0 283 283 */ 284 284 do_action( 'bp_signup_blog_privacy_errors' ); ?> … … 292 292 * Fires and displays any extra member registration blog details fields. 293 293 * 294 * @since BuddyPress (1.9.0)294 * @since 1.9.0 295 295 */ 296 296 do_action( 'bp_blog_details_fields' ); ?> … … 305 305 * Fires after the display of member registration blog details fields. 306 306 * 307 * @since BuddyPress (1.1.0)307 * @since 1.1.0 308 308 */ 309 309 do_action( 'bp_after_blog_details_fields' ); ?> … … 316 316 * Fires before the display of the registration submit buttons. 317 317 * 318 * @since BuddyPress (1.1.0)318 * @since 1.1.0 319 319 */ 320 320 do_action( 'bp_before_registration_submit_buttons' ); ?> … … 329 329 * Fires after the display of the registration submit buttons. 330 330 * 331 * @since BuddyPress (1.1.0)331 * @since 1.1.0 332 332 */ 333 333 do_action( 'bp_after_registration_submit_buttons' ); ?> … … 348 348 * Fires before the display of the registration confirmed messages. 349 349 * 350 * @since BuddyPress (1.5.0)350 * @since 1.5.0 351 351 */ 352 352 do_action( 'bp_before_registration_confirmed' ); ?> … … 363 363 * Fires after the display of the registration confirmed messages. 364 364 * 365 * @since BuddyPress (1.5.0)365 * @since 1.5.0 366 366 */ 367 367 do_action( 'bp_after_registration_confirmed' ); ?> … … 374 374 * Fires and displays any custom signup steps. 375 375 * 376 * @since BuddyPress (1.1.0)376 * @since 1.1.0 377 377 */ 378 378 do_action( 'bp_custom_signup_steps' ); ?> … … 387 387 * Fires at the bottom of the BuddyPress member registration page template. 388 388 * 389 * @since BuddyPress (1.1.0)389 * @since 1.1.0 390 390 */ 391 391 do_action( 'bp_after_register_page' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/activity.php
r9896 r10150 1 1 <?php 2 3 2 /** 4 3 * BuddyPress - Users Activity … … 27 26 * Fires inside the select input for member activity filter options. 28 27 * 29 * @since BuddyPress (1.2.0)28 * @since 1.2.0 30 29 */ 31 30 do_action( 'bp_member_activity_filter_options' ); ?> … … 41 40 * Fires before the display of the member activity post form. 42 41 * 43 * @since BuddyPress (1.2.0)42 * @since 1.2.0 44 43 */ 45 44 do_action( 'bp_before_member_activity_post_form' ); ?> … … 52 51 * Fires after the display of the member activity post form. 53 52 * 54 * @since BuddyPress (1.2.0)53 * @since 1.2.0 55 54 */ 56 55 do_action( 'bp_after_member_activity_post_form' ); … … 59 58 * Fires before the display of the member activities list. 60 59 * 61 * @since BuddyPress (1.2.0)60 * @since 1.2.0 62 61 */ 63 62 do_action( 'bp_before_member_activity_content' ); ?> … … 74 73 * Fires after the display of the member activities list. 75 74 * 76 * @since BuddyPress (1.2.0)75 * @since 1.2.0 77 76 */ 78 77 do_action( 'bp_after_member_activity_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/blogs.php
r9896 r10150 1 1 <?php 2 3 2 /** 4 3 * BuddyPress - Users Blogs … … 28 27 * Fires inside the members blogs order options select input. 29 28 * 30 * @since BuddyPress (1.2.0)29 * @since 1.2.0 31 30 */ 32 31 do_action( 'bp_member_blog_order_options' ); ?> … … 46 45 * Fires before the display of member blogs content. 47 46 * 48 * @since BuddyPress (1.2.0)47 * @since 1.2.0 49 48 */ 50 49 do_action( 'bp_before_member_blogs_content' ); ?> … … 61 60 * Fires after the display of member blogs content. 62 61 * 63 * @since BuddyPress (1.2.0)62 * @since 1.2.0 64 63 */ 65 64 do_action( 'bp_after_member_blogs_content' ); -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/forums.php
r9819 r10150 1 1 <?php 2 3 2 /** 4 3 * BuddyPress - Users Forums … … 27 26 * Fires inside the members forums order options select input. 28 27 * 29 * @since BuddyPress (1.2.0)28 * @since 1.2.0 30 29 */ 31 30 do_action( 'bp_forums_directory_order_options' ); ?> … … 46 45 * Fires before the display of member forums content. 47 46 * 48 * @since BuddyPress (1.5.0)47 * @since 1.5.0 49 48 */ 50 49 do_action( 'bp_before_member_forums_content' ); ?> … … 61 60 * Fires after the display of member forums content. 62 61 * 63 * @since BuddyPress (1.5.0)62 * @since 1.5.0 64 63 */ 65 64 do_action( 'bp_after_member_forums_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/forums/topics.php
r9819 r10150 1 1 <?php 2 /* 2 /** 3 3 * To change this template, choose Tools | Templates 4 4 * and open the template in the editor. 5 * 6 * @package BuddyPress 7 * @subpackage bp-legacy 5 8 */ 6 9 7 ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/friends.php
r9819 r10150 1 1 <?php 2 3 2 /** 4 3 * BuddyPress - Users Friends … … 29 28 * Fires inside the members friends order options select input. 30 29 * 31 * @since BuddyPress (2.0.0)30 * @since 2.0.0 32 31 */ 33 32 do_action( 'bp_member_friends_order_options' ); ?> … … 50 49 * Fires before the display of member friends content. 51 50 * 52 * @since BuddyPress (1.2.0)51 * @since 1.2.0 53 52 */ 54 53 do_action( 'bp_before_member_friends_content' ); ?> … … 65 64 * Fires after the display of member friends content. 66 65 * 67 * @since BuddyPress (1.2.0)66 * @since 1.2.0 68 67 */ 69 68 do_action( 'bp_after_member_friends_content' ); -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/friends/requests.php
r9896 r10150 4 4 * Fires before the display of member friend requests content. 5 5 * 6 * @since BuddyPress (1.2.0)6 * @since 1.2.0 7 7 */ 8 8 do_action( 'bp_before_member_friend_requests_content' ); ?> … … 44 44 * Fires inside the display of a member friend request item. 45 45 * 46 * @since BuddyPress (1.1.0)46 * @since 1.1.0 47 47 */ 48 48 do_action( 'bp_friend_requests_item' ); ?> … … 57 57 * Fires inside the member friend request actions markup. 58 58 * 59 * @since BuddyPress (1.1.0)59 * @since 1.1.0 60 60 */ 61 61 do_action( 'bp_friend_requests_item_action' ); ?> … … 71 71 * Fires and displays the member friend requests content. 72 72 * 73 * @since BuddyPress (1.1.0)73 * @since 1.1.0 74 74 */ 75 75 do_action( 'bp_friend_requests_content' ); ?> … … 104 104 * Fires after the display of member friend requests content. 105 105 * 106 * @since BuddyPress (1.2.0)106 * @since 1.2.0 107 107 */ 108 108 do_action( 'bp_after_member_friend_requests_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/groups.php
r9819 r10150 1 1 <?php 2 3 2 /** 4 3 * BuddyPress - Users Groups … … 30 29 * Fires inside the members group order options select input. 31 30 * 32 * @since BuddyPress (1.2.0)31 * @since 1.2.0 33 32 */ 34 33 do_action( 'bp_member_group_order_options' ); ?> … … 52 51 * Fires before the display of member groups content. 53 52 * 54 * @since BuddyPress (1.2.0)53 * @since 1.2.0 55 54 */ 56 55 do_action( 'bp_before_member_groups_content' ); ?> … … 67 66 * Fires after the display of member groups content. 68 67 * 69 * @since BuddyPress (1.2.0)68 * @since 1.2.0 70 69 */ 71 70 do_action( 'bp_after_member_groups_content' ); -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/groups/invites.php
r9896 r10150 1 1 <?php 2 /** 3 * BuddyPress - Members Single Group Invites 4 * @package BuddyPress 5 * @subpackage bp-legacy 6 */ 2 7 3 8 /** 4 9 * Fires before the display of member group invites content. 5 10 * 6 * @since BuddyPress (1.1.0)11 * @since 1.1.0 7 12 */ 8 13 do_action( 'bp_before_group_invites_content' ); ?> … … 32 37 * Fires inside the display of a member group invite item. 33 38 * 34 * @since BuddyPress (1.1.0)39 * @since 1.1.0 35 40 */ 36 41 do_action( 'bp_group_invites_item' ); ?> … … 45 50 * Fires inside the member group item action markup. 46 51 * 47 * @since BuddyPress (1.1.0)52 * @since 1.1.0 48 53 */ 49 54 do_action( 'bp_group_invites_item_action' ); ?> … … 68 73 * Fires after the display of member group invites content. 69 74 * 70 * @since BuddyPress (1.1.0)75 * @since 1.1.0 71 76 */ 72 77 do_action( 'bp_after_group_invites_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/home.php
r9896 r10150 6 6 * Fires before the display of member home content. 7 7 * 8 * @since BuddyPress (1.2.0)8 * @since 1.2.0 9 9 */ 10 10 do_action( 'bp_before_member_home_content' ); ?> … … 27 27 * Fires after the display of member options navigation. 28 28 * 29 * @since BuddyPress (1.2.4)29 * @since 1.2.4 30 30 */ 31 31 do_action( 'bp_member_options_nav' ); ?> … … 42 42 * Fires before the display of member body content. 43 43 * 44 * @since BuddyPress (1.2.0)44 * @since 1.2.0 45 45 */ 46 46 do_action( 'bp_before_member_body' ); … … 82 82 * Fires after the display of member body content. 83 83 * 84 * @since BuddyPress (1.2.0)84 * @since 1.2.0 85 85 */ 86 86 do_action( 'bp_after_member_body' ); ?> … … 93 93 * Fires after the display of member home content. 94 94 * 95 * @since BuddyPress (1.2.0)95 * @since 1.2.0 96 96 */ 97 97 do_action( 'bp_after_member_home_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/member-header.php
r9819 r10150 1 1 <?php 2 3 2 /** 4 3 * BuddyPress - Users Header … … 15 14 * Fires before the display of a member's header. 16 15 * 17 * @since BuddyPress (1.2.0)16 * @since 1.2.0 18 17 */ 19 18 do_action( 'bp_before_member_header' ); ?> … … 40 39 * Fires before the display of the member's header meta. 41 40 * 42 * @since BuddyPress (1.2.0)41 * @since 1.2.0 43 42 */ 44 43 do_action( 'bp_before_member_header_meta' ); ?> … … 63 62 * Fires in the member header actions section. 64 63 * 65 * @since BuddyPress (1.2.6)64 * @since 1.2.6 66 65 */ 67 66 do_action( 'bp_member_header_actions' ); ?> … … 77 76 * bp_member_profile_data( 'field=About Me' ); -- Pass the name of the field 78 77 * 79 * @since BuddyPress (1.2.0)78 * @since 1.2.0 80 79 */ 81 80 do_action( 'bp_profile_header_meta' ); … … 92 91 * Fires after the display of a member's header. 93 92 * 94 * @since BuddyPress (1.2.0)93 * @since 1.2.0 95 94 */ 96 95 do_action( 'bp_after_member_header' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages.php
r9896 r10150 1 1 <?php 2 3 2 /** 4 3 * BuddyPress - Users Messages … … 35 34 * Fires before the member messages content for inbox and sentbox. 36 35 * 37 * @since BuddyPress (1.2.0)36 * @since 1.2.0 38 37 */ 39 38 do_action( 'bp_before_member_messages_content' ); ?> … … 48 47 * Fires after the member messages content for inbox and sentbox. 49 48 * 50 * @since BuddyPress (1.2.0)49 * @since 1.2.0 51 50 */ 52 51 do_action( 'bp_after_member_messages_content' ); … … 69 68 * Fires before the member messages content for notices. 70 69 * 71 * @since BuddyPress (1.2.0)70 * @since 1.2.0 72 71 */ 73 72 do_action( 'bp_before_member_messages_content' ); ?> … … 82 81 * Fires after the member messages content for inbox and sentbox. 83 82 * 84 * @since BuddyPress (1.2.0)83 * @since 1.2.0 85 84 */ 86 85 do_action( 'bp_after_member_messages_content' ); -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/compose.php
r10086 r10150 6 6 * Fires before the display of message compose content. 7 7 * 8 * @since BuddyPress (1.1.0)8 * @since 1.1.0 9 9 */ 10 10 do_action( 'bp_before_messages_compose_content' ); ?> … … 35 35 * Fires after the display of message compose content. 36 36 * 37 * @since BuddyPress (1.1.0)37 * @since 1.1.0 38 38 */ 39 39 do_action( 'bp_after_messages_compose_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/message.php
r10048 r10150 22 22 * Fires before the single message header is displayed. 23 23 * 24 * @since BuddyPress (1.1.0)24 * @since 1.1.0 25 25 */ 26 26 do_action( 'bp_before_message_meta' ); ?> … … 51 51 * Fires after the single message header is displayed. 52 52 * 53 * @since BuddyPress (1.1.0)53 * @since 1.1.0 54 54 */ 55 55 do_action( 'bp_after_message_meta' ); ?> … … 62 62 * Fires before the message content for a private message. 63 63 * 64 * @since BuddyPress (1.1.0)64 * @since 1.1.0 65 65 */ 66 66 do_action( 'bp_before_message_content' ); ?> … … 77 77 * Fires after the message content for a private message. 78 78 * 79 * @since BuddyPress (1.1.0)79 * @since 1.1.0 80 80 */ 81 81 do_action( 'bp_after_message_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php
r10083 r10150 1 1 <?php 2 /** 3 * BuddyPress - Members Messages Loop 4 * @package BuddyPress 5 * @subpackage bp-legacy 6 */ 2 7 3 8 /** 4 9 * Fires before the members messages loop. 5 10 * 6 * @since BuddyPress (1.2.0)11 * @since 1.2.0 7 12 */ 8 13 do_action( 'bp_before_member_messages_loop' ); ?> … … 27 32 * Fires after the members messages pagination display. 28 33 * 29 * @since BuddyPress (1.2.0)34 * @since 1.2.0 30 35 */ 31 36 do_action( 'bp_after_member_messages_pagination' ); ?> … … 36 41 * Fires before the members messages threads. 37 42 * 38 * @since BuddyPress (1.2.0)43 * @since 1.2.0 39 44 */ 40 45 do_action( 'bp_before_member_messages_threads' ); ?> … … 58 63 * the related 'bp_messages_inbox_list_item' hook to add a <td> cell. 59 64 * 60 * @since BuddyPress (2.3.0)65 * @since 2.3.0 61 66 */ 62 67 do_action( 'bp_messages_inbox_list_header' ); ?> … … 108 113 * related 'bp_messages_inbox_list_header' hook to add a <th> header cell. 109 114 * 110 * @since BuddyPress (1.1.0)115 * @since 1.1.0 111 116 */ 112 117 do_action( 'bp_messages_inbox_list_item' ); ?> … … 147 152 * Fires after the members messages threads. 148 153 * 149 * @since BuddyPress (1.2.0)154 * @since 1.2.0 150 155 */ 151 156 do_action( 'bp_after_member_messages_threads' ); ?> … … 156 161 * Fires and displays member messages options. 157 162 * 158 * @since BuddyPress (1.2.0)163 * @since 1.2.0 159 164 */ 160 165 do_action( 'bp_after_member_messages_options' ); ?> … … 173 178 * Fires after the members messages loop. 174 179 * 175 * @since BuddyPress (1.2.0)180 * @since 1.2.0 176 181 */ 177 182 do_action( 'bp_after_member_messages_loop' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/notices-loop.php
r9863 r10150 1 1 <?php 2 /** 3 * BuddyPress - Members Single Messages Notice Loop 4 * @package BuddyPress 5 * @subpackage bp-legacy 6 */ 2 7 3 8 /** 4 9 * Fires before the members notices loop. 5 10 * 6 * @since BuddyPress (1.2.0)11 * @since 1.2.0 7 12 */ 8 13 do_action( 'bp_before_notices_loop' ); ?> … … 27 32 * Fires after the members notices pagination display. 28 33 * 29 * @since BuddyPress (1.2.0)34 * @since 1.2.0 30 35 */ 31 36 do_action( 'bp_after_notices_pagination' ); ?> … … 35 40 * Fires before the members notice items. 36 41 * 37 * @since BuddyPress (1.2.0)42 * @since 1.2.0 38 43 */ 39 44 do_action( 'bp_before_notices' ); ?> … … 63 68 * Fires inside the display of a member notice list item. 64 69 * 65 * @since BuddyPress (1.2.0)70 * @since 1.2.0 66 71 */ 67 72 do_action( 'bp_notices_list_item' ); ?> … … 80 85 * Fires after the members notice items. 81 86 * 82 * @since BuddyPress (1.2.0)87 * @since 1.2.0 83 88 */ 84 89 do_action( 'bp_after_notices' ); ?> … … 97 102 * Fires after the members notices loop. 98 103 * 99 * @since BuddyPress (1.2.0)104 * @since 1.2.0 100 105 */ 101 106 do_action( 'bp_after_notices_loop' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages/single.php
r10087 r10150 6 6 * Fires before the display of a single member message thread content. 7 7 * 8 * @since BuddyPress (1.1.0)8 * @since 1.1.0 9 9 */ 10 10 do_action( 'bp_before_message_thread_content' ); ?> … … 41 41 * Fires before the display of the message thread list. 42 42 * 43 * @since BuddyPress (1.1.0)43 * @since 1.1.0 44 44 */ 45 45 do_action( 'bp_before_message_thread_list' ); ?> … … 54 54 * Fires after the display of the message thread list. 55 55 * 56 * @since BuddyPress (1.1.0)56 * @since 1.1.0 57 57 */ 58 58 do_action( 'bp_after_message_thread_list' ); ?> … … 63 63 * Fires before the display of the message thread reply form. 64 64 * 65 * @since BuddyPress (1.1.0)65 * @since 1.1.0 66 66 */ 67 67 do_action( 'bp_before_message_thread_reply' ); ?> … … 98 98 * Fires before the display of the message reply box. 99 99 * 100 * @since BuddyPress (1.1.0)100 * @since 1.1.0 101 101 */ 102 102 do_action( 'bp_before_message_reply_box' ); ?> … … 110 110 * Fires after the display of the message reply box. 111 111 * 112 * @since BuddyPress (1.1.0)112 * @since 1.1.0 113 113 */ 114 114 do_action( 'bp_after_message_reply_box' ); ?> … … 133 133 * Fires after the display of the message thread reply form. 134 134 * 135 * @since BuddyPress (1.1.0)135 * @since 1.1.0 136 136 */ 137 137 do_action( 'bp_after_message_thread_reply' ); ?> … … 144 144 * Fires after the display of a single member message thread content. 145 145 * 146 * @since BuddyPress (1.1.0)146 * @since 1.1.0 147 147 */ 148 148 do_action( 'bp_after_message_thread_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/notifications.php
r9819 r10150 1 1 <?php 2 3 2 /** 4 3 * BuddyPress - Users Notifications … … 23 22 switch ( bp_current_action() ) : 24 23 25 // Unread26 24 case 'unread' : 27 25 bp_get_template_part( 'members/single/notifications/unread' ); 28 26 break; 29 27 30 // Read31 28 case 'read' : 32 29 bp_get_template_part( 'members/single/notifications/read' ); 33 30 break; 34 31 35 // Any other 32 // Any other actions. 36 33 default : 37 34 bp_get_template_part( 'members/single/plugins' ); -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/plugins.php
r9819 r10150 9 9 * @subpackage bp-legacy 10 10 */ 11 ?>12 13 <?php14 11 15 12 /** 16 13 * Fires at the start of the member plugin template. 17 14 * 18 * @since BuddyPress (1.2.0)15 * @since 1.2.0 19 16 */ 20 17 do_action( 'bp_before_member_plugin_template' ); ?> … … 31 28 * Fires inside the member plugin template nav <ul> tag. 32 29 * 33 * @since BuddyPress (1.2.2)30 * @since 1.2.2 34 31 */ 35 32 do_action( 'bp_member_plugin_options_nav' ); ?> … … 44 41 * Fires inside the member plugin template <h3> tag. 45 42 * 46 * @since BuddyPress (1.0.0)43 * @since 1.0.0 47 44 */ 48 45 do_action( 'bp_template_title' ); ?></h3> … … 53 50 * Fires and displays the member plugin template content. 54 51 * 55 * @since BuddyPress (1.0.0)52 * @since 1.0.0 56 53 */ 57 54 do_action( 'bp_template_content' ); ?> … … 62 59 * Fires at the end of the member plugin template. 63 60 * 64 * @since BuddyPress (1.2.0)61 * @since 1.2.0 65 62 */ 66 63 do_action( 'bp_after_member_plugin_template' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile.php
r9896 r10150 1 1 <?php 2 3 2 /** 4 3 * BuddyPress - Users Profile … … 21 20 * Fires before the display of member profile content. 22 21 * 23 * @since BuddyPress (1.1.0)22 * @since 1.1.0 24 23 */ 25 24 do_action( 'bp_before_profile_content' ); ?> … … 64 63 * Fires after the display of member profile content. 65 64 * 66 * @since BuddyPress (1.1.0)65 * @since 1.1.0 67 66 */ 68 67 do_action( 'bp_after_profile_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/change-avatar.php
r9819 r10150 6 6 * Fires before the display of profile avatar upload content. 7 7 * 8 * @since BuddyPress (1.1.0)8 * @since 1.1.0 9 9 */ 10 10 do_action( 'bp_before_profile_avatar_upload_content' ); ?> … … 62 62 * Load the Avatar UI templates 63 63 * 64 * @since BuddyPress (2.3.0)64 * @since 2.3.0 65 65 */ 66 66 bp_avatar_get_templates(); ?> … … 77 77 * Fires after the display of profile avatar upload content. 78 78 * 79 * @since BuddyPress (1.1.0)79 * @since 1.1.0 80 80 */ 81 81 do_action( 'bp_after_profile_avatar_upload_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/edit.php
r9819 r10150 1 1 <?php 2 /** 3 * BuddyPress - Members Single Profile Edit 4 * @package BuddyPress 5 * @subpackage bp-legacy 6 */ 2 7 3 8 /** 4 9 * Fires after the display of member profile edit content. 5 10 * 6 * @since BuddyPress (1.1.0)11 * @since 1.1.0 7 12 */ 8 13 do_action( 'bp_before_profile_edit_content' ); … … 41 46 * Fires before the display of visibility options for the field. 42 47 * 43 * @since BuddyPress (1.7.0)48 * @since 1.7.0 44 49 */ 45 50 do_action( 'bp_custom_profile_edit_fields_pre_visibility' ); … … 71 76 * Fires after the visibility options for a field. 72 77 * 73 * @since BuddyPress (1.1.0)78 * @since 1.1.0 74 79 */ 75 80 do_action( 'bp_custom_profile_edit_fields' ); ?> … … 102 107 * Fires after the display of member profile edit content. 103 108 * 104 * @since BuddyPress (1.1.0)109 * @since 1.1.0 105 110 */ 106 111 do_action( 'bp_after_profile_edit_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/profile-loop.php
r9819 r10150 40 40 * Fires after the display of a field table row for profile data. 41 41 * 42 * @since BuddyPress (1.1.0)42 * @since 1.1.0 43 43 */ 44 44 do_action( 'bp_profile_field_item' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/profile/profile-wp.php
r9819 r10150 1 1 <?php 2 /** 3 * BuddyPress - Members Single Profile WP 4 * @package BuddyPress 5 * @subpackage bp-legacy 6 */ 2 7 3 8 /** 4 9 * Fires before the display of member profile loop content. 5 10 * 6 * @since BuddyPress (1.2.0)11 * @since 1.2.0 7 12 */ 8 13 do_action( 'bp_before_profile_loop_content' ); ?> … … 15 20 * Fires before the display of member profile field content. 16 21 * 17 * @since BuddyPress (1.1.0)22 * @since 1.1.0 18 23 */ 19 24 do_action( 'bp_before_profile_field_content' ); ?> … … 86 91 * Fires after the display of member profile field content. 87 92 * 88 * @since BuddyPress (1.1.0)93 * @since 1.1.0 89 94 */ 90 95 do_action( 'bp_after_profile_field_content' ); ?> … … 95 100 * Fires and displays the profile field buttons. 96 101 * 97 * @since BuddyPress (1.1.0)102 * @since 1.1.0 98 103 */ 99 104 do_action( 'bp_profile_field_buttons' ); ?> … … 104 109 * Fires after the display of member profile loop content. 105 110 * 106 * @since BuddyPress (1.2.0)111 * @since 1.2.0 107 112 */ 108 113 do_action( 'bp_after_profile_loop_content' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings.php
r9819 r10150 1 1 <?php 2 3 2 /** 4 3 * BuddyPress - Users Settings -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/capabilities.php
r10105 r10150 11 11 * Fires before the display of the submit button for user capabilities saving. 12 12 * 13 * @since BuddyPress (1.6.0)13 * @since 1.6.0 14 14 */ 15 15 do_action( 'bp_members_capabilities_account_before_submit' ); ?> … … 29 29 * Fires after the display of the submit button for user capabilities saving. 30 30 * 31 * @since BuddyPress (1.6.0)31 * @since 1.6.0 32 32 */ 33 33 do_action( 'bp_members_capabilities_account_after_submit' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/delete-account.php
r10124 r10150 25 25 * Fires before the display of the submit button for user delete account submitting. 26 26 * 27 * @since BuddyPress (1.5.0)27 * @since 1.5.0 28 28 */ 29 29 do_action( 'bp_members_delete_account_before_submit' ); ?> … … 43 43 * Fires after the display of the submit button for user delete account submitting. 44 44 * 45 * @since BuddyPress (1.5.0)45 * @since 1.5.0 46 46 */ 47 47 do_action( 'bp_members_delete_account_after_submit' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/general.php
r10089 r10150 1 1 <?php 2 /** 3 * BuddyPress - Members Single Profile 4 * @package BuddyPress 5 * @subpackage bp-legacy 6 */ 2 7 3 8 /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/settings/profile.php */ … … 27 32 * Fires before the display of the submit button for user general settings saving. 28 33 * 29 * @since BuddyPress (1.5.0)34 * @since 1.5.0 30 35 */ 31 36 do_action( 'bp_core_general_settings_before_submit' ); ?> … … 40 45 * Fires after the display of the submit button for user general settings saving. 41 46 * 42 * @since BuddyPress (1.5.0)47 * @since 1.5.0 43 48 */ 44 49 do_action( 'bp_core_general_settings_after_submit' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/notifications.php
r9819 r10150 12 12 * Fires at the top of the member template notification settings form. 13 13 * 14 * @since BuddyPress (1.0.0)14 * @since 1.0.0 15 15 */ 16 16 do_action( 'bp_notification_settings' ); ?> … … 21 21 * Fires before the display of the submit button for user notification saving. 22 22 * 23 * @since BuddyPress (1.5.0)23 * @since 1.5.0 24 24 */ 25 25 do_action( 'bp_members_notification_settings_before_submit' ); ?> … … 34 34 * Fires after the display of the submit button for user notification saving. 35 35 * 36 * @since BuddyPress (1.5.0)36 * @since 1.5.0 37 37 */ 38 38 do_action( 'bp_members_notification_settings_after_submit' ); ?> -
trunk/src/bp-templates/bp-legacy/buddypress/members/single/settings/profile.php
r9819 r10150 1 1 <?php 2 /** 3 * BuddyPress - Members Single Profile 4 * @package BuddyPress 5 * @subpackage bp-legacy 6 */ 2 7 3 8 /** 4 9 * Fires before the display of member settings template. 5 10 * 6 * @since BuddyPress (1.5.0)11 * @since 1.5.0 7 12 */ 8 13 do_action( 'bp_before_member_settings_template' ); ?> … … 49 54 * Fires before the display of the submit button for user profile saving. 50 55 * 51 * @since BuddyPress (2.0.0)56 * @since 2.0.0 52 57 */ 53 58 do_action( 'bp_core_xprofile_settings_before_submit' ); ?> … … 62 67 * Fires after the display of the submit button for user profile saving. 63 68 * 64 * @since BuddyPress (2.0.0)69 * @since 2.0.0 65 70 */ 66 71 do_action( 'bp_core_xprofile_settings_after_submit' ); ?> … … 77 82 * Fires after the display of member settings template. 78 83 * 79 * @since BuddyPress (1.5.0)84 * @since 1.5.0 80 85 */ 81 86 do_action( 'bp_after_member_settings_template' ); -
trunk/src/bp-templates/bp-legacy/js/buddypress.js
r10133 r10150 2031 2031 * 2032 2032 * @param {String} container HTML ID of the field 2033 * @since BuddyPress (1.2.0)2033 * @since 1.2.0 2034 2034 */ 2035 2035 function clear( container ) {
Note: See TracChangeset
for help on using the changeset viewer.