Changeset 6694
- Timestamp:
- 09/13/2017 05:41:30 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/core/options.php
r6642 r6694 22 22 function bbp_get_default_options() { 23 23 24 // Use the participant role for the default-default role 25 $role = bbp_get_participant_role(); 26 24 27 // Filter & return 25 28 return (array) apply_filters( 'bbp_get_default_options', array( … … 27 30 /** DB Version ********************************************************/ 28 31 29 '_bbp_db_version' => bbpress()->db_version,32 '_bbp_db_version' => 0, // Database version 30 33 31 34 /** Settings **********************************************************/ 32 35 33 '_bbp_edit_lock' => 5, 34 '_bbp_throttle_time' => 10, 35 '_bbp_enable_favorites' => 1, 36 '_bbp_enable_subscriptions' => 1, 37 '_bbp_enable_engagements' => 1, 38 '_bbp_allow_content_edit' => 1, 39 '_bbp_allow_content_throttle' => 1, 40 '_bbp_allow_anonymous' => 0, 41 '_bbp_allow_global_access' => 1, 42 '_bbp_allow_revisions' => 1, 43 '_bbp_allow_topic_tags' => 1, 44 '_bbp_allow_forum_mods' => 1, 45 '_bbp_allow_super_mods' => 0, 46 '_bbp_allow_threaded_replies' => 0, 47 '_bbp_allow_search' => 1, 48 '_bbp_thread_replies_depth' => 2, 49 '_bbp_use_wp_editor' => 1, 50 '_bbp_use_autoembed' => 0, 51 '_bbp_theme_package_id' => 'default', 52 '_bbp_default_role' => bbp_get_participant_role(),// Default forums role53 '_bbp_settings_integration' => 'basic', 36 '_bbp_edit_lock' => 5, // Lock post editing after 5 minutes 37 '_bbp_throttle_time' => 10, // Throttle post time to 10 seconds 38 '_bbp_enable_favorites' => 1, // Favorites 39 '_bbp_enable_subscriptions' => 1, // Subscriptions 40 '_bbp_enable_engagements' => 1, // Engagements 41 '_bbp_allow_content_edit' => 1, // Allow content edit 42 '_bbp_allow_content_throttle' => 1, // Allow content throttle 43 '_bbp_allow_anonymous' => 0, // Allow anonymous posting 44 '_bbp_allow_global_access' => 1, // Users from all sites can post 45 '_bbp_allow_revisions' => 1, // Allow revisions 46 '_bbp_allow_topic_tags' => 1, // Allow topic tagging 47 '_bbp_allow_forum_mods' => 1, // Allow per-forum moderation 48 '_bbp_allow_super_mods' => 0, // Allow mods to edit users 49 '_bbp_allow_threaded_replies' => 0, // Allow threaded replies 50 '_bbp_allow_search' => 1, // Allow forum-wide search 51 '_bbp_thread_replies_depth' => 2, // Thread replies depth 52 '_bbp_use_wp_editor' => 1, // Use the WordPress editor if available 53 '_bbp_use_autoembed' => 0, // Allow oEmbed in topics and replies 54 '_bbp_theme_package_id' => 'default', // The ID for the current theme package 55 '_bbp_default_role' => $role, // Default forums role 56 '_bbp_settings_integration' => 'basic', // How to integrate into wp-admin 54 57 55 58 /** Per Page **********************************************************/
Note: See TracChangeset
for help on using the changeset viewer.