Skip to:
Content

bbPress.org


Ignore:
Timestamp:
02/26/2017 07:25:15 PM (9 years ago)
Author:
johnjamesjacoby
Message:

Engagements: Allow engagements to be toggled on/off, for forums that have not run the upgrade routine yet.

Also missed a spot in the BuddyPress integration.

See #3068.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/core/options.php

    r6320 r6321  
    232232
    233233/**
     234 * Checks if engagements feature is enabled.
     235 *
     236 * @since 2.6.0 bbPress (r6320)
     237 *
     238 * @param $default bool Optional.Default value true
     239 * @uses get_option() To get the engagements option
     240 * @return bool Is engagements enabled or not
     241 */
     242function bbp_is_engagements_active( $default = 1 ) {
     243    return (bool) apply_filters( 'bbp_is_engagements_active', (bool) get_option( '_bbp_enable_engagements', $default ) );
     244}
     245
     246/**
    234247 * Are topic tags allowed
    235248 *
Note: See TracChangeset for help on using the changeset viewer.