Changeset 5926 for trunk/bp-core/bp-core-classes.php
- Timestamp:
- 03/16/2012 12:52:24 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-classes.php
r5906 r5926 374 374 * Fetches the user details for all the users who username starts with the letter given. 375 375 * 376 * @global object $bp Global BuddyPress settings object376 * @global BuddyPress $bp The one true BuddyPress instance 377 377 * @global wpdb $wpdb WordPress database object 378 378 * @param string $letter The letter the users names are to start with. … … 482 482 * Find users who match on the value of an xprofile data. 483 483 * 484 * @global object $bp Global BuddyPress settings object484 * @global BuddyPress $bp The one true BuddyPress instance 485 485 * @global wpdb $wpdb WordPress database object 486 486 * @param string $search_terms The terms to search the profile table value column for. … … 526 526 * Accepts multiple user IDs to fetch data for. 527 527 * 528 * @global object $bp Global BuddyPress settings object528 * @global BuddyPress $bp The one true BuddyPress instance 529 529 * @global wpdb $wpdb WordPress database object 530 530 * @param array $paged_users an array of stdClass containing the users … … 707 707 * Update or insert notification details into the database. 708 708 * 709 * @global object $bp Global BuddyPress settings object709 * @global BuddyPress $bp The one true BuddyPress instance 710 710 * @global wpdb $wpdb WordPress database object 711 711 * @return bool Success or failure … … 736 736 * Fetches the notification data from the database. 737 737 * 738 * @global object $bp Global BuddyPress settings object738 * @global BuddyPress $bp The one true BuddyPress instance 739 739 * @global wpdb $wpdb WordPress database object 740 740 */ … … 764 764 * Fetches all the notifications in the database for a specific user. 765 765 * 766 * @global object $bp Global BuddyPress settings object766 * @global BuddyPress $bp The one true BuddyPress instance 767 767 * @global wpdb $wpdb WordPress database object 768 768 * @param integer $user_id User ID … … 782 782 * Delete all the notifications for a user based on the component name and action. 783 783 * 784 * @global object $bp Global BuddyPress settings object784 * @global BuddyPress $bp The one true BuddyPress instance 785 785 * @global wpdb $wpdb WordPress database object 786 786 * @param integer $user_id … … 798 798 * Delete all the notifications that have a specific item id, component name and action. 799 799 * 800 * @global object $bp Global BuddyPress settings object800 * @global BuddyPress $bp The one true BuddyPress instance 801 801 * @global wpdb $wpdb WordPress database object 802 802 * @param integer $user_id The ID of the user who the notifications are for. … … 818 818 * Deletes all the notifications sent by a specific user, by component and action. 819 819 * 820 * @global object $bp Global BuddyPress settings object820 * @global BuddyPress $bp The one true BuddyPress instance 821 821 * @global wpdb $wpdb WordPress database object 822 822 * @param integer $user_id The ID of the user whose sent notifications we wish to delete. … … 834 834 * Deletes all the notifications for all users by item id, and optional secondary item id, and component name and action. 835 835 * 836 * @global object $bp Global BuddyPress settings object836 * @global BuddyPress $bp The one true BuddyPress instance 837 837 * @global wpdb $wpdb WordPress database object 838 838 * @param string $item_id The item id that they notifications are to be for.
Note: See TracChangeset
for help on using the changeset viewer.