Changeset 5927
- Timestamp:
- 03/16/2012 01:06:05 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 45 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-filters.php
r5901 r5927 248 248 * Catch mentions in saved activity items 249 249 * 250 * @since 1.5.0250 * @since BuddyPress (1.5).0 251 251 * 252 252 * @param obj $activity … … 298 298 * Truncates long activity entries when viewed in activity streams 299 299 * 300 * @since 1.5.0300 * @since BuddyPress (1.5).0 301 301 * 302 302 * @param $text The original activity entry text -
trunk/bp-activity/bp-activity-functions.php
r5901 r5927 16 16 * Checks $bp pages global and looks for directory page 17 17 * 18 * @since 1.5.018 * @since BuddyPress (1.5).0 19 19 * 20 20 * @global object $bp BuddyPress global settings … … 31 31 * Searches through the content of an activity item to locate usernames, designated by an @ sign 32 32 * 33 * @since 1.5.033 * @since BuddyPress (1.5).0 34 34 * 35 35 * @param string $content The content of the activity, usually found in $activity->content … … 51 51 * Resets a user's unread mentions list and count 52 52 * 53 * @since 1.5.053 * @since BuddyPress (1.5).0 54 54 * 55 55 * @param int $user_id The id of the user whose unread mentions are being reset … … 64 64 * Adjusts new mention count for mentioned users when activity items are deleted or created 65 65 * 66 * @since 1.5.066 * @since BuddyPress (1.5).0 67 67 * 68 68 * @param int $activity_id The unique id for the activity item … … 123 123 * Formats notifications related to activity 124 124 * 125 * @since 1.5.0125 * @since BuddyPress (1.5).0 126 126 * 127 127 * @param string $action The type of activity item. Just 'new_at_mention' for now … … 614 614 * Completely remove a user's activity data 615 615 * 616 * @since 1.5.0616 * @since BuddyPress (1.5).0 617 617 * 618 618 * @param int $user_id … … 1520 1520 * For that, see {@link bp_activity_comment_embed()}. 1521 1521 * 1522 * @since 1.51522 * @since BuddyPress (1.5) 1523 1523 * 1524 1524 * @see BP_Embed … … 1542 1542 * If no cache and link is embeddable, cache it. 1543 1543 * 1544 * @since 1.51544 * @since BuddyPress (1.5) 1545 1545 * 1546 1546 * @see BP_Embed … … 1562 1562 * When a user clicks on a "Read More" item, make sure embeds are correctly parsed and shown for the expanded content. 1563 1563 * 1564 * @since 1.51564 * @since BuddyPress (1.5) 1565 1565 * 1566 1566 * @see BP_Embed … … 1589 1589 * {@link bp_activity_embed()} or any other component embeds. 1590 1590 * 1591 * @since 1.51591 * @since BuddyPress (1.5) 1592 1592 * 1593 1593 * @see bp_activity_comment_embed() … … 1604 1604 * Used during {@link BP_Embed::parse_oembed()} via {@link bp_activity_embed()}. 1605 1605 * 1606 * @since 1.51606 * @since BuddyPress (1.5) 1607 1607 * 1608 1608 * @uses bp_activity_get_meta() … … 1618 1618 * Used during {@link BP_Embed::parse_oembed()} via {@link bp_activity_embed()}. 1619 1619 * 1620 * @since 1.51620 * @since BuddyPress (1.5) 1621 1621 * 1622 1622 * @uses bp_activity_update_meta() -
trunk/bp-activity/bp-activity-loader.php
r5868 r5927 16 16 * Main Activity Class 17 17 * 18 * @since 1.5.018 * @since BuddyPress (1.5).0 19 19 */ 20 20 class BP_Activity_Component extends BP_Component { … … 23 23 * Start the activity component creation process 24 24 * 25 * @since 1.5.025 * @since BuddyPress (1.5).0 26 26 */ 27 27 function __construct() { … … 36 36 * Include files 37 37 * 38 * @since 1.5.038 * @since BuddyPress (1.5).0 39 39 */ 40 40 function includes() { … … 68 68 * backwards compatibility. 69 69 * 70 * @since 1.5.070 * @since BuddyPress (1.5).0 71 71 * 72 72 * @global object $bp BuddyPress global settings … … 102 102 * Setup BuddyBar navigation 103 103 * 104 * @since 1.5.0104 * @since BuddyPress (1.5).0 105 105 * 106 106 * @global object $bp BuddyPress global settings … … 203 203 * Set up the Toolbar 204 204 * 205 * @since 1.5.0205 * @since BuddyPress (1.5).0 206 206 * 207 207 * @global object $bp BuddyPress global settings … … 294 294 * Sets up the title for pages and <title> 295 295 * 296 * @since 1.5.0296 * @since BuddyPress (1.5).0 297 297 * 298 298 * @global object $bp BuddyPress global settings -
trunk/bp-activity/bp-activity-screens.php
r5758 r5927 14 14 * Activity screen index 15 15 * 16 * @since 1.5.016 * @since BuddyPress (1.5).0 17 17 * 18 18 * @uses bp_displayed_user_id() … … 129 129 * is taken to a specific screen. 130 130 * 131 * @since 1.5.0131 * @since BuddyPress (1.5).0 132 132 * 133 133 * @global object $bp BuddyPress global settings … … 146 146 * Reset the logged-in user's new mentions data when he visits his mentions screen 147 147 * 148 * @since 1.5.0148 * @since BuddyPress (1.5).0 149 149 * 150 150 * @uses bp_is_my_profile() -
trunk/bp-activity/bp-activity-template.php
r5891 r5927 14 14 * Output the activity component slug 15 15 * 16 * @since 1.5.016 * @since BuddyPress (1.5).0 17 17 * 18 18 * @uses bp_get_activity_slug() … … 24 24 * Return the activity component slug 25 25 * 26 * @since 1.5.026 * @since BuddyPress (1.5).0 27 27 * 28 28 * @global object $bp BuddyPress global settings … … 37 37 * Output the activity component root slug 38 38 * 39 * @since 1.5.039 * @since BuddyPress (1.5).0 40 40 * 41 41 * @uses bp_get_activity_root_slug() … … 47 47 * Return the activity component root slug 48 48 * 49 * @since 1.5.049 * @since BuddyPress (1.5).0 50 50 * 51 51 * @global object $bp BuddyPress global settings … … 60 60 * Output member directory permalink 61 61 * 62 * @since 1.5.062 * @since BuddyPress (1.5).0 63 63 * 64 64 * @uses bp_get_activity_directory_permalink() … … 70 70 * Return member directory permalink 71 71 * 72 * @since 1.5.072 * @since BuddyPress (1.5).0 73 73 * 74 74 * @uses traisingslashit() … … 488 488 * Returns true when there are more activity items to be shown than currently appear 489 489 * 490 * @since 1.5.0490 * @since BuddyPress (1.5).0 491 491 * 492 492 * @global object $activities_template {@link BP_Activity_Template} … … 1414 1414 * Utility function that returns the comment currently being recursed 1415 1415 * 1416 * @since 1.5.01416 * @since BuddyPress (1.5).0 1417 1417 * 1418 1418 * @global object $activities_template {@link BP_Activity_Template} … … 1433 1433 * Echoes the id of the activity comment currently being displayed 1434 1434 * 1435 * @since 1.5.01435 * @since BuddyPress (1.5).0 1436 1436 * 1437 1437 * @uses bp_get_activity_comment_id() … … 1444 1444 * Gets the id of the activity comment currently being displayed 1445 1445 * 1446 * @since 1.5.01446 * @since BuddyPress (1.5).0 1447 1447 * 1448 1448 * @global object $activities_template {@link BP_Activity_Template} … … 1462 1462 * Echoes the user_id of the author of the activity comment currently being displayed 1463 1463 * 1464 * @since 1.5.01464 * @since BuddyPress (1.5).0 1465 1465 * 1466 1466 * @uses bp_get_activity_comment_user_id() … … 1473 1473 * Gets the user_id of the author of the activity comment currently being displayed 1474 1474 * 1475 * @since 1.5.01475 * @since BuddyPress (1.5).0 1476 1476 * 1477 1477 * @global object $activities_template {@link BP_Activity_Template} … … 1491 1491 * Echoes the author link for the activity comment currently being displayed 1492 1492 * 1493 * @since 1.5.01493 * @since BuddyPress (1.5).0 1494 1494 * 1495 1495 * @uses bp_get_activity_comment_user_link() … … 1502 1502 * Gets the author link for the activity comment currently being displayed 1503 1503 * 1504 * @since 1.5.01504 * @since BuddyPress (1.5).0 1505 1505 * 1506 1506 * @uses bp_core_get_user_domain() … … 1519 1519 * Echoes the author name for the activity comment currently being displayed 1520 1520 * 1521 * @since 1.5.01521 * @since BuddyPress (1.5).0 1522 1522 * 1523 1523 * @uses bp_get_activity_comment_name() … … 1532 1532 * The use of the bp_acomment_name filter is deprecated. Please use bp_activity_comment_name 1533 1533 * 1534 * @since 1.5.01534 * @since BuddyPress (1.5).0 1535 1535 * 1536 1536 * @global object $activities_template {@link BP_Activity_Template} … … 1554 1554 * Echoes the date_recorded of the activity comment currently being displayed 1555 1555 * 1556 * @since 1.5.01556 * @since BuddyPress (1.5).0 1557 1557 * 1558 1558 * @uses bp_get_activity_comment_date_recorded() … … 1565 1565 * Gets the date_recorded for the activity comment currently being displayed 1566 1566 * 1567 * @since 1.5.01567 * @since BuddyPress (1.5).0 1568 1568 * 1569 1569 * @global object $activities_template {@link BP_Activity_Template} … … 1587 1587 * Echoes the 'delete' URL for the activity comment currently being displayed 1588 1588 * 1589 * @since 1.5.01589 * @since BuddyPress (1.5).0 1590 1590 * 1591 1591 * @uses bp_get_activity_comment_delete_link() … … 1598 1598 * Gets the 'delete' URL for the activity comment currently being displayed 1599 1599 * 1600 * @since 1.5.01600 * @since BuddyPress (1.5).0 1601 1601 * 1602 1602 * @uses wp_nonce_url() … … 1617 1617 * Echoes the content of the activity comment currently being displayed 1618 1618 * 1619 * @since 1.5.01619 * @since BuddyPress (1.5).0 1620 1620 * 1621 1621 * @uses bp_get_activity_comment_content() … … 1632 1632 * content of activity comments only. 1633 1633 * 1634 * @since 1.5.01634 * @since BuddyPress (1.5).0 1635 1635 * 1636 1636 * @global object $activities_template {@link BP_Activity_Template} … … 2171 2171 * Determine if a comment can be made on an activity reply item 2172 2172 * 2173 * @since 1.5.02173 * @since BuddyPress (1.5).0 2174 2174 * 2175 2175 * @param object $comment Activity comment … … 2188 2188 * Determine if an favorites are allowed 2189 2189 * 2190 * @since 1.5.02190 * @since BuddyPress (1.5).0 2191 2191 * 2192 2192 * @uses apply_filters() To call the 'bp_activity_can_favorite' hook … … 2660 2660 * Template tag so we can hook activity feed to <head> 2661 2661 * 2662 * @since 1.5.02662 * @since BuddyPress (1.5).0 2663 2663 * 2664 2664 * @uses bloginfo() -
trunk/bp-blogs/bp-blogs-functions.php
r5926 r5927 6 6 * Checks $bp pages global and looks for directory page 7 7 * 8 * @since 1.58 * @since BuddyPress (1.5) 9 9 * 10 10 * @global BuddyPress $bp The one true BuddyPress instance -
trunk/bp-blogs/bp-blogs-loader.php
r5925 r5927 18 18 * Start the blogs component creation process 19 19 * 20 * @since 1.520 * @since BuddyPress (1.5) 21 21 */ 22 22 function __construct() { … … 34 34 * backwards compatibility. 35 35 * 36 * @since 1.536 * @since BuddyPress (1.5) 37 37 * @global BuddyPress $bp The one true BuddyPress instance 38 38 */ -
trunk/bp-blogs/bp-blogs-template.php
r5904 r5927 64 64 * @package BuddyPress 65 65 * @subpackage BlogsTemplate 66 * @since 1.566 * @since BuddyPress (1.5) 67 67 * @uses bp_get_blogs_directory_permalink() 68 68 */ … … 75 75 * @package BuddyPress 76 76 * @subpackage BlogsTemplate 77 * @since 1.577 * @since BuddyPress (1.5) 78 78 * @uses apply_filters() 79 79 * @uses traisingslashit() -
trunk/bp-core/admin/bp-core-functions.php
r5926 r5927 129 129 * 130 130 * @package BuddyPress Core 131 * @since 1.5131 * @since BuddyPress (1.5) 132 132 * 133 133 * @global BuddyPress $bp The one true BuddyPress instance … … 169 169 * 170 170 * @package BuddyPress Core 171 * @since 1.5171 * @since BuddyPress (1.5) 172 172 * 173 173 * @global BuddyPress $bp The one true BuddyPress instance … … 334 334 * Output the tabs in the admin area 335 335 * 336 * @since 1.5336 * @since BuddyPress (1.5) 337 337 * @param string $active_tab Name of the tab that is active 338 338 */ -
trunk/bp-core/bp-core-avatars.php
r5926 r5927 827 827 * 828 828 * @package BuddyPress 829 * @since 1.5829 * @since BuddyPress (1.5) 830 830 * 831 831 * @param str $type 'thumb' for thumbs, otherwise full … … 845 845 * 846 846 * @package BuddyPress 847 * @since 1.5847 * @since BuddyPress (1.5) 848 848 * 849 849 * @return int The thumb width … … 857 857 * 858 858 * @package BuddyPress 859 * @since 1.5859 * @since BuddyPress (1.5) 860 860 * 861 861 * @return int The thumb height … … 869 869 * 870 870 * @package BuddyPress 871 * @since 1.5871 * @since BuddyPress (1.5) 872 872 * 873 873 * @return int The full width … … 881 881 * 882 882 * @package BuddyPress 883 * @since 1.5883 * @since BuddyPress (1.5) 884 884 * 885 885 * @return int The full height … … 893 893 * 894 894 * @package BuddyPress 895 * @since 1.5895 * @since BuddyPress (1.5) 896 896 * 897 897 * @return int The width … … 907 907 * 908 908 * @package BuddyPress 909 * @since 1.5909 * @since BuddyPress (1.5) 910 910 * 911 911 * @return int The filesize … … 921 921 * 922 922 * @package BuddyPress 923 * @since 1.5923 * @since BuddyPress (1.5) 924 924 * 925 925 * @return int The URL of the default avatar … … 935 935 * 936 936 * @package BuddyPress 937 * @since 1.5937 * @since BuddyPress (1.5) 938 938 * 939 939 * @return int The URL of the default avatar thumb -
trunk/bp-core/bp-core-buddybar.php
r5926 r5927 377 377 * 378 378 * @package BuddyPress 379 * @since 1.5379 * @since BuddyPress (1.5) 380 380 * 381 381 * @param str $nav_item The id of the top-level nav item whose nav items you're checking … … 616 616 * This is a direct copy of WP's private _get_admin_bar_pref() 617 617 * 618 * @since 1.5.0618 * @since BuddyPress (1.5).0 619 619 * 620 620 * @param string $context Context of this preference check, either 'admin' or 'front'. -
trunk/bp-core/bp-core-catchuri.php
r5895 r5927 416 416 * 417 417 * @package BuddyPress Core 418 * @since 1.5418 * @since BuddyPress (1.5) 419 419 */ 420 420 function bp_core_catch_no_access() { … … 438 438 * 439 439 * @package BuddyPress Core 440 * @since 1.5440 * @since BuddyPress (1.5) 441 441 */ 442 442 function bp_core_no_access( $args = '' ) { … … 505 505 * @package BuddyPress Core 506 506 * @global $error 507 * @since 1.5507 * @since BuddyPress (1.5) 508 508 */ 509 509 function bp_core_no_access_wp_login_error() { -
trunk/bp-core/bp-core-classes.php
r5926 r5927 1119 1119 * 1120 1120 * @package BuddyPress Core 1121 * @since 1.51121 * @since BuddyPress (1.5) 1122 1122 * @see WP_Embed 1123 1123 */ -
trunk/bp-core/bp-core-component.php
r5868 r5927 15 15 * @subpackage Component 16 16 * 17 * @since 1.517 * @since BuddyPress (1.5) 18 18 */ 19 19 class BP_Component { … … 68 68 * Component loader 69 69 * 70 * @since 1.570 * @since BuddyPress (1.5) 71 71 * 72 72 * @param mixed $args Required. Supports these args: … … 93 93 * Component global variables 94 94 * 95 * @since 1.595 * @since BuddyPress (1.5) 96 96 * @access private 97 97 * … … 165 165 * - ./bp-my_component/bp-my_component-actions.php 166 166 * 167 * @since 1.5167 * @since BuddyPress (1.5) 168 168 * @access private 169 169 * … … 207 207 * Setup the actions 208 208 * 209 * @since 1.5209 * @since BuddyPress (1.5) 210 210 * @access private 211 211 * … … 311 311 * Setup the component title 312 312 * 313 * @since 1.5313 * @since BuddyPress (1.5) 314 314 * 315 315 * @uses do_action() Calls 'bp_{@link bp_Component::name}setup_title' … … 322 322 * Setup the component post types 323 323 * 324 * @since 1.5324 * @since BuddyPress (1.5) 325 325 * 326 326 * @uses do_action() Calls 'bp_{@link bp_Component::name}_register_post_types' … … 333 333 * Register component specific taxonomies 334 334 * 335 * @since 1.5335 * @since BuddyPress (1.5) 336 336 * 337 337 * @uses do_action() Calls 'bp_{@link bp_Component::name}_register_taxonomies' … … 344 344 * Add any additional rewrite tags 345 345 * 346 * @since 1.5346 * @since BuddyPress (1.5) 347 347 * 348 348 * @uses do_action() Calls 'bp_{@link bp_Component::name}_add_rewrite_tags' … … 355 355 * Generate any additional rewrite rules 356 356 * 357 * @since 1.5357 * @since BuddyPress (1.5) 358 358 * 359 359 * @uses do_action() Calls 'bp_{@link bp_Component::name}_generate_rewrite_rules' -
trunk/bp-core/bp-core-filters.php
r5826 r5927 259 259 * @return string new page title 260 260 * @see wp_title() 261 * @since 1.5261 * @since BuddyPress (1.5) 262 262 */ 263 263 function bp_modify_page_title( $title, $sep, $seplocation ) { -
trunk/bp-core/bp-core-functions.php
r5926 r5927 120 120 * 121 121 * @package BuddyPress Core 122 * @since 1.5122 * @since BuddyPress (1.5) 123 123 */ 124 124 function bp_core_get_directory_page_ids() { … … 144 144 * 145 145 * @package BuddyPress Core 146 * @since 1.5146 * @since BuddyPress (1.5) 147 147 * 148 148 * @param array $blog_page_ids The IDs of the WP pages corresponding to BP component directories … … 156 156 * 157 157 * @package BuddyPress Core 158 * @since 1.5158 * @since BuddyPress (1.5) 159 159 * 160 160 * @return obj $pages Page names, IDs, and slugs … … 220 220 * 221 221 * @package BuddyPress Core 222 * @since 1.5222 * @since BuddyPress (1.5) 223 223 * 224 224 * @param str $root_slug The root slug, which comes from $bp->pages->[component]->slug … … 712 712 * @global object $bp BuddyPress global settings 713 713 * @package BuddyPress Core 714 * @since 1.5714 * @since BuddyPress (1.5) 715 715 */ 716 716 function bp_embed_init() { … … 772 772 * 773 773 * @package BuddyPress 774 * @since 1.5774 * @since BuddyPress (1.5) 775 775 * 776 776 * @param int $blog_id Optional. Defaults to the current blog id. … … 821 821 * 822 822 * @package BuddyPress 823 * @since 1.5823 * @since BuddyPress (1.5) 824 824 * 825 825 * @uses apply_filters() Filter bp_get_user_meta_key to modify keys individually … … 838 838 * 839 839 * @package BuddyPress 840 * @since 1.5840 * @since BuddyPress (1.5) 841 841 * 842 842 * @uses bp_get_user_meta_key() For a filterable version of the meta key … … 859 859 * 860 860 * @package BuddyPress 861 * @since 1.5861 * @since BuddyPress (1.5) 862 862 * 863 863 * @uses bp_get_user_meta_key() For a filterable version of the meta key … … 880 880 * 881 881 * @package BuddyPress 882 * @since 1.5882 * @since BuddyPress (1.5) 883 883 * 884 884 * @uses bp_get_user_meta_key() For a filterable version of the meta key … … 897 897 * 898 898 * @package BuddyPress 899 * @since 1.5899 * @since BuddyPress (1.5) 900 900 * 901 901 * @uses apply_filters() Filter 'bp_is_username_compatibility_mode' to alter … … 921 921 * 922 922 * @package BuddyPress 923 * @since 1.5923 * @since BuddyPress (1.5) 924 924 * 925 925 * @uses apply_filters() Filter 'bp_is_multiblog_mode' to alter … … 937 937 * 938 938 * @return bool False when WP Toolbar support is disabled; true when enabled (default) 939 * @since 1.5939 * @since BuddyPress (1.5) 940 940 * @uses apply_filters() Filter 'bp_use_wp_admin_bar' to alter 941 941 */ … … 960 960 * 961 961 * @return bool False when activity embed support is disabled; true when enabled (default) 962 * @since 1.5962 * @since BuddyPress (1.5) 963 963 */ 964 964 function bp_use_embed_in_activity() { … … 970 970 * 971 971 * @return bool False when activity replies embed support is disabled; true when enabled (default) 972 * @since 1.5972 * @since BuddyPress (1.5) 973 973 */ 974 974 function bp_use_embed_in_activity_replies() { … … 980 980 * 981 981 * @return bool False when form post embed support is disabled; true when enabled (default) 982 * @since 1.5982 * @since BuddyPress (1.5) 983 983 */ 984 984 function bp_use_embed_in_forum_posts() { … … 990 990 * 991 991 * @return bool False when form post embed support is disabled; true when enabled (default) 992 * @since 1.5992 * @since BuddyPress (1.5) 993 993 */ 994 994 function bp_use_embed_in_private_messages() { … … 1002 1002 * 1003 1003 * @package BuddyPress 1004 * @since 1.51004 * @since BuddyPress (1.5) 1005 1005 * 1006 1006 * @param string $path … … 1016 1016 * 1017 1017 * @package BuddyPress 1018 * @since 1.51018 * @since BuddyPress (1.5) 1019 1019 * 1020 1020 * @param string $path … … 1109 1109 * @global WP_Query $wp_query WordPress query object 1110 1110 * @param string $redirect If 'remove_canonical_direct', remove WordPress' "helpful" redirect_canonical action. 1111 * @since 1.51111 * @since BuddyPress (1.5) 1112 1112 */ 1113 1113 function bp_do_404( $redirect = 'remove_canonical_direct' ) { -
trunk/bp-core/bp-core-options.php
r5868 r5927 202 202 * 203 203 * @package BuddyPress 204 * @since 1.5204 * @since BuddyPress (1.5) 205 205 * 206 206 * @uses bp_get_root_blog_id() … … 222 222 * 223 223 * @package BuddyPress 224 * @since 1.5224 * @since BuddyPress (1.5) 225 225 * 226 226 * @uses bp_get_root_blog_id() … … 239 239 * 240 240 * @package BuddyPress 241 * @since 1.5241 * @since BuddyPress (1.5) 242 242 * 243 243 * @uses bp_get_root_blog_id() -
trunk/bp-core/bp-core-template.php
r5926 r5927 286 286 * @global object $bp BuddyPress global settings 287 287 * @return string 288 * @since 1.5288 * @since BuddyPress (1.5) 289 289 */ 290 290 function bp_search_default_text( $component = '' ) { … … 595 595 * 596 596 * @package BuddyPress 597 * @since 1.5597 * @since BuddyPress (1.5) 598 598 * 599 599 * @param int $position The key of the action_variables array that you want … … 627 627 * 628 628 * @package BuddyPress Core 629 * @since 1.5629 * @since BuddyPress (1.5) 630 630 */ 631 631 function bp_root_slug( $component = '' ) { … … 648 648 * 649 649 * @package BuddyPress Core 650 * @since 1.5650 * @since BuddyPress (1.5) 651 651 * 652 652 * @global BuddyPress $bp The one true BuddyPress instance … … 721 721 * 722 722 * @package BuddyPress 723 * @since 1.5723 * @since BuddyPress (1.5) 724 724 * 725 725 * @uses bp_get_search_slug() … … 732 732 * 733 733 * @package BuddyPress 734 * @since 1.5734 * @since BuddyPress (1.5) 735 735 */ 736 736 function bp_get_search_slug() { … … 750 750 * 751 751 * @package BuddyPress Core 752 * @since 1.5752 * @since BuddyPress (1.5) 753 753 * @return bool Returns true if the component matches, or else false. 754 754 */ … … 831 831 * 832 832 * @package BuddyPress 833 * @since 1.5833 * @since BuddyPress (1.5) 834 834 * 835 835 * @param str $action The action being tested against … … 855 855 * 856 856 * @package BuddyPress 857 * @since 1.5857 * @since BuddyPress (1.5) 858 858 * 859 859 * @param str $action_variable The action_variable being tested against … … 958 958 * @param string $component Optional; Name of the component to check for. 959 959 * @return bool True If the specified component is set to be the site's front page. 960 * @since 1.5960 * @since BuddyPress (1.5) 961 961 */ 962 962 function bp_is_component_front_page( $component = '' ) { … … 1185 1185 * 1186 1186 * @package BuddyPress 1187 * @since 1.51187 * @since BuddyPress (1.5) 1188 1188 * 1189 1189 * @return bool … … 1200 1200 * 1201 1201 * @package BuddyPress 1202 * @since 1.51202 * @since BuddyPress (1.5) 1203 1203 * 1204 1204 * @return bool … … 1271 1271 * 1272 1272 * @package BuddyPress 1273 * @since 1.51273 * @since BuddyPress (1.5) 1274 1274 * 1275 1275 * @return bool … … 1286 1286 * 1287 1287 * @package BuddyPress 1288 * @since 1.51288 * @since BuddyPress (1.5) 1289 1289 * 1290 1290 * @return bool … … 1301 1301 * 1302 1302 * @package BuddyPress 1303 * @since 1.51303 * @since BuddyPress (1.5) 1304 1304 * 1305 1305 * @return bool -
trunk/bp-core/deprecated/1.5.php
r5729 r5927 427 427 * in BuddyPress 1.5. 428 428 * 429 * @since 1.5429 * @since BuddyPress (1.5) 430 430 */ 431 431 function bp_dtheme_deprecated() { -
trunk/bp-forums/bp-forums-filters.php
r5129 r5927 149 149 * 150 150 * @package BuddyPress 151 * @since 1.5151 * @since BuddyPress (1.5) 152 152 * 153 153 * @global object $wpdb The WordPress database global … … 169 169 * 170 170 * @package BuddyPress 171 * @since 1.5171 * @since BuddyPress (1.5) 172 172 * 173 173 * @global object $bbdb The bbPress database global … … 190 190 * 191 191 * @package BuddyPress 192 * @since 1.5192 * @since BuddyPress (1.5) 193 193 * 194 194 * @global object $wpdb The WordPress database global -
trunk/bp-forums/bp-forums-functions.php
r5926 r5927 44 44 * Checks $bp pages global and looks for directory page 45 45 * 46 * @since 1.546 * @since BuddyPress (1.5) 47 47 * 48 48 * @global BuddyPress $bp The one true BuddyPress instance … … 416 416 * 417 417 * @package BuddyPress 418 * @since 1.5418 * @since BuddyPress (1.5) 419 419 * 420 420 * @param int $user_id Defaults to displayed user, then to logged-in user … … 667 667 * 668 668 * @package BuddyPress 669 * @since 1.5669 * @since BuddyPress (1.5) 670 670 * 671 671 * @return int … … 682 682 * 683 683 * @package BuddyPress 684 * @since 1.5684 * @since BuddyPress (1.5) 685 685 * 686 686 * @return bool True if stickies should be displayed at the top of the global directory, false … … 715 715 * @see bp_embed_forum_save_cache() 716 716 * @package BuddyPress_Forums 717 * @since 1.5717 * @since BuddyPress (1.5) 718 718 */ 719 719 function bp_forums_embed() { … … 729 729 * 730 730 * @package BuddyPress_Forums 731 * @since 1.5731 * @since BuddyPress (1.5) 732 732 */ 733 733 function bp_embed_forum_cache( $cache, $id, $cachekey ) { … … 740 740 * 741 741 * @package BuddyPress_Forums 742 * @since 1.5742 * @since BuddyPress (1.5) 743 743 */ 744 744 function bp_embed_forum_save_cache( $cache, $cachekey, $id ) { -
trunk/bp-forums/bp-forums-loader.php
r5925 r5927 18 18 * Start the forums component creation process 19 19 * 20 * @since 1.520 * @since BuddyPress (1.5) 21 21 */ 22 22 function __construct() { … … 34 34 * backwards compatibility. 35 35 * 36 * @since 1.536 * @since BuddyPress (1.5) 37 37 * @global BuddyPress $bp The one true BuddyPress instance 38 38 */ -
trunk/bp-forums/bp-forums-template.php
r5891 r5927 8 8 * @package BuddyPress 9 9 * @subpackage Forums Template 10 * @since 1.510 * @since BuddyPress (1.5) 11 11 * 12 12 * @uses bp_get_forums_slug() … … 20 20 * @package BuddyPress 21 21 * @subpackage Forums Template 22 * @since 1.522 * @since BuddyPress (1.5) 23 23 */ 24 24 function bp_get_forums_slug() { … … 32 32 * @package BuddyPress 33 33 * @subpackage Forums Template 34 * @since 1.534 * @since BuddyPress (1.5) 35 35 * 36 36 * @uses bp_get_forums_root_slug() … … 44 44 * @package BuddyPress 45 45 * @subpackage Forums Template 46 * @since 1.546 * @since BuddyPress (1.5) 47 47 */ 48 48 function bp_get_forums_root_slug() { … … 56 56 * @package BuddyPress 57 57 * @subpackage Forums Template 58 * @since 1.558 * @since BuddyPress (1.5) 59 59 * @uses bp_get_forums_directory_permalink() 60 60 */ … … 67 67 * @package BuddyPress 68 68 * @subpackage Forums Template 69 * @since 1.569 * @since BuddyPress (1.5) 70 70 * @uses apply_filters() 71 71 * @uses traisingslashit() … … 882 882 * 883 883 * @package BuddyPress 884 * @since 1.5884 * @since BuddyPress (1.5) 885 885 */ 886 886 function bp_forum_topic_new_reply_link() { … … 891 891 * 892 892 * @package BuddyPress 893 * @since 1.5893 * @since BuddyPress (1.5) 894 894 * 895 895 * @uses apply_filters() Filter bp_get_forum_topic_new_reply_link to modify … … 1375 1375 * 1376 1376 * @package BuddyPress 1377 * @since 1.51377 * @since BuddyPress (1.5) 1378 1378 */ 1379 1379 function bp_forum_topic_tag_list() { … … 1384 1384 * 1385 1385 * @package BuddyPress 1386 * @since 1.51386 * @since BuddyPress (1.5) 1387 1387 * 1388 1388 * @param str $format 'string' returns comma-separated string; otherwise returns array … … 1412 1412 * 1413 1413 * @package BuddyPress 1414 * @since 1.51414 * @since BuddyPress (1.5) 1415 1415 * 1416 1416 * @return bool -
trunk/bp-friends/bp-friends-loader.php
r5925 r5927 17 17 * Start the friends component creation process 18 18 * 19 * @since 1.519 * @since BuddyPress (1.5) 20 20 */ 21 21 function __construct() { … … 52 52 * backwards compatibility. 53 53 * 54 * @since 1.554 * @since BuddyPress (1.5) 55 55 * @global BuddyPress $bp The one true BuddyPress instance 56 56 */ -
trunk/bp-friends/bp-friends-template.php
r5906 r5927 16 16 * @package BuddyPress 17 17 * @subpackage Friends Template 18 * @since 1.518 * @since BuddyPress (1.5) 19 19 * 20 20 * @uses bp_get_friends_slug() … … 28 28 * @package BuddyPress 29 29 * @subpackage Friends Template 30 * @since 1.530 * @since BuddyPress (1.5) 31 31 */ 32 32 function bp_get_friends_slug() { … … 40 40 * @package BuddyPress 41 41 * @subpackage Friends Template 42 * @since 1.542 * @since BuddyPress (1.5) 43 43 * 44 44 * @uses bp_get_friends_root_slug() … … 52 52 * @package BuddyPress 53 53 * @subpackage Friends Template 54 * @since 1.554 * @since BuddyPress (1.5) 55 55 */ 56 56 function bp_get_friends_root_slug() { -
trunk/bp-groups/bp-groups-adminbar.php
r5868 r5927 17 17 * 18 18 * @package BuddyPress 19 * @since 1.519 * @since BuddyPress (1.5) 20 20 * 21 21 * @todo Add dynamic menu items for group extensions -
trunk/bp-groups/bp-groups-classes.php
r5903 r5927 635 635 * 636 636 * @package BuddyPress 637 * @since 1.5637 * @since BuddyPress (1.5) 638 638 * 639 639 * @param str $status 'public', 'private', 'hidden', 'all' Which group types to count -
trunk/bp-groups/bp-groups-filters.php
r5714 r5927 159 159 * 160 160 * @see BB_Query::_filter_sql() 161 * @since 1.5161 * @since BuddyPress (1.5) 162 162 */ 163 163 function groups_filter_forums_root_page_sql( $sql ) { -
trunk/bp-groups/bp-groups-forums.php
r5729 r5927 298 298 * 299 299 * @package BuddyPress 300 * @since 1.5300 * @since BuddyPress (1.5) 301 301 * 302 302 * @param str $status 'public', 'private', 'hidden', 'all' Which group types to count -
trunk/bp-groups/bp-groups-functions.php
r5926 r5927 19 19 * Checks $bp pages global and looks for directory page 20 20 * 21 * @since 1.521 * @since BuddyPress (1.5) 22 22 * 23 23 * @global BuddyPress $bp The one true BuddyPress instance … … 446 446 * 447 447 * @package BuddyPress 448 * @since 1.5448 * @since BuddyPress (1.5) 449 449 * 450 450 * @return obj The current group object -
trunk/bp-groups/bp-groups-loader.php
r5925 r5927 20 20 * Start the groups component creation process 21 21 * 22 * @since 1.522 * @since BuddyPress (1.5) 23 23 */ 24 24 function __construct() { … … 58 58 * backwards compatibility. 59 59 * 60 * @since 1.560 * @since BuddyPress (1.5) 61 61 * @global BuddyPress $bp The one true BuddyPress instance 62 62 */ -
trunk/bp-groups/bp-groups-template.php
r5903 r5927 16 16 * @package BuddyPress 17 17 * @subpackage Groups Template 18 * @since 1.518 * @since BuddyPress (1.5) 19 19 * 20 20 * @uses bp_get_groups_slug() … … 28 28 * @package BuddyPress 29 29 * @subpackage Groups Template 30 * @since 1.530 * @since BuddyPress (1.5) 31 31 */ 32 32 function bp_get_groups_slug() { … … 40 40 * @package BuddyPress 41 41 * @subpackage Groups Template 42 * @since 1.542 * @since BuddyPress (1.5) 43 43 * 44 44 * @uses bp_get_groups_root_slug() … … 52 52 * @package BuddyPress 53 53 * @subpackage Groups Template 54 * @since 1.554 * @since BuddyPress (1.5) 55 55 */ 56 56 function bp_get_groups_root_slug() { … … 64 64 * @package BuddyPress 65 65 * @subpackage Groups Template 66 * @since 1.566 * @since BuddyPress (1.5) 67 67 * @uses bp_get_groups_directory_permalink() 68 68 */ … … 75 75 * @package BuddyPress 76 76 * @subpackage Groups Template 77 * @since 1.577 * @since BuddyPress (1.5) 78 78 * @uses apply_filters() 79 79 * @uses traisingslashit() … … 610 610 * 611 611 * @package BuddyPress 612 * @since 1.5612 * @since BuddyPress (1.5) 613 613 * 614 614 * @param obj $group (optional) The group being queried. Defaults to the current group in the loop … … 640 640 * 641 641 * @package BuddyPress 642 * @since 1.5642 * @since BuddyPress (1.5) 643 643 * 644 644 * @param obj $group (optional) The group being queried. Defaults to the current group in the loop … … 888 888 * @package BuddyPress 889 889 * @subpackage Groups Template 890 * @since 1.5890 * @since BuddyPress (1.5) 891 891 * 892 892 * @param str $setting The setting you want to check against ('members', 'mods', or 'admins') … … 913 913 * @package BuddyPress 914 914 * @subpackage Groups Template 915 * @since 1.5915 * @since BuddyPress (1.5) 916 916 * 917 917 * @param int $group_id (optional) The id of the group whose status you want to check … … 949 949 * @package BuddyPress 950 950 * @subpackage Groups Template 951 * @since 1.5951 * @since BuddyPress (1.5) 952 952 * 953 953 * @param int $group_id (optional) The id of the group whose status you want to check … … 1379 1379 * @param int $user_id 1380 1380 * @return bool If user is banned from the group or not 1381 * @since 1.51381 * @since BuddyPress (1.5) 1382 1382 */ 1383 1383 function bp_group_is_user_banned( $group = false, $user_id = 0 ) { … … 1966 1966 * 1967 1967 * @package BuddyPress Groups 1968 * @since 1.51968 * @since BuddyPress (1.5) 1969 1969 * 1970 1970 * @uses apply_filters() To call 'bp_user_can_create_groups'. … … 2726 2726 * Hook group activity feed to <head> 2727 2727 * 2728 * @since 1.52728 * @since BuddyPress (1.5) 2729 2729 */ 2730 2730 function bp_groups_activity_feed() { … … 2751 2751 * 2752 2752 * @package BuddyPress 2753 * @since 1.52753 * @since BuddyPress (1.5) 2754 2754 */ 2755 2755 function bp_current_group_id() { … … 2760 2760 * 2761 2761 * @package BuddyPress 2762 * @since 1.52762 * @since BuddyPress (1.5) 2763 2763 * @uses apply_filters() Filter bp_get_current_group_id to modify this output 2764 2764 * … … 2777 2777 * 2778 2778 * @package BuddyPress 2779 * @since 1.52779 * @since BuddyPress (1.5) 2780 2780 */ 2781 2781 function bp_current_group_slug() { … … 2786 2786 * 2787 2787 * @package BuddyPress 2788 * @since 1.52788 * @since BuddyPress (1.5) 2789 2789 * @uses apply_filters() Filter bp_get_current_group_slug to modify this output 2790 2790 * … … 2811 2811 * 2812 2812 * @package BuddyPress 2813 * @since 1.52813 * @since BuddyPress (1.5) 2814 2814 * @uses apply_filters() Filter bp_get_current_group_name to modify this output 2815 2815 * -
trunk/bp-members/bp-members-adminbar.php
r5868 r5927 70 70 * 71 71 * @package BuddyPress 72 * @since 1.572 * @since BuddyPress (1.5) 73 73 */ 74 74 function bp_members_admin_bar_user_admin_menu() { … … 131 131 * 132 132 * @package Buddypress 133 * @since 1.5133 * @since BuddyPress (1.5) 134 134 */ 135 135 function bp_members_admin_bar_notifications_menu() { -
trunk/bp-members/bp-members-functions.php
r5926 r5927 16 16 * Checks $bp pages global and looks for directory page 17 17 * 18 * @since 1.518 * @since BuddyPress (1.5) 19 19 * 20 20 * @global BuddyPress $bp The one true BuddyPress instance -
trunk/bp-members/bp-members-loader.php
r5925 r5927 17 17 * Start the members component creation process 18 18 * 19 * @since 1.519 * @since BuddyPress (1.5) 20 20 */ 21 21 function __construct() { … … 52 52 * backwards compatibility. 53 53 * 54 * @since 1.554 * @since BuddyPress (1.5) 55 55 * @global BuddyPress $bp The one true BuddyPress instance 56 56 */ -
trunk/bp-members/bp-members-template.php
r5926 r5927 18 18 * @package BuddyPress 19 19 * @subpackage Members Template 20 * @since 1.520 * @since BuddyPress (1.5) 21 21 * 22 22 * @uses bp_get_members_slug() … … 30 30 * @package BuddyPress 31 31 * @subpackage Members Template 32 * @since 1.532 * @since BuddyPress (1.5) 33 33 */ 34 34 function bp_get_members_slug() { … … 42 42 * @package BuddyPress 43 43 * @subpackage Members Template 44 * @since 1.544 * @since BuddyPress (1.5) 45 45 * 46 46 * @uses bp_get_members_root_slug() … … 54 54 * @package BuddyPress 55 55 * @subpackage Members Template 56 * @since 1.556 * @since BuddyPress (1.5) 57 57 */ 58 58 function bp_get_members_root_slug() { … … 66 66 * @package BuddyPress 67 67 * @subpackage Members Template 68 * @since 1.568 * @since BuddyPress (1.5) 69 69 * @uses bp_get_members_directory_permalink() 70 70 */ … … 77 77 * @package BuddyPress 78 78 * @subpackage Members Template 79 * @since 1.579 * @since BuddyPress (1.5) 80 80 * @uses apply_filters() 81 81 * @uses traisingslashit() … … 93 93 * @package BuddyPress 94 94 * @subpackage Members Template 95 * @since 1.595 * @since BuddyPress (1.5) 96 96 * 97 97 * @uses bp_get_signup_slug() … … 105 105 * @package BuddyPress 106 106 * @subpackage Members Template 107 * @since 1.5107 * @since BuddyPress (1.5) 108 108 */ 109 109 function bp_get_signup_slug() { … … 125 125 * @package BuddyPress 126 126 * @subpackage Members Template 127 * @since 1.5127 * @since BuddyPress (1.5) 128 128 * 129 129 * @uses bp_get_activate_slug() … … 137 137 * @package BuddyPress 138 138 * @subpackage Members Template 139 * @since 1.5139 * @since BuddyPress (1.5) 140 140 */ 141 141 function bp_get_activate_slug() { … … 1162 1162 * Hook member activity feed to <head> 1163 1163 * 1164 * @since 1.51164 * @since BuddyPress (1.5) 1165 1165 */ 1166 1166 function bp_members_activity_feed() { -
trunk/bp-messages/bp-messages-loader.php
r5925 r5927 18 18 * Start the messages component creation process 19 19 * 20 * @since 1.520 * @since BuddyPress (1.5) 21 21 */ 22 22 function __construct() { … … 54 54 * backwards compatibility. 55 55 * 56 * @since 1.556 * @since BuddyPress (1.5) 57 57 * @global BuddyPress $bp The one true BuddyPress instance 58 58 */ -
trunk/bp-messages/bp-messages-template.php
r5891 r5927 569 569 * @package BuddyPress 570 570 * @subpackage Messages Template 571 * @since 1.5571 * @since BuddyPress (1.5) 572 572 * 573 573 * @uses bp_get_messages_slug() … … 581 581 * @package BuddyPress 582 582 * @subpackage Messages Template 583 * @since 1.5583 * @since BuddyPress (1.5) 584 584 */ 585 585 function bp_get_messages_slug() { … … 930 930 * 931 931 * @see BP_Embed 932 * @since 1.5932 * @since BuddyPress (1.5) 933 933 * @todo Add Messages meta? 934 934 */ -
trunk/bp-settings/bp-settings-loader.php
r5925 r5927 16 16 * Start the settings component creation process 17 17 * 18 * @since 1.518 * @since BuddyPress (1.5) 19 19 */ 20 20 function __construct() { … … 49 49 * backwards compatibility. 50 50 * 51 * @since 1.551 * @since BuddyPress (1.5) 52 52 */ 53 53 function setup_globals() { -
trunk/bp-settings/bp-settings-template.php
r5690 r5927 16 16 * @package BuddyPress 17 17 * @subpackage SettingsTemplate 18 * @since 1.518 * @since BuddyPress (1.5) 19 19 * 20 20 * @uses bp_get_settings_slug() … … 28 28 * @package BuddyPress 29 29 * @subpackage SettingsTemplate 30 * @since 1.530 * @since BuddyPress (1.5) 31 31 */ 32 32 function bp_get_settings_slug() { … … 40 40 * @package BuddyPress 41 41 * @subpackage SettingsTemplate 42 * @since 1.542 * @since BuddyPress (1.5) 43 43 * 44 44 * @uses bp_get_settings_root_slug() … … 52 52 * @package BuddyPress 53 53 * @subpackage SettingsTemplate 54 * @since 1.554 * @since BuddyPress (1.5) 55 55 */ 56 56 function bp_get_settings_root_slug() { -
trunk/bp-themes/bp-default/_inc/ajax.php
r5908 r5927 427 427 * 428 428 * @package BuddyPress 429 * @since 1.5429 * @since BuddyPress (1.5) 430 430 */ 431 431 function bp_dtheme_get_single_activity_content() { -
trunk/bp-themes/bp-default/functions.php
r5926 r5927 59 59 * 60 60 * @global BuddyPress $bp The one true BuddyPress instance 61 * @since 1.561 * @since BuddyPress (1.5) 62 62 */ 63 63 function bp_dtheme_setup() { … … 141 141 * 142 142 * @see http://codex.wordpress.org/Function_Reference/wp_enqueue_script 143 * @since 1.5143 * @since BuddyPress (1.5) 144 144 */ 145 145 function bp_dtheme_enqueue_scripts() { … … 184 184 * @see http://codex.wordpress.org/Function_Reference/wp_enqueue_style 185 185 * @see http://codex.buddypress.org/releases/1-5-developer-and-designer-information/ 186 * @since 1.5186 * @since BuddyPress (1.5) 187 187 */ 188 188 function bp_dtheme_enqueue_styles() { … … 281 281 * 282 282 * @see _custom_background_cb() 283 * @since 1.5283 * @since BuddyPress (1.5) 284 284 */ 285 285 function bp_dtheme_custom_background_style() { … … 373 373 * function tied to the init hook. 374 374 * 375 * @since 1.5375 * @since BuddyPress (1.5) 376 376 */ 377 377 function bp_dtheme_widgets_init() { … … 587 587 * @param array Menu arguments from wp_nav_menu() 588 588 * @see wp_nav_menu() 589 * @since 1.5589 * @since BuddyPress (1.5) 590 590 */ 591 591 function bp_dtheme_main_nav( $args ) { … … 610 610 * @param array $args Default values for wp_page_menu() 611 611 * @see wp_page_menu() 612 * @since 1.5612 * @since BuddyPress (1.5) 613 613 */ 614 614 function bp_dtheme_page_menu_args( $args ) { … … 625 625 * @param array $default_labels The default options for strings, fields etc in the form 626 626 * @see comment_form() 627 * @since 1.5627 * @since BuddyPress (1.5) 628 628 */ 629 629 function bp_dtheme_comment_form( $default_labels ) { … … 662 662 * 663 663 * @see comment_form() 664 * @since 1.5664 * @since BuddyPress (1.5) 665 665 */ 666 666 function bp_dtheme_before_comment_form() { … … 690 690 * @see bp_dtheme_before_comment_form() 691 691 * @see comment_form() 692 * @since 1.5692 * @since BuddyPress (1.5) 693 693 */ 694 694 function bp_dtheme_after_comment_form() { … … 706 706 * Adds a hidden "redirect_to" input field to the sidebar login form. 707 707 * 708 * @since 1.5708 * @since BuddyPress (1.5) 709 709 */ 710 710 function bp_dtheme_sidebar_login_redirect_to() { … … 725 725 * @global WP_Query $wp_query 726 726 * @param string $nav_id DOM ID for this navigation 727 * @since 1.5727 * @since BuddyPress (1.5) 728 728 */ 729 729 function bp_dtheme_content_nav( $nav_id ) { … … 751 751 * 752 752 * @package BuddyPress 753 * @since 1.5.1753 * @since BuddyPress (1.5).1 754 754 * @see bp_dtheme_remove_nojs_body_class() 755 755 */ … … 772 772 * 773 773 * @package BuddyPress 774 * @since 1.5.1774 * @since BuddyPress (1.5).1 775 775 * @see bp_dtheme_add_nojs_body_class() 776 776 */ -
trunk/bp-themes/bp-default/onecolumn-page.php
r5737 r5927 7 7 * @package BuddyPress 8 8 * @subpackage BP_Default 9 * @since 1.59 * @since BuddyPress (1.5) 10 10 */ 11 11 -
trunk/bp-xprofile/bp-xprofile-functions.php
r5926 r5927 616 616 * 617 617 * @package BuddyPress 618 * @since 1.5618 * @since BuddyPress (1.5) 619 619 * 620 620 * @return str The field name -
trunk/bp-xprofile/bp-xprofile-loader.php
r5925 r5927 25 25 * Start the xprofile component creation process 26 26 * 27 * @since 1.527 * @since BuddyPress (1.5) 28 28 */ 29 29 function __construct() { … … 65 65 * backwards compatibility. 66 66 * 67 * @since 1.567 * @since BuddyPress (1.5) 68 68 * @global BuddyPress $bp The one true BuddyPress instance 69 69 */
Note: See TracChangeset
for help on using the changeset viewer.