Changeset 4819
- Timestamp:
- 07/23/2011 05:34:34 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-actions.php
r4817 r4819 1 1 <?php 2 // Exit if accessed directly3 if ( !defined( 'ABSPATH' ) ) exit;4 5 2 /******************************************************************************* 6 3 * Action functions are exactly the same as screen functions, however they do … … 8 5 * user back to the default screen after execution. 9 6 */ 7 8 // Exit if accessed directly 9 if ( !defined( 'ABSPATH' ) ) exit; 10 10 11 11 // Allow core components and dependent plugins to register activity actions -
trunk/bp-activity/bp-activity-functions.php
r4817 r4819 1 1 <?php 2 /** 3 * BuddyPress Activity Functions 4 * 5 * Functions for the Activity Streams component 6 * 7 * @package BuddyPress 8 * @subpackage Activity Core 9 */ 10 2 11 // Exit if accessed directly 3 12 if ( !defined( 'ABSPATH' ) ) exit; 4 5 /**6 * BuddyPress Activity Functions7 *8 * Functions for the Activity Streams component9 *10 * @package BuddyPress11 * @subpackage Activity Core12 */13 13 14 14 /** -
trunk/bp-activity/bp-activity-template.php
r4817 r4819 1 1 <?php 2 /** 3 * BuddyPress Activity Template Functions 4 * 5 * @package BuddyPress 6 * @subpackage Activity Template 7 */ 8 2 9 // Exit if accessed directly 3 10 if ( !defined( 'ABSPATH' ) ) exit; 4 5 /**6 * BuddyPress Activity Template Functions7 *8 * @package BuddyPress9 * @subpackage Activity Template10 */11 11 12 12 /** -
trunk/bp-blogs/bp-blogs-actions.php
r3917 r4819 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 function bp_blogs_redirect_to_random_blog() { -
trunk/bp-blogs/bp-blogs-activity.php
r4466 r4819 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; 9 7 10 8 11 function bp_blogs_register_activity_actions() { -
trunk/bp-blogs/bp-blogs-buddybar.php
r4651 r4819 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 // *** "My Blogs" Menu ******** -
trunk/bp-blogs/bp-blogs-cache.php
r3761 r4819 1 1 <?php 2 3 2 /******************************************************************************* 4 3 * Caching … … 7 6 * actions throughout BuddyPress. 8 7 */ 8 9 // Exit if accessed directly 10 if ( !defined( 'ABSPATH' ) ) exit; 9 11 10 12 function bp_blogs_clear_blog_object_cache( $blog_id, $user_id ) { -
trunk/bp-blogs/bp-blogs-classes.php
r4770 r4819 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 Class BP_Blogs_Blog { -
trunk/bp-blogs/bp-blogs-functions.php
r4651 r4819 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 /** -
trunk/bp-blogs/bp-blogs-loader.php
r4786 r4819 1 1 <?php 2 3 2 /** 4 3 * BuddyPress Blogs Streams Loader … … 9 8 * @subpackage Blogs Core 10 9 */ 10 11 // Exit if accessed directly 12 if ( !defined( 'ABSPATH' ) ) exit; 11 13 12 14 class BP_Blogs_Component extends BP_Component { -
trunk/bp-blogs/bp-blogs-screens.php
r4088 r4819 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 function bp_blogs_screen_my_blogs() { -
trunk/bp-blogs/bp-blogs-template.php
r4804 r4819 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 /** -
trunk/bp-blogs/bp-blogs-widgets.php
r4767 r4819 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.