<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[BuddyPress][5304] trunk/bp-core: Port caps and options API's from bbPress 2 to Core component.</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg > ul, #logmsg > ol { margin-left: 0; margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://buddypress.trac.wordpress.org/changeset/5304">5304</a></dd>
<dt>Author</dt> <dd>johnjamesjacoby</dd>
<dt>Date</dt> <dd>2011-11-08 02:14:00 +0000 (Tue, 08 Nov 2011)</dd>
</dl>

<h3>Log Message</h3>
<pre>Port caps and options API's from bbPress 2 to Core component. Files not included yet, and logic still needs to be built in. See <a href="http://buddypress.trac.wordpress.org/ticket/3739">#3739</a>.</pre>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkbpcorebpcorecapsphp">trunk/bp-core/bp-core-caps.php</a></li>
<li><a href="#trunkbpcorebpcoreoptionsphp">trunk/bp-core/bp-core-options.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkbpcorebpcorecapsphp"></a>
<div class="addfile"><h4>Added: trunk/bp-core/bp-core-caps.php (0 => 5304)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/bp-core/bp-core-caps.php                                (rev 0)
+++ trunk/bp-core/bp-core-caps.php        2011-11-08 02:14:00 UTC (rev 5304)
</span><span class="lines">@@ -0,0 +1,380 @@
</span><ins>+&lt;?php
+
+/**
+ * BuddyPress Capabilites
+ *
+ * @package BuddyPress
+ * @subpackage Capabilities
+ */
+
+// Exit if accessed directly
+if ( !defined( 'ABSPATH' ) ) exit;
+
+/**
+ * Adds BuddyPress-specific user roles.
+ *
+ * This is called on plugin activation.
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @uses get_option() To get the default role
+ * @uses get_role() To get the default role object
+ * @uses add_role() To add our own roles
+ * @uses do_action() Calls 'bp_add_roles'
+ */
+function bp_add_roles() {
+
+        // Get new role names
+        $moderator_role   = bp_get_moderator_role();
+        $participant_role = bp_get_participant_role();
+
+        // Add the Moderator role and add the default role caps.
+        // Mod caps are added by the bp_add_caps() function
+        $default = get_role( get_option( 'default_role' ) );
+
+        // If role does not exist, default to read cap
+        if ( empty( $default-&gt;capabilities ) )
+                $default-&gt;capabilities = array( 'read' );
+
+        // Moderators are default role + community moderating caps in bp_add_caps()
+        add_role( $moderator_role,   'Community Moderator',   $default-&gt;capabilities );
+
+        // Forum Subscribers are auto added to sites with global communities
+        add_role( $participant_role, 'Community Participant', $default-&gt;capabilities );
+
+        do_action( 'bp_add_roles' );
+}
+
+/**
+ * Adds capabilities to WordPress user roles.
+ *
+ * This is called on plugin activation.
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @uses get_role() To get the administrator, default and moderator roles
+ * @uses WP_Role::add_cap() To add various capabilities
+ * @uses do_action() Calls 'bp_add_caps'
+ */
+function bp_add_caps() {
+        global $wp_roles;
+
+        // Load roles if not set
+        if ( ! isset( $wp_roles ) )
+                $wp_roles = new WP_Roles();
+
+        // Loop through available roles
+        foreach( $wp_roles-&gt;roles as $role =&gt; $details ) {
+
+                // Load this role
+                $this_role = get_role( $role );
+
+                // Loop through caps for this role and remove them
+                foreach ( bp_get_caps_for_role( $role ) as $cap ) {
+                        $this_role-&gt;add_cap( $cap );
+                }
+        }
+
+        do_action( 'bp_add_caps' );
+}
+
+/**
+ * Removes capabilities from WordPress user roles.
+ *
+ * This is called on plugin deactivation.
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @uses get_role() To get the administrator and default roles
+ * @uses WP_Role::remove_cap() To remove various capabilities
+ * @uses do_action() Calls 'bp_remove_caps'
+ */
+function bp_remove_caps() {
+        global $wp_roles;
+
+        // Load roles if not set
+        if ( ! isset( $wp_roles ) )
+                $wp_roles = new WP_Roles();
+
+        // Loop through available roles
+        foreach( $wp_roles-&gt;roles as $role =&gt; $details ) {
+
+                // Load this role
+                $this_role = get_role( $role );
+
+                // Loop through caps for this role and remove them
+                foreach ( bp_get_caps_for_role( $role ) as $cap ) {
+                        $this_role-&gt;remove_cap( $cap );
+                }
+        }
+
+        do_action( 'bp_remove_caps' );
+}
+
+/**
+ * Removes BuddyPress-specific user roles.
+ *
+ * This is called on plugin deactivation.
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @uses remove_role() To remove our roles
+ * @uses do_action() Calls 'bp_remove_roles'
+ */
+function bp_remove_roles() {
+
+        // Get new role names
+        $moderator_role   = bp_get_moderator_role();
+        $participant_role = bp_get_participant_role();
+
+        // Remove the Moderator role
+        remove_role( $moderator_role );
+
+        // Remove the Moderator role
+        remove_role( $participant_role );
+
+        do_action( 'bp_remove_roles' );
+}
+
+/**
+ * Maps community caps to built in WordPress caps
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @param array $caps Capabilities for meta capability
+ * @param string $cap Capability name
+ * @param int $user_id User id
+ * @param mixed $args Arguments
+ * @uses get_post() To get the post
+ * @uses get_post_type_object() To get the post type object
+ * @uses apply_filters() Calls 'bp_map_meta_caps' with caps, cap, user id and
+ *                        args
+ * @return array Actual capabilities for meta capability
+ */
+function bp_map_meta_caps( $caps, $cap, $user_id, $args ) {
+        return apply_filters( 'bp_map_meta_caps', $caps, $cap, $user_id, $args );
+}
+
+/**
+ * Return community capabilities
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @uses apply_filters() Calls 'bp_get_community_caps' with the capabilities
+ * @return array Forum capabilities
+ */
+function bp_get_community_caps() {
+
+        // Forum meta caps
+        $caps = array();
+
+        return apply_filters( 'bp_get_community_caps', $caps );
+}
+
+/**
+ * Returns an array of capabilities based on the role that is being requested.
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @param string $role Optional. Defaults to The role to load caps for
+ * @uses apply_filters() Allow return value to be filtered
+ *
+ * @return array Capabilities for $role
+ */
+function bp_get_caps_for_role( $role = '' ) {
+
+        // Get new role names
+        $moderator_role   = bp_get_moderator_role();
+        $participant_role = bp_get_participant_role();
+
+        // Which role are we looking for?
+        switch ( $role ) {
+
+                // Administrator
+                case 'administrator' :
+
+                        $caps = array(
+
+                                // Misc
+                                'moderate',
+                                'throttle',
+                                'view_trash'
+                        );
+
+                        break;
+
+                // Moderator
+                case $moderator_role :
+
+                        $caps = array(
+
+                                // Misc
+                                'moderate',
+                                'throttle',
+                                'view_trash',
+                        );
+
+                        break;
+
+                // WordPress Core Roles
+                case 'editor'          :
+                case 'author'          :
+                case 'contributor'     :
+                case 'subscriber'      :
+
+                // BuddyPress Participant Role
+                case $participant_role :
+                default                :
+
+                        $caps = array();
+
+                        break;
+        }
+
+        return apply_filters( 'bp_get_caps_for_role', $caps, $role );
+}
+
+/**
+ * Give a user the default 'Forum Participant' role when creating a topic/reply
+ * on a site they do not have a role or capability on.
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @global BuddyPress $bbp
+ *
+ * @uses is_multisite()
+ * @uses bp_allow_global_access()
+ * @uses bp_is_user_inactive()
+ * @uses is_user_logged_in()
+ * @uses current_user_can()
+ * @uses WP_User::set_role()
+ *
+ * @return If user is not spam/deleted or is already capable
+ */
+function bp_global_access_auto_role() {
+
+        // Bail if not multisite or community is not global
+        if ( !is_multisite() || !bp_allow_global_access() )
+                return;
+
+        // Bail if user is not active
+        if ( bp_is_user_inactive() )
+                return;
+
+        // Bail if user is not logged in
+        if ( !is_user_logged_in() )
+                return;
+
+        // Give the user the 'Forum Participant' role
+        if ( current_user_can( 'bp_masked' ) ) {
+                global $bbp;
+
+                // Get the default role
+                $default_role = bp_get_participant_role();
+
+                // Set the current users default role
+                $bbp-&gt;current_user-&gt;set_role( $default_role );
+        }
+}
+
+/**
+ * The participant role for registered users without roles
+ *
+ * This is primarily for multisite compatibility when users without roles on
+ * sites that have global communities enabled
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @param string $role
+ * @uses apply_filters()
+ * @return string
+ */
+function bp_get_participant_role() {
+
+        // Hardcoded participant role
+        $role = 'bp_participant';
+
+        // Allow override
+        return apply_filters( 'bp_get_participant_role', $role );
+}
+
+/**
+ * The moderator role for BuddyPress users
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @param string $role
+ * @uses apply_filters()
+ * @return string
+ */
+function bp_get_moderator_role() {
+
+        // Hardcoded moderated user role
+        $role = 'bp_moderator';
+
+        // Allow override
+        return apply_filters( 'bp_get_moderator_role', $role );
+}
+
+/**
+ * Add the default role and mapped BuddyPress caps to the current user if needed
+ *
+ * This function will bail if the community is not global in a multisite
+ * installation of WordPress, or if the user is marked as spam or deleted.
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @uses is_multisite()
+ * @uses bp_allow_global_access()
+ * @uses bp_is_user_inactive()
+ * @uses is_user_logged_in()
+ * @uses current_user_can()
+ * @uses get_option()
+ * @uses bp_get_caps_for_role()
+ *
+ * @global BuddyPress $bbp
+ * @return If not multisite, not global, or user is deleted/spammed
+ */
+function bp_global_access_role_mask() {
+
+        // Bail if not multisite or community is not global
+        if ( !is_multisite() || !bp_allow_global_access() )
+                return;
+
+        // Bail if user is marked as spam or is deleted
+        if ( bp_is_user_inactive() )
+                return;
+
+        // Normal user is logged in but has no caps
+        if ( is_user_logged_in() &amp;&amp; !current_user_can( 'read' ) ) {
+
+                // Define local variable
+                $mapped_meta_caps = array();
+
+                // Assign user the minimal participant role to map caps to
+                $default_role  = bp_get_participant_role();
+
+                // Get BuddyPress caps for the default role
+                $caps_for_role = bp_get_caps_for_role( $default_role );
+
+                // Set all caps to true
+                foreach ( $caps_for_role as $cap ) {
+                        $mapped_meta_caps[$cap] = true;
+                }
+
+                // Add 'read' cap just in case
+                $mapped_meta_caps['read']      = true;
+                $mapped_meta_caps['bp_masked'] = true;
+
+                // Allow global access caps to be manipulated
+                $mapped_meta_caps = apply_filters( 'bp_global_access_mapped_meta_caps', $mapped_meta_caps );
+
+                // Assign the role and mapped caps to the current user
+                global $bp;
+                $bp-&gt;current_user-&gt;roles[0] = $default_role;
+                $bp-&gt;current_user-&gt;caps     = $mapped_meta_caps;
+                $bp-&gt;current_user-&gt;allcaps  = $mapped_meta_caps;
+        }
+}
+
+?&gt;
</ins><span class="cx">Property changes on: trunk/bp-core/bp-core-caps.php
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnmimetype"></a>
<div class="addfile"><h4>Added: svn:mime-type</h4></div>
<a id="svneolstyle"></a>
<div class="addfile"><h4>Added: svn:eol-style</h4></div>
<a id="trunkbpcorebpcoreoptionsphp"></a>
<div class="addfile"><h4>Added: trunk/bp-core/bp-core-options.php (0 => 5304)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/bp-core/bp-core-options.php                                (rev 0)
+++ trunk/bp-core/bp-core-options.php        2011-11-08 02:14:00 UTC (rev 5304)
</span><span class="lines">@@ -0,0 +1,402 @@
</span><ins>+&lt;?php
+
+/**
+ * BuddyPress Options
+ *
+ * @package BuddyPress
+ * @subpackage Options
+ */
+
+// Exit if accessed directly
+if ( !defined( 'ABSPATH' ) ) exit;
+
+/**
+ * Get the default site options and their values
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @return array Filtered option names and values
+ */
+function bp_get_default_options() {
+
+        // Default options
+        $options = array (
+
+                /** DB Version ********************************************************/
+
+                '_bp_db_version'            =&gt; '155',
+
+                /** Settings **********************************************************/
+
+                // Lock post editing after 5 minutes
+                '_bp_edit_lock'             =&gt; '5',
+
+                // Throttle post time to 10 seconds
+                '_bp_throttle_time'         =&gt; '10',
+
+                // Favorites
+                '_bp_enable_favorites'      =&gt; true,
+
+                // Subscriptions
+                '_bp_enable_subscriptions'  =&gt; true,
+
+                // Allow anonymous posting
+                '_bp_allow_anonymous'       =&gt; false,
+
+                // Users from all sites can post
+                '_bp_allow_global_access'   =&gt; false,
+
+                // Use the WordPress editor if available
+                '_bp_use_wp_editor'         =&gt; true,
+
+                /** Per Page **********************************************************/
+
+                // Topics per page
+                '_bp_topics_per_page'       =&gt; '15',
+
+                // Replies per page
+                '_bp_replies_per_page'      =&gt; '15',
+
+                // Forums per page
+                '_bp_forums_per_page'       =&gt; '50',
+
+                // Topics per RSS page
+                '_bp_topics_per_rss_page'   =&gt; '25',
+
+                // Replies per RSS page
+                '_bp_replies_per_rss_page'  =&gt; '25',
+
+                /** Page For **********************************************************/
+
+                // Page for forums
+                '_bp_page_for_forums'       =&gt; '0',
+
+                // Page for forums
+                '_bp_page_for_topics'       =&gt; '0',
+
+                // Page for login
+                '_bp_page_for_login'        =&gt; '0',
+
+                // Page for register
+                '_bp_page_for_register'     =&gt; '0',
+
+                // Page for lost-pass
+                '_bp_page_for_lost_pass'    =&gt; '0',
+
+                /** Archive Slugs *****************************************************/
+
+                // Forum archive slug
+                '_bp_root_slug'             =&gt; 'forums',
+
+                // Topic archive slug
+                '_bp_topic_archive_slug'    =&gt; 'topics',
+
+                /** Single Slugs ******************************************************/
+
+                // Include Forum archive before single slugs
+                '_bp_include_root'          =&gt; true,
+
+                // Forum slug
+                '_bp_forum_slug'            =&gt; 'forum',
+
+                // Topic slug
+                '_bp_topic_slug'            =&gt; 'topic',
+
+                // Reply slug
+                '_bp_reply_slug'            =&gt; 'reply',
+
+                // Topic tag slug
+                '_bp_topic_tag_slug'        =&gt; 'topic-tag',
+
+                /** Other Slugs *******************************************************/
+
+                // User profile slug
+                '_bp_user_slug'             =&gt; 'users',
+
+                // View slug
+                '_bp_view_slug'             =&gt; 'view',
+
+                /** Topics ************************************************************/
+
+                // Title Max Length
+                '_bp_title_max_length'      =&gt; '80',
+
+                /** BuddyPress ********************************************************/
+
+                // Enable BuddyPress Group Extension
+                '_bbp_enable_group_forums'  =&gt; true,
+
+                // Group Forums parent forum id
+                '_bbp_group_forums_root_id' =&gt; '0',
+
+                /** Akismet ***********************************************************/
+
+                // Users from all sites can post
+                '_bp_enable_akismet'        =&gt; true,
+        );
+
+        return apply_filters( 'bp_get_default_options', $options );
+}
+
+/**
+ * Add default options
+ *
+ * Hooked to bp_activate, it is only called once when BuddyPress is activated.
+ * This is non-destructive, so existing settings will not be overridden.
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @uses bp_get_default_options() To get default options
+ * @uses add_option() Adds default options
+ * @uses do_action() Calls 'bp_add_options'
+ */
+function bp_add_options() {
+
+        // Get the default options and values
+        $options = bp_get_default_options();
+
+        // Add default options
+        foreach ( $options as $key =&gt; $value )
+                add_option( $key, $value );
+
+        // Allow previously activated plugins to append their own options.
+        do_action( 'bp_add_options' );
+}
+/**
+ * Delete default options
+ *
+ * Hooked to bp_uninstall, it is only called once when BuddyPress is uninstalled.
+ * This is destructive, so existing settings will be destroyed.
+ *
+ * @since BuddyPress (1.6)
+ * 
+ * @uses bp_get_default_options() To get default options
+ * @uses delete_option() Removes default options
+ * @uses do_action() Calls 'bp_delete_options'
+ */
+function bp_delete_options() {
+
+        // Get the default options and values
+        $options = bp_get_default_options();
+
+        // Add default options
+        foreach ( $options as $key =&gt; $value )
+                delete_option( $key );
+
+        // Allow previously activated plugins to append their own options.
+        do_action( 'bp_delete_options' );
+}
+
+/**
+ * Add filters to each BuddyPress option and allow them to be overloaded from
+ * inside the $bbp-&gt;options array.
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @uses bp_get_default_options() To get default options
+ * @uses add_filter() To add filters to 'pre_option_{$key}'
+ * @uses do_action() Calls 'bp_add_option_filters'
+ */
+function bp_setup_option_filters() {
+
+        // Get the default options and values
+        $options = bp_get_default_options();
+
+        // Add filters to each BuddyPress option
+        foreach ( $options as $key =&gt; $value )
+                add_filter( 'pre_option_' . $key, 'bp_pre_get_option' );
+
+        // Allow previously activated plugins to append their own options.
+        do_action( 'bp_setup_option_filters' );
+}
+
+/**
+ * Filter default options and allow them to be overloaded from inside the
+ * $bbp-&gt;options array.
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @global BuddyPress $bbp
+ * @param bool $value Optional. Default value false
+ * @return mixed false if not overloaded, mixed if set
+ */
+function bp_pre_get_option( $value = false ) {
+        global $bbp;
+
+        // Get the name of the current filter so we can manipulate it
+        $filter = current_filter();
+
+        // Remove the filter prefix
+        $option = str_replace( 'pre_option_', '', $filter );
+
+        // Check the options global for preset value
+        if ( !empty( $bbp-&gt;options[$option] ) )
+                $value = $bbp-&gt;options[$option];
+
+        // Always return a value, even if false
+        return $value;
+}
+
+/** Active? *******************************************************************/
+
+/**
+ * Checks if favorites feature is enabled.
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @param $default bool Optional.Default value true
+ *
+ * @uses get_option() To get the favorites option
+ * @return bool Is favorites enabled or not
+ */
+function bp_is_favorites_active( $default = true ) {
+        return (bool) apply_filters( 'bp_is_favorites_active', (bool) get_option( '_bp_enable_favorites', $default ) );
+}
+
+/**
+ * Checks if subscription feature is enabled.
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @param $default bool Optional.Default value true
+ *
+ * @uses get_option() To get the subscriptions option
+ * @return bool Is subscription enabled or not
+ */
+function bp_is_subscriptions_active( $default = true ) {
+        return (bool) apply_filters( 'bp_is_subscriptions_active', (bool) get_option( '_bp_enable_subscriptions', $default ) );
+}
+
+/**
+ * Are topic and reply revisions allowed
+ *
+ * @since BuddyPress (r3412)
+ *
+ * @param $default bool Optional. Default value true
+ *
+ * @uses get_option() To get the allow revisions
+ * @return bool Are revisions allowed?
+ */
+function bp_allow_revisions( $default = true ) {
+        return (bool) apply_filters( 'bp_allow_revisions', (bool) get_option( '_bp_allow_revisions', $default ) );
+}
+
+/**
+ * Is the anonymous posting allowed?
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @param $default bool Optional. Default value
+ *
+ * @uses get_option() To get the allow anonymous option
+ * @return bool Is anonymous posting allowed?
+ */
+function bp_allow_anonymous( $default = false ) {
+        return apply_filters( 'bp_allow_anonymous', (bool) get_option( '_bp_allow_anonymous', $default ) );
+}
+
+/**
+ * Is this community available to all users on all sites in this installation?
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @param $default bool Optional. Default value false
+ *
+ * @uses get_option() To get the global access option
+ * @return bool Is global access allowed?
+ */
+function bp_allow_global_access( $default = false ) {
+        return (bool) apply_filters( 'bp_allow_global_access', (bool) get_option( '_bp_allow_global_access', $default ) );
+}
+
+/**
+ * Use the WordPress editor if available
+ *
+ * @since BuddyPress (r3386)
+ *
+ * @param $default bool Optional. Default value true
+ *
+ * @uses get_option() To get the WP editor option
+ * @return bool Use WP editor?
+ */
+function bp_use_wp_editor( $default = true ) {
+        return (bool) apply_filters( 'bp_use_wp_editor', (bool) get_option( '_bp_use_wp_editor', $default ) );
+}
+
+/**
+ * Output the maximum length of a title
+ *
+ * @since BuddyPress (r3246)
+ *
+ * @param $default bool Optional. Default value 80
+ */
+function bp_title_max_length( $default = '80' ) {
+        echo bp_get_title_max_length( $default );
+}
+        /**
+         * Return the maximum length of a title
+         *
+         * @since BuddyPress (1.6)
+         *
+         * @param $default bool Optional. Default value 80
+         *
+         * @uses get_option() To get the maximum title length
+         * @return int Is anonymous posting allowed?
+         */
+        function bp_get_title_max_length( $default = '80' ) {
+                return (int) apply_filters( 'bp_get_title_max_length', (int) get_option( '_bp_title_max_length', $default ) );
+        }
+
+/**
+ * Output the group forums root parent forum id
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @param $default bool Optional. Default value
+ */
+function bp_group_forums_root_id( $default = '0' ) {
+        echo bp_get_group_forums_root_id( $default );
+}
+        /**
+         * Return the grop forums root parent forum id
+         *
+         * @since BuddyPress (1.6)
+         *
+         * @param $default bool Optional. Default value 0
+         *
+         * @uses get_option() To get the maximum title length
+         * @return int Is anonymous posting allowed?
+         */
+        function bp_get_group_forums_root_id( $default = '0' ) {
+                return (int) apply_filters( 'bp_get_group_forums_root_id', (int) get_option( '_bbp_group_forums_root_id', $default ) );
+        }
+
+/**
+ * Checks if BuddyPress Group Forums are enabled
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @param $default bool Optional. Default value true
+ *
+ * @uses get_option() To get the group forums option
+ * @return bool Is group forums enabled or not
+ */
+function bp_is_group_forums_active( $default = true ) {
+        return (bool) apply_filters( 'bp_is_group_forums_active', (bool) get_option( '_bbp_enable_group_forums', $default ) );
+}
+
+/**
+ * Checks if Akismet is enabled
+ *
+ * @since BuddyPress (1.6)
+ *
+ * @param $default bool Optional. Default value true
+ *
+ * @uses get_option() To get the Akismet option
+ * @return bool Is Akismet enabled or not
+ */
+function bp_is_akismet_active( $default = true ) {
+        return (bool) apply_filters( 'bp_is_akismet_active', (bool) get_option( '_bp_enable_akismet', $default ) );
+}
+
+?&gt;
</ins><span class="cx">Property changes on: trunk/bp-core/bp-core-options.php
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svnmimetype"></a>
<div class="addfile"><h4>Added: svn:mime-type</h4></div>
<a id="svneolstyle"></a>
<div class="addfile"><h4>Added: svn:eol-style</h4></div>
</div>

</body>
</html>