Changeset 4822
- Timestamp:
- 07/23/2011 06:17:04 PM (14 years ago)
- Location:
- trunk/bp-friends
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-friends/bp-friends-actions.php
r4647 r4822 1 1 <?php 2 3 2 /** 4 3 * Action functions are exactly the same as screen functions, however they do not … … 6 5 * back to the default screen after execution. 7 6 */ 7 8 // Exit if accessed directly 9 if ( !defined( 'ABSPATH' ) ) exit; 8 10 9 11 function friends_action_add_friend() { -
trunk/bp-friends/bp-friends-activity.php
r4647 r4822 1 1 <?php 2 3 2 /** 4 3 * These functions handle the recording, deleting and formatting of activity and 5 4 * notifications for the user and for this specific component. 6 5 */ 6 7 // Exit if accessed directly 8 if ( !defined( 'ABSPATH' ) ) exit; 7 9 8 10 function friends_record_activity( $args = '' ) { -
trunk/bp-friends/bp-friends-cache.php
r4605 r4822 1 1 <?php 2 3 2 /** 4 3 * Caching functions handle the clearing of cached objects and pages on specific 5 4 * actions throughout BuddyPress. 6 5 */ 6 7 // Exit if accessed directly 8 if ( !defined( 'ABSPATH' ) ) exit; 7 9 8 10 function friends_clear_friend_object_cache( $friendship_id ) { -
trunk/bp-friends/bp-friends-classes.php
r4770 r4822 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 class BP_Friends_Friendship { -
trunk/bp-friends/bp-friends-functions.php
r4799 r4822 1 1 <?php 2 3 4 2 /******************************************************************************** 5 3 * Business Functions … … 10 8 * true or false on success or failure. 11 9 */ 10 11 // Exit if accessed directly 12 if ( !defined( 'ABSPATH' ) ) exit; 12 13 13 14 function friends_add_friend( $initiator_userid, $friend_userid, $force_accept = false ) { -
trunk/bp-friends/bp-friends-loader.php
r4786 r4822 1 1 <?php 2 3 2 /** 4 3 * BuddyPress Friends Streams Loader … … 9 8 * @subpackage Friends Core 10 9 */ 10 11 // Exit if accessed directly 12 if ( !defined( 'ABSPATH' ) ) exit; 11 13 12 14 class BP_Friends_Component extends BP_Component { -
trunk/bp-friends/bp-friends-notifications.php
r4638 r4822 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 function friends_notification_new_request( $friendship_id, $initiator_id, $friend_id ) { -
trunk/bp-friends/bp-friends-screens.php
r4605 r4822 1 1 <?php 2 3 2 /** 4 3 * Screen functions are the controllers of BuddyPress. They will execute when their … … 6 5 * functions, then pass on the user to a template file. 7 6 */ 7 8 // Exit if accessed directly 9 if ( !defined( 'ABSPATH' ) ) exit; 8 10 9 11 function friends_screen_my_friends() { -
trunk/bp-friends/bp-friends-template.php
r4786 r4822 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 /**
Note: See TracChangeset
for help on using the changeset viewer.