buddypress/bp-loader.php
Andy Peatling 788b012385 Fixing sidebar members and groups widget JS.
git-svn-id: https://buddypress.svn.wordpress.org/trunk@2444 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
2010-01-25 12:32:11 +00:00

86 lines
No EOL
3.1 KiB
PHP

<?php
/*
Plugin Name: BuddyPress
Plugin URI: http://buddypress.org/download/
Description: BuddyPress will add social networking features to a new or existing WordPress MU installation.
Author: The BuddyPress Community
Version: 1.2-beta
Author URI: http://buddypress.org/developers/
Site Wide Only: true
*/
define( 'BP_VERSION', '1.2-beta' );
/***
* This file will load in each BuddyPress component based on which
* of the components have been activated on the "BuddyPress" admin menu.
*/
require_once( WP_PLUGIN_DIR . '/buddypress/bp-core.php' );
$bp_deactivated = apply_filters( 'bp_deactivated_components', get_site_option( 'bp-deactivated-components' ) );
do_action( 'bp_core_loaded' );
/* Activity Streams */
if ( !isset( $bp_deactivated['bp-activity.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-activity.php') )
include( BP_PLUGIN_DIR . '/bp-activity.php' );
/* Blog Tracking */
if ( !isset( $bp_deactivated['bp-blogs.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-blogs.php') )
include( BP_PLUGIN_DIR . '/bp-blogs.php' );
/* bbPress Forum Integration */
if ( !isset( $bp_deactivated['bp-forums.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-forums.php') )
include( BP_PLUGIN_DIR . '/bp-forums.php' );
/* Friend Connections */
if ( !isset( $bp_deactivated['bp-friends.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-friends.php') )
include( BP_PLUGIN_DIR . '/bp-friends.php' );
/* Groups Support */
if ( !isset( $bp_deactivated['bp-groups.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-groups.php') )
include( BP_PLUGIN_DIR . '/bp-groups.php' );
/* Private Messaging */
if ( !isset( $bp_deactivated['bp-messages.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-messages.php') )
include( BP_PLUGIN_DIR . '/bp-messages.php' );
/* Extended Profiles */
if ( !isset( $bp_deactivated['bp-xprofile.php'] ) && file_exists( BP_PLUGIN_DIR . '/bp-xprofile.php') )
include( BP_PLUGIN_DIR . '/bp-xprofile.php' );
do_action( 'bp_init' );
/* Activation Function */
function bp_loader_activate() {
/* Force refresh theme roots. */
delete_site_transient( 'theme_roots' );
/* Switch the user to bp-classic if they are using the old bp-default on activation */
if ( 'bp-sn-parent' == get_blog_option( BP_ROOT_BLOG, 'template' ) && 'bp-default' == get_blog_option( BP_ROOT_BLOG, 'stylesheet' ) )
switch_theme( 'bp-sn-parent', 'bp-classic' );
do_action( 'bp_loader_activate' );
}
register_activation_hook( 'buddypress/bp-loader.php', 'bp_loader_activate' );
/* Deactivation Function */
function bp_loader_deactivate() {
if ( !function_exists( 'delete_site_option') )
return false;
delete_site_option( 'bp-core-db-version' );
delete_site_option( 'bp-activity-db-version' );
delete_site_option( 'bp-blogs-db-version' );
delete_site_option( 'bp-friends-db-version' );
delete_site_option( 'bp-groups-db-version' );
delete_site_option( 'bp-messages-db-version' );
delete_site_option( 'bp-xprofile-db-version' );
delete_site_option( 'bp-deactivated-components' );
delete_site_option( 'bp-blogs-first-install' );
do_action( 'bp_loader_deactivate' );
}
register_deactivation_hook( 'buddypress/bp-loader.php', 'bp_loader_deactivate' );
?>