Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
11/11/2013 02:03:09 AM (12 years ago)
Author:
boonebgorges
Message:

Improve inline docs in bp-friends component. See #5022

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-friends/bp-friends-screens.php

    r7537 r7560  
    44 * BuddyPress Friends Screen Functions
    55 *
    6  * Screen functions are the controllers of BuddyPress. They will execute when their
    7  * specific URL is caught. They will first save or manipulate data using business
    8  * 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.
    99 *
    1010 * @package BuddyPress
     
    1515if ( !defined( 'ABSPATH' ) ) exit;
    1616
     17/**
     18 * Catch and process the My Friends page.
     19 */
    1720function friends_screen_my_friends() {
    1821
     
    2528}
    2629
     30/**
     31 * Catch and process the Requests page.
     32 */
    2733function friends_screen_requests() {
    2834    if ( bp_is_action_variable( 'accept', 0 ) && is_numeric( bp_action_variable( 1 ) ) ) {
     
    6975}
    7076
     77/**
     78 * Add Friends-related settings to the Settings > Notifications page.
     79 */
    7180function friends_screen_notification_settings() {
    7281
Note: See TracChangeset for help on using the changeset viewer.