Changeset 5928
- Timestamp:
- 03/16/2012 02:31:22 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-filters.php
r5927 r5928 248 248 * Catch mentions in saved activity items 249 249 * 250 * @since BuddyPress (1.5) .0250 * @since BuddyPress (1.5) 251 251 * 252 252 * @param obj $activity … … 298 298 * Truncates long activity entries when viewed in activity streams 299 299 * 300 * @since BuddyPress (1.5) .0300 * @since BuddyPress (1.5) 301 301 * 302 302 * @param $text The original activity entry text -
trunk/bp-activity/bp-activity-functions.php
r5927 r5928 16 16 * Checks $bp pages global and looks for directory page 17 17 * 18 * @since BuddyPress (1.5) .018 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .033 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .053 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .066 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .0125 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .0616 * @since BuddyPress (1.5) 617 617 * 618 618 * @param int $user_id -
trunk/bp-activity/bp-activity-loader.php
r5927 r5928 16 16 * Main Activity Class 17 17 * 18 * @since BuddyPress (1.5) .018 * @since BuddyPress (1.5) 19 19 */ 20 20 class BP_Activity_Component extends BP_Component { … … 23 23 * Start the activity component creation process 24 24 * 25 * @since BuddyPress (1.5) .025 * @since BuddyPress (1.5) 26 26 */ 27 27 function __construct() { … … 36 36 * Include files 37 37 * 38 * @since BuddyPress (1.5) .038 * @since BuddyPress (1.5) 39 39 */ 40 40 function includes() { … … 68 68 * backwards compatibility. 69 69 * 70 * @since BuddyPress (1.5) .070 * @since BuddyPress (1.5) 71 71 * 72 72 * @global object $bp BuddyPress global settings … … 102 102 * Setup BuddyBar navigation 103 103 * 104 * @since BuddyPress (1.5) .0104 * @since BuddyPress (1.5) 105 105 * 106 106 * @global object $bp BuddyPress global settings … … 203 203 * Set up the Toolbar 204 204 * 205 * @since BuddyPress (1.5) .0205 * @since BuddyPress (1.5) 206 206 * 207 207 * @global object $bp BuddyPress global settings … … 294 294 * Sets up the title for pages and <title> 295 295 * 296 * @since BuddyPress (1.5) .0296 * @since BuddyPress (1.5) 297 297 * 298 298 * @global object $bp BuddyPress global settings -
trunk/bp-activity/bp-activity-screens.php
r5927 r5928 14 14 * Activity screen index 15 15 * 16 * @since BuddyPress (1.5) .016 * @since BuddyPress (1.5) 17 17 * 18 18 * @uses bp_displayed_user_id() … … 129 129 * is taken to a specific screen. 130 130 * 131 * @since BuddyPress (1.5) .0131 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .0148 * @since BuddyPress (1.5) 149 149 * 150 150 * @uses bp_is_my_profile() -
trunk/bp-activity/bp-activity-template.php
r5927 r5928 14 14 * Output the activity component slug 15 15 * 16 * @since BuddyPress (1.5) .016 * @since BuddyPress (1.5) 17 17 * 18 18 * @uses bp_get_activity_slug() … … 24 24 * Return the activity component slug 25 25 * 26 * @since BuddyPress (1.5) .026 * @since BuddyPress (1.5) 27 27 * 28 28 * @global object $bp BuddyPress global settings … … 37 37 * Output the activity component root slug 38 38 * 39 * @since BuddyPress (1.5) .039 * @since BuddyPress (1.5) 40 40 * 41 41 * @uses bp_get_activity_root_slug() … … 47 47 * Return the activity component root slug 48 48 * 49 * @since BuddyPress (1.5) .049 * @since BuddyPress (1.5) 50 50 * 51 51 * @global object $bp BuddyPress global settings … … 60 60 * Output member directory permalink 61 61 * 62 * @since BuddyPress (1.5) .062 * @since BuddyPress (1.5) 63 63 * 64 64 * @uses bp_get_activity_directory_permalink() … … 70 70 * Return member directory permalink 71 71 * 72 * @since BuddyPress (1.5) .072 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .0490 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .01416 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .01435 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .01446 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .01464 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .01475 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .01493 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .01504 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .01521 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .01534 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .01556 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .01567 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .01589 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .01600 * @since BuddyPress (1.5) 1601 1601 * 1602 1602 * @uses wp_nonce_url() … … 1617 1617 * Echoes the content of the activity comment currently being displayed 1618 1618 * 1619 * @since BuddyPress (1.5) .01619 * @since BuddyPress (1.5) 1620 1620 * 1621 1621 * @uses bp_get_activity_comment_content() … … 1632 1632 * content of activity comments only. 1633 1633 * 1634 * @since BuddyPress (1.5) .01634 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .02173 * @since BuddyPress (1.5) 2174 2174 * 2175 2175 * @param object $comment Activity comment … … 2188 2188 * Determine if an favorites are allowed 2189 2189 * 2190 * @since BuddyPress (1.5) .02190 * @since BuddyPress (1.5) 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 BuddyPress (1.5) .02662 * @since BuddyPress (1.5) 2663 2663 * 2664 2664 * @uses bloginfo() -
trunk/bp-core/bp-core-buddybar.php
r5927 r5928 616 616 * This is a direct copy of WP's private _get_admin_bar_pref() 617 617 * 618 * @since BuddyPress (1.5) .0618 * @since BuddyPress (1.5) 619 619 * 620 620 * @param string $context Context of this preference check, either 'admin' or 'front'.
Note: See TracChangeset
for help on using the changeset viewer.