Changeset 4827
- Timestamp:
- 07/23/2011 06:27:03 PM (14 years ago)
- Location:
- trunk/bp-xprofile
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-xprofile/bp-xprofile-actions.php
r4400 r4827 1 1 <?php 2 3 2 /******************************************************************************* 4 3 * Action functions are exactly the same as screen functions, however they do … … 6 5 * user back to the default screen after execution. 7 6 */ 7 8 // Exit if accessed directly 9 if ( !defined( 'ABSPATH' ) ) exit; 8 10 9 11 /** -
trunk/bp-xprofile/bp-xprofile-activity.php
r4400 r4827 9 9 * @subpackage XProfile 10 10 */ 11 12 // Exit if accessed directly 13 if ( !defined( 'ABSPATH' ) ) exit; 11 14 12 15 function xprofile_register_activity_actions() { -
trunk/bp-xprofile/bp-xprofile-admin.php
r4656 r4827 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 /** -
trunk/bp-xprofile/bp-xprofile-buddybar.php
r4596 r4827 1 1 <?php 2 3 // Nothing to see here 4 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 5 4 ?> -
trunk/bp-xprofile/bp-xprofile-cache.php
r3949 r4827 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 xprofile_clear_profile_groups_object_cache( $group_obj ) { -
trunk/bp-xprofile/bp-xprofile-classes.php
r4770 r4827 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 Class BP_XProfile_Group { -
trunk/bp-xprofile/bp-xprofile-cssjs.php
r4816 r4827 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 4 2 5 function xprofile_add_admin_css() { 3 6 if ( !empty( $_GET['page'] ) && strpos( $_GET['page'], 'bp-profile-setup' ) !== false ) { -
trunk/bp-xprofile/bp-xprofile-filters.php
r4434 r4827 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 /* Apply WordPress defined filters */ -
trunk/bp-xprofile/bp-xprofile-functions.php
r4634 r4827 8 8 * true or false on success or failure. 9 9 */ 10 11 // Exit if accessed directly 12 if ( !defined( 'ABSPATH' ) ) exit; 10 13 11 14 /*** Field Group Management **************************************************/ -
trunk/bp-xprofile/bp-xprofile-loader.php
r4786 r4827 1 1 <?php 2 3 2 /** 4 3 * BuddyPress XProfile Loader … … 10 9 * @subpackage XProfile Core 11 10 */ 11 12 // Exit if accessed directly 13 if ( !defined( 'ABSPATH' ) ) exit; 12 14 13 15 class BP_XProfile_Component extends BP_Component { -
trunk/bp-xprofile/bp-xprofile-screens.php
r4506 r4827 1 1 <?php 2 3 2 /******************************************************************************* 4 3 * Screen functions are the controllers of BuddyPress. They will execute when … … 6 5 * business 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 /** -
trunk/bp-xprofile/bp-xprofile-template.php
r4770 r4827 3 3 * XProfile Data Display Template Tags 4 4 **/ 5 6 // Exit if accessed directly 7 if ( !defined( 'ABSPATH' ) ) exit; 5 8 6 9 Class BP_XProfile_Data_Template {
Note: See TracChangeset
for help on using the changeset viewer.