Changeset 4823
- Timestamp:
- 07/23/2011 06:20:16 PM (14 years ago)
- Location:
- trunk/bp-groups
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-groups/bp-groups-actions.php
r4649 r4823 1 1 <?php 2 3 4 2 /******************************************************************************** 5 3 * Action Functions … … 9 7 * back to the default screen after execution. 10 8 */ 9 10 // Exit if accessed directly 11 if ( !defined( 'ABSPATH' ) ) exit; 11 12 12 13 function groups_action_create_group() { -
trunk/bp-groups/bp-groups-activity.php
r4620 r4823 1 1 <?php 2 3 2 /** 4 3 * BuddyPress Groups Activity & Notification Functions … … 10 9 * @subpackage Groups 11 10 */ 11 12 // Exit if accessed directly 13 if ( !defined( 'ABSPATH' ) ) exit; 12 14 13 15 function groups_register_activity_actions() { -
trunk/bp-groups/bp-groups-adminbar.php
r4586 r4823 1 1 <?php 2 3 2 /** 4 3 * BuddyPress Groups Admin Bar … … 9 8 * @subpackage Groups 10 9 */ 10 11 // Exit if accessed directly 12 if ( !defined( 'ABSPATH' ) ) exit; 11 13 12 14 /** -
trunk/bp-groups/bp-groups-buddybar.php
r4761 r4823 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 function bp_groups_adminbar_admin_menu() { -
trunk/bp-groups/bp-groups-cache.php
r3818 r4823 1 1 <?php 2 3 2 /** 4 3 * BuddyPress Groups Caching … … 10 9 * @subpackage Groups 11 10 */ 11 12 // Exit if accessed directly 13 if ( !defined( 'ABSPATH' ) ) exit; 12 14 13 15 function groups_clear_group_object_cache( $group_id ) { -
trunk/bp-groups/bp-groups-classes.php
r4787 r4823 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 Class BP_Groups_Group { -
trunk/bp-groups/bp-groups-filters.php
r4506 r4823 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 /* Apply WordPress defined filters */ -
trunk/bp-groups/bp-groups-forums.php
r4787 r4823 1 1 <?php 2 3 2 /*** Group Forums **************************************************************/ 3 4 // Exit if accessed directly 5 if ( !defined( 'ABSPATH' ) ) exit; 4 6 5 7 function groups_new_group_forum( $group_id = 0, $group_name = '', $group_desc = '' ) { -
trunk/bp-groups/bp-groups-functions.php
r4804 r4823 1 1 <?php 2 3 2 /** 4 3 * Functions are where all the magic happens in BuddyPress. They will … … 7 6 * true or false on success or failure. 8 7 */ 8 9 // Exit if accessed directly 10 if ( !defined( 'ABSPATH' ) ) exit; 9 11 10 12 /** -
trunk/bp-groups/bp-groups-loader.php
r4786 r4823 1 1 <?php 2 3 4 2 /** 5 3 * BuddyPress Groups Loader … … 12 10 * @subpackage Groups Core 13 11 */ 12 13 // Exit if accessed directly 14 if ( !defined( 'ABSPATH' ) ) exit; 14 15 15 16 class BP_Groups_Component extends BP_Component { -
trunk/bp-groups/bp-groups-notifications.php
r4738 r4823 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 function groups_notification_group_updated( $group_id ) { -
trunk/bp-groups/bp-groups-screens.php
r4648 r4823 1 1 <?php 2 3 2 /******************************************************************************** 4 3 * Screen Functions … … 8 7 * functions, then pass on the user to a template file. 9 8 */ 9 10 // Exit if accessed directly 11 if ( !defined( 'ABSPATH' ) ) exit; 10 12 11 13 function groups_directory_groups_setup() { -
trunk/bp-groups/bp-groups-template.php
r4804 r4823 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 /** -
trunk/bp-groups/bp-groups-widgets.php
r4804 r4823 1 1 <?php 2 // Exit if accessed directly 3 if ( !defined( 'ABSPATH' ) ) exit; 2 4 3 5 /* Register widgets for groups component */
Note: See TracChangeset
for help on using the changeset viewer.