Changeset 7560 for trunk/bp-friends/bp-friends-screens.php
- Timestamp:
- 11/11/2013 02:03:09 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-friends/bp-friends-screens.php
r7537 r7560 4 4 * BuddyPress Friends Screen Functions 5 5 * 6 * Screen functions are the controllers of BuddyPress. They will execute when their7 * specific URL is caught. They will first save or manipulate data using business8 * functions, then pass on the user to a template file.6 * Screen functions are the controllers of BuddyPress. They will execute when 7 * their specific URL is caught. They will first save or manipulate data using 8 * business functions, then pass on the user to a template file. 9 9 * 10 10 * @package BuddyPress … … 15 15 if ( !defined( 'ABSPATH' ) ) exit; 16 16 17 /** 18 * Catch and process the My Friends page. 19 */ 17 20 function friends_screen_my_friends() { 18 21 … … 25 28 } 26 29 30 /** 31 * Catch and process the Requests page. 32 */ 27 33 function friends_screen_requests() { 28 34 if ( bp_is_action_variable( 'accept', 0 ) && is_numeric( bp_action_variable( 1 ) ) ) { … … 69 75 } 70 76 77 /** 78 * Add Friends-related settings to the Settings > Notifications page. 79 */ 71 80 function friends_screen_notification_settings() { 72 81
Note: See TracChangeset
for help on using the changeset viewer.