PluginProbe
BetterDocs – AI Documentation, Knowledge Base, MCP Server, Docs, Wikis, FAQ & Chatbot / 4.9.2
BetterDocs – AI Documentation, Knowledge Base, MCP Server, Docs, Wikis, FAQ & Chatbot v4.9.2
4.9.2 4.9.1 4.9.0 4.8.2 4.8.1 4.8.0 4.7.0 4.6.2 4.6.1 4.6.0 4.5.6 4.5.5 4.5.4 4.5.3 4.5.2 4.5.1 4.5.0 4.4.1 4.4.0 3.3.4 3.4.0 3.4.1 3.4.2 3.5.0 3.5.1 All 200 releases
← All changes | includes/Core/Settings.php +3114 -2782 4.5.14.9.2 View file →
@@ -1,2929 +1,3261 @@
1 1 <?php
2 +namespace WPDeveloper\BetterDocs\Core;
2 3
3 -namespace WPDeveloper\BetterDocs\Core;
4 +if ( ! defined( 'ABSPATH' ) ) {
5 + exit;
6 +}
4 7
8 +
5 9 use WP_Error;
6 10 use WP_User;
7 11 use WPDeveloper\BetterDocs\Admin\Builder\GlobalFields;
8 12 use WPDeveloper\BetterDocs\Admin\Builder\Rules;
13 +use WPDeveloper\BetterDocs\AI\ModelRegistry;
14 +use WPDeveloper\BetterDocs\AI\ProviderFactory;
15 +use WPDeveloper\BetterDocs\REST\AIEdit;
16 +use WPDeveloper\BetterDocs\Utils\AIHelper;
9 17 use WPDeveloper\BetterDocs\Utils\Base;
10 18 use WPDeveloper\BetterDocs\Utils\Database;
11 19 use WPDeveloper\BetterDocs\Utils\Helper;
12 20
21 +class Settings extends Base {
22 + public $base_key = 'betterdocs_settings';
13 23
14 -class Settings extends Base {
15 - public $base_key = 'betterdocs_settings';
24 + /**
25 + * Database class
26 + * @var Database
27 + */
28 + protected $database;
16 29
17 - /**
18 - * Database class
19 - * @var Database
20 - */
21 - protected $database;
30 + private $deprecated = array();
22 31
23 - private $deprecated = [];
32 + private $cannot_be_empty = array(
33 + 'breadcrumb_doc_title',
34 + 'docs_slug',
35 + 'category_slug',
36 + 'tag_slug',
37 + 'permalink_structure',
38 + 'docs_page'
39 + );
24 40
25 - private $cannot_be_empty = [
26 - 'breadcrumb_doc_title',
27 - 'docs_slug',
28 - 'category_slug',
29 - 'tag_slug',
30 - 'permalink_structure',
31 - 'docs_page'
32 - ];
41 + public function __construct( Database $database ) {
42 + $this->database = $database;
43 + $this->deprecated = $this->deprecated_settings();
33 44
34 - public function __construct( Database $database ) {
35 - $this->database = $database;
36 - $this->deprecated = $this->deprecated_settings();
45 + add_filter( 'betterdocs_settings_tabs', array( $this, 'import_export_settings' ) );
46 + add_filter( 'betterdocs_settings_tabs', array( $this, 'maybe_remove_git_tab' ), 20 );
37 47
38 - add_filter( 'betterdocs_settings_tabs', [ $this, 'import_export_settings' ] );
39 - add_filter( 'betterdocs_settings_tabs', [ $this, 'maybe_remove_git_tab' ], 20 );
48 + add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_old' ), 99 );
49 + add_action( 'admin_enqueue_scripts', array( $this, 'enqueue' ), 99 );
40 50
41 - add_action( 'admin_enqueue_scripts', [ $this, 'enqueue_old' ], 99 );
42 - add_action( 'admin_enqueue_scripts', [ $this, 'enqueue' ], 99 );
51 + // if ( isset( $_GET['page'] ) && $_GET['page'] === 'betterdocs-settings' && ! has_action( 'betterdocs_settings_header' ) ) {
52 + // add_action( 'betterdocs_settings_header', [ $this, 'header' ] );
53 + // }
43 54
44 - // if ( isset( $_GET['page'] ) && $_GET['page'] === 'betterdocs-settings' && ! has_action( 'betterdocs_settings_header' ) ) {
45 - // add_action( 'betterdocs_settings_header', [ $this, 'header' ] );
46 - // }
55 + add_action( 'wp_ajax_betterdocs_dark_mode', array( $this, 'dark_mode' ) );
56 + add_filter( 'betterdocs_settings_tab_advance', array( $this, 'hide_roles_management' ), 11, 1 );
57 + add_action( 'betterdocs::settings::saved', array( $this, 'fallback_slugs' ), 99, 3 );
58 + }
47 59
48 - add_action( 'wp_ajax_betterdocs_dark_mode', [ $this, 'dark_mode' ] );
49 - add_filter( 'betterdocs_settings_tab_advance', [ $this, 'hide_roles_management' ], 11, 1 );
50 - add_action( 'betterdocs::settings::saved', [ $this, 'fallback_slugs' ], 99, 3 );
51 - }
60 + public function fallback_slugs( $_saved, $_settings, $_old_settings = array() ) {
61 + $_default = $this->get_default();
62 + foreach ( $this->cannot_be_empty as $key ) {
63 + if ( 'docs_page' === $key && ! $_settings[ 'builtin_doc_page' ] && empty( $_settings[ $key ] ) ) {
64 + $this->save( 'builtin_doc_page', true );
65 + continue;
66 + }
52 67
53 - public function fallback_slugs( $_saved, $_settings, $_old_settings = [] ) {
54 - $_default = $this->get_default();
55 - foreach ( $this->cannot_be_empty as $key ) {
56 - if ( $key === 'docs_page' && ! $_settings['builtin_doc_page'] && empty( $_settings[ $key ] ) ) {
57 - $this->save( 'builtin_doc_page', true );
58 - continue;
59 - }
68 + if ( empty( $_settings[ $key ] ) ) {
69 + $this->save( $key, $_default[ $key ] );
70 + }
71 + }
72 + }
60 73
61 - if ( empty( $_settings[ $key ] ) ) {
62 - $this->save( $key, $_default[ $key ] );
63 - }
64 - }
65 - }
74 + /**
75 + * Get the settings URL for admin
76 + * @return string
77 + */
78 + public function url() {
79 + return esc_url( admin_url( 'admin.php?page=betterdocs-settings' ) );
80 + }
66 81
67 - /**
68 - * Get the settings URL for admin
69 - * @return string
70 - */
71 - public function url() {
72 - return esc_url( admin_url( 'admin.php?page=betterdocs-settings' ) );
73 - }
82 + /**
83 + * Settings keys holding secret API keys. These are masked before reaching
84 + * the browser, stripped for non-admins, and never persisted as their mask.
85 + *
86 + * Covers the AI Chatbot key plus every content-suite platform key. OpenAI's
87 + * is `ai_autowrite_api_key` (see ProviderFactory::key_field_for), hence the
88 + * dedupe.
89 + *
90 + * @return array<int,string>
91 + */
92 + public static function sensitive_api_key_fields() {
93 + $fields = array(
94 + ProviderFactory::OPENAI_KEY_FIELD,
95 + 'ai_chatbot_api_key',
96 + );
97 + foreach ( array_keys( ModelRegistry::platforms() ) as $platform ) {
98 + $fields[] = ProviderFactory::key_field_for( $platform );
99 + }
100 + // Add-ons (e.g. the AI Chatbot) register their own per-platform keys here
101 + // so they are masked in the browser and stripped for non-admins.
102 + return apply_filters( 'betterdocs_sensitive_api_key_fields', array_values( array_unique( $fields ) ) );
103 + }
74 104
75 - /**
76 - * This method is responsible for enqueueing scripts in settings panel
77 - *
78 - * @param string $hook
79 - *
80 - * @return void
81 - * @since 2.5.0
82 - */
83 - public function enqueue( $hook ) {
84 - if ( ! betterdocs()->is_betterdocs_screen( $hook ) ) {
85 - return;
86 - }
105 + /**
106 + * This method is responsible for enqueueing scripts in settings panel
107 + *
108 + * @param string $hook
109 + *
110 + * @return void
111 + * @since 2.5.0
112 + */
113 + public function enqueue( $hook ) {
114 + if ( ! betterdocs()->is_betterdocs_screen( $hook ) ) {
115 + return;
116 + }
87 117
88 - wp_enqueue_media();
89 - wp_enqueue_script( 'betterdocs-admin' );
90 -
91 - $settings = GlobalFields::normalize( $this->settings_args() );
118 + wp_enqueue_media();
119 + wp_enqueue_script( 'betterdocs-admin' );
92 120
93 - // Mask sensitive API keys before they reach the browser. Non-admins still get them stripped entirely below.
94 - $sensitive_api_keys = [ 'ai_autowrite_api_key', 'ai_chatbot_api_key' ];
95 - foreach ( $sensitive_api_keys as $api_key_field ) {
96 - if ( ! empty( $settings['values'][ $api_key_field ] ) ) {
97 - $settings['values'][ $api_key_field ] = Helper::mask_api_key( $settings['values'][ $api_key_field ] );
98 - }
99 - }
121 + $settings = GlobalFields::normalize( $this->settings_args() );
100 122
101 - if ( ! current_user_can( 'edit_docs_settings' ) ) {
102 - foreach ( $sensitive_api_keys as $api_key_field ) {
103 - if ( isset( $settings['values'][ $api_key_field ] ) ) {
104 - unset( $settings['values'][ $api_key_field ] );
105 - }
106 - }
107 - }
123 + // Mask sensitive API keys before they reach the browser. Non-admins still get them stripped entirely below.
124 + $sensitive_api_keys = self::sensitive_api_key_fields();
125 + foreach ( $sensitive_api_keys as $api_key_field ) {
126 + if ( ! empty( $settings[ 'values' ][ $api_key_field ] ) ) {
127 + $settings[ 'values' ][ $api_key_field ] = Helper::mask_api_key( $settings[ 'values' ][ $api_key_field ] );
128 + }
129 + }
108 130
109 - // Inject raw git settings to bypass get() fallback (e.g., '' -> 'docs')
110 - if ( isset( $settings['values'] ) ) {
111 - $settings['values']['git_provider'] = $this->get_raw_field( 'git_provider', 'github' );
112 - $settings['values']['git_repository_url'] = $this->get_raw_field( 'git_repository_url', '' );
113 - $settings['values']['git_branch'] = $this->get_raw_field( 'git_branch', '' );
114 - $settings['values']['git_docs_directory'] = $this->get_raw_field( 'git_docs_directory', '' );
115 - }
116 -
117 - betterdocs()->assets->localize( 'betterdocs-admin', 'betterdocsAdminSettings', $settings );
118 - betterdocs()->assets->enqueue( 'betterdocs-icons', 'admin/btd-icon/style.css' );
119 - }
131 + if ( ! current_user_can( 'edit_docs_settings' ) ) {
132 + foreach ( $sensitive_api_keys as $api_key_field ) {
133 + if ( isset( $settings[ 'values' ][ $api_key_field ] ) ) {
134 + unset( $settings[ 'values' ][ $api_key_field ] );
135 + }
136 + }
137 + }
120 138
121 - public function enqueue_old( $hook ) {
122 - // FREE & Pro Version Compatibility Check
123 - if ( ! betterdocs()->is_betterdocs_screen( $hook ) ) {
124 - return;
125 - }
139 + // Inject raw git settings to bypass get() fallback (e.g., '' -> 'docs')
140 + if ( isset( $settings[ 'values' ] ) ) {
141 + $settings[ 'values' ][ 'git_provider' ] = $this->get_raw_field( 'git_provider', 'github' );
142 + $settings[ 'values' ][ 'git_repository_url' ] = $this->get_raw_field( 'git_repository_url', '' );
143 + $settings[ 'values' ][ 'git_branch' ] = $this->get_raw_field( 'git_branch', '' );
144 + $settings[ 'values' ][ 'git_docs_directory' ] = $this->get_raw_field( 'git_docs_directory', '' );
145 + }
126 146
127 - $this->enqueue( 'betterdocs_page_betterdocs-settings' );
128 - }
147 + betterdocs()->assets->localize( 'betterdocs-admin', 'betterdocsAdminSettings', $settings );
148 + betterdocs()->assets->enqueue( 'betterdocs-icons', 'admin/btd-icon/style.css' );
149 + }
129 150
130 - /**
131 - * This method is responsible for printing header in dashboard settings page.
132 - *
133 - * @param string $hook
134 - *
135 - * @return void
136 - * @since 2.5.0
137 - */
138 - public function header( $hook ) {
139 - if ( $hook !== 'settings' ) {
140 - return;
141 - }
151 + public function enqueue_old( $hook ) {
152 + // FREE & Pro Version Compatibility Check
153 + if ( ! betterdocs()->is_betterdocs_screen( $hook ) ) {
154 + return;
155 + }
142 156
143 - betterdocs()->views->get( 'admin/template-parts/settings-header' );
144 - betterdocs()->views->get( 'admin/template-parts/settings-header-2' );
145 - }
157 + $this->enqueue( 'betterdocs_page_betterdocs-settings' );
158 + }
146 159
147 - /**
148 - * A list of deprecated settings keys.
149 - *
150 - * @return array
151 - * @since 2.5.0
152 - */
153 - public function deprecated_settings() {
154 - return [];
155 - }
160 + /**
161 + * This method is responsible for printing header in dashboard settings page.
162 + *
163 + * @param string $hook
164 + *
165 + * @return void
166 + * @since 2.5.0
167 + */
168 + public function header( $hook ) {
169 + if ( 'settings' !== $hook ) {
170 + return;
171 + }
156 172
157 - /**
158 - * Dynamic migration caller.
159 - *
160 - * @return void
161 - * @since 2.5.0
162 - */
163 - public function migration( $version ) {
164 - if ( $version > 250 ) {
165 - for ( $v = 250; $v <= $version; $v ++ ) {
166 - $_func = "v{$v}";
167 - if ( method_exists( $this, $_func ) ) {
168 - call_user_func( [ $this, $_func ] );
169 - }
170 - }
171 - }
172 - }
173 + betterdocs()->views->get( 'admin/template-parts/settings-header' );
174 + betterdocs()->views->get( 'admin/template-parts/settings-header-2' );
175 + }
173 176
174 - /**
175 - * Migration for version 2.5.0
176 - *
177 - * @return void
178 - * @since 2.5.0
179 - */
180 - public function v250() {
181 - if ( $this->get( 'alphabetically_order_term', false ) ) {
182 - $this->save( 'terms_orderby', 'name' );
183 - }
177 + /**
178 + * A list of deprecated settings keys.
179 + *
180 + * @return array
181 + * @since 2.5.0
182 + */
183 + public function deprecated_settings() {
184 + return array();
185 + }
184 186
185 - if ( $orderby = $this->get( 'alphabetically_order_post', false ) ) {
186 - if ( $orderby === '1' ) {
187 - $this->save( 'alphabetically_order_post', 'title' );
188 - }
189 - }
190 - }
187 + /**
188 + * Dynamic migration caller.
189 + *
190 + * @return void
191 + * @since 2.5.0
192 + */
193 + public function migration( $version ) {
194 + if ( $version > 250 ) {
195 + for ( $v = 250; $v <= $version; ++$v ) {
196 + $_func = "v{$v}";
197 + if ( method_exists( $this, $_func ) ) {
198 + call_user_func( array( $this, $_func ) );
199 + }
200 + }
201 + }
202 + }
191 203
192 - /**
193 - * A list of default settings data.
194 - *
195 - * @return array
196 - * @since 1.0.0
197 - *
198 - */
199 - public function get_default() {
200 - $_default = [
201 - 'multiple_kb' => '',
202 - 'enable_export_faq' => true,
203 - 'builtin_doc_page' => true,
204 - 'breadcrumb_doc_title' => __( 'Docs', 'betterdocs' ),
205 - 'enable_category_hierarchy_slugs' => false,
206 - 'docs_slug' => 'docs',
207 - 'docs_page' => 0,
208 - 'category_slug' => 'docs-category',
209 - 'tag_slug' => 'docs-tag',
210 - 'permalink_structure' => 'docs/',
211 - 'enable_faq_schema' => false,
212 - 'live_search' => true,
213 - 'advance_search' => false,
214 - 'popular_keyword_limit' => 5,
215 - 'search_letter_limit' => 3,
216 - 'search_placeholder' => __( 'Search...', 'betterdocs' ),
217 - 'search_not_found_text' => __( 'Sorry, no docs were found.', 'betterdocs' ),
218 - 'search_result_image' => true,
219 - 'search_modal_search_type' => 'all',
220 - 'masonry_layout' => true,
221 - 'docs_list_icon' => [],
222 - 'category_title_link' => false,
223 - 'terms_orderby' => 'betterdocs_order',
224 - 'alphabetically_order_term' => false,
225 - 'terms_order' => 'ASC',
226 - 'alphabetically_order_post' => 'betterdocs_order',
227 - 'docs_order' => 'ASC',
228 - 'nested_subcategory' => false,
229 - 'column_number' => 3,
230 - 'posts_number' => 10,
231 - 'post_count' => true,
232 - 'count_text' => __( 'Docs', 'betterdocs' ),
233 - 'count_text_singular' => __( 'Doc', 'betterdocs' ),
234 - 'exploremore_btn' => true,
235 - 'exploremore_btn_txt' => __( 'Explore More', 'betterdocs' ),
236 - 'doc_single' => 1,
237 - 'enable_toc' => true,
238 - 'toc_title' => __( 'Table of Contents', 'betterdocs' ),
239 - 'toc_hierarchy' => true,
240 - 'toc_list_number' => false,
241 - 'toc_dynamic_title' => false,
242 - 'enable_sticky_toc' => true,
243 - 'sticky_toc_offset' => 100,
244 - 'collapsible_toc_mobile' => false,
245 - 'supported_heading_tag' => [ '1', '2', '3', '4', '5', '6' ],
246 - 'enable_post_title' => true,
247 - 'title_link_ctc' => true,
248 - 'enable_breadcrumb' => true,
249 - 'breadcrumb_home_text' => __( 'Home', 'betterdocs' ),
250 - 'enable_breadcrumb_home_text' => true,
251 - 'breadcrumb_home_url' => get_home_url(),
252 - 'enable_breadcrumb_category' => true,
253 - 'enable_breadcrumb_title' => true,
254 - 'enable_sidebar_cat_list' => true,
255 - 'enable_print_icon' => true,
256 - 'enable_tags' => true,
257 - 'email_feedback' => true,
258 - 'feedback_link_text' => __( 'Still stuck? How can we help?', 'betterdocs' ),
259 - 'reaction_feedback_text' => __( 'Thanks for your feedback', 'betterdocs' ),
260 - 'feedback_url' => '',
261 - 'feedback_form_title' => __( 'How can we help?', 'betterdocs' ),
262 - 'email_address' => get_option( 'admin_email' ),
263 - 'show_last_update_time' => true,
264 - 'enable_navigation' => true,
265 - 'enable_comment' => true,
266 - 'enable_credit' => false,
267 - 'enable_archive_sidebar' => true,
268 - 'archive_nested_subcategory' => true,
269 - 'archive_enable_pagination' => false,
270 - 'enable_content_restriction' => false,
271 - 'enable_reporting' => false,
272 - 'enable_sample_data' => false,
273 - 'reporting_day' => 'monday',
274 - 'reporting_email' => get_option( 'admin_email' ),
275 - 'enable_write_with_ai' => true,
276 - 'enable_faq_write_with_ai' => true,
277 - 'enable_glossaries_write_with_ai' => true,
278 - 'write_with_ai_model' => 'gpt-4o-mini',
279 - 'ai_autowrite_api_key' => '',
280 - 'ai_autowrite_max_token' => 1500,
281 - 'enable_article_summary' => false,
282 - 'article_summary_model' => 'gpt-4o-mini',
283 - 'article_summary_max_token' => 1500,
284 - 'enable_estimated_reading_time' => true,
285 - 'enable_encyclopedia' => false,
286 - 'enable_glossaries' => false,
287 - 'show_glossary_suggestions' => true,
288 - 'enable_ai_chatbot' => false,
289 - 'estimated_reading_time_title' => '',
290 - 'estimated_reading_time_text' => __( 'min read', 'betterdocs' ),
291 - 'singular_estimated_reading_time_text' => __( 'min read', 'betterdocs' ),
292 - 'betterdocs_access_control_repeater' => [],
293 - 'internal_knowledge_base_type' => 'basic',
294 - 'betterdocs_access_control_repeater_kb' => [],
295 - 'enable_git_integration' => false,
296 - ];
204 + /**
205 + * Migration for version 2.5.0
206 + *
207 + * @return void
208 + * @since 2.5.0
209 + */
210 + public function v250() {
211 + if ( $this->get( 'alphabetically_order_term', false ) ) {
212 + $this->save( 'terms_orderby', 'name' );
213 + }
297 214
298 - $_default = apply_filters( 'betterdocs_default_settings', $_default );
299 - // $_default = apply_filters_deprecated(
300 - // 'betterdocs_option_default_settings', [$_default], '2.5.0',
301 - // 'betterdocs_default_settings', 'betterdocs_option_default_settings will be removed from v3.5.0.'
302 - // );
215 + if ( $orderby = $this->get( 'alphabetically_order_post', false ) ) {
216 + if ( '1' === $orderby ) {
217 + $this->save( 'alphabetically_order_post', 'title' );
218 + }
219 + }
220 + }
303 221
304 - return $_default;
305 - }
222 + /**
223 + * A list of default settings data.
224 + *
225 + * @return array
226 + * @since 1.0.0
227 + *
228 + */
229 + public function get_default() {
230 + $_default = array(
231 + 'multiple_kb' => '',
232 + 'enable_ai_sample_docs' => true,
233 + 'enable_export_faq' => true,
234 + 'builtin_doc_page' => true,
235 + 'breadcrumb_doc_title' => __( 'Docs', 'betterdocs' ),
236 + 'enable_category_hierarchy_slugs' => false,
237 + 'docs_slug' => 'docs',
238 + 'docs_page' => 0,
239 + 'category_slug' => 'docs-category',
240 + 'tag_slug' => 'docs-tag',
241 + 'permalink_structure' => 'docs/',
242 + 'enable_faq_schema' => false,
243 + 'live_search' => true,
244 + 'advance_search' => false,
245 + 'popular_keyword_limit' => 5,
246 + 'search_letter_limit' => 3,
247 + 'search_placeholder' => __( 'Search...', 'betterdocs' ),
248 + 'search_not_found_text' => __( 'Sorry, no docs were found.', 'betterdocs' ),
249 + 'search_result_image' => true,
250 + 'search_modal_search_type' => 'all',
251 + 'masonry_layout' => true,
252 + 'docs_list_icon' => array(),
253 + 'category_title_link' => false,
254 + 'terms_orderby' => 'betterdocs_order',
255 + 'alphabetically_order_term' => false,
256 + 'terms_order' => 'ASC',
257 + 'alphabetically_order_post' => 'betterdocs_order',
258 + 'docs_order' => 'ASC',
259 + 'nested_subcategory' => false,
260 + 'column_number' => 3,
261 + 'posts_number' => 10,
262 + 'post_count' => true,
263 + 'count_text' => __( 'Docs', 'betterdocs' ),
264 + 'count_text_singular' => __( 'Doc', 'betterdocs' ),
265 + 'exploremore_btn' => true,
266 + 'exploremore_btn_txt' => __( 'Explore More', 'betterdocs' ),
267 + 'doc_single' => 1,
268 + 'enable_toc' => true,
269 + 'toc_title' => __( 'Table of Contents', 'betterdocs' ),
270 + 'toc_hierarchy' => true,
271 + 'toc_list_number' => false,
272 + 'toc_dynamic_title' => false,
273 + 'enable_sticky_toc' => true,
274 + 'sticky_toc_offset' => 100,
275 + 'collapsible_toc_mobile' => false,
276 + 'supported_heading_tag' => array( '1', '2', '3', '4', '5', '6' ),
277 + 'enable_post_title' => true,
278 + 'title_link_ctc' => true,
279 + 'enable_breadcrumb' => true,
280 + 'breadcrumb_home_text' => __( 'Home', 'betterdocs' ),
281 + 'enable_breadcrumb_home_text' => true,
282 + 'breadcrumb_home_url' => get_home_url(),
283 + 'enable_breadcrumb_category' => true,
284 + 'enable_breadcrumb_title' => true,
285 + 'enable_sidebar_cat_list' => true,
286 + 'enable_print_icon' => true,
287 + 'print_enable_logo' => false,
288 + 'print_logo' => array(),
289 + 'print_enable_footer' => false,
290 + 'print_footer_text' => '',
291 + 'enable_tags' => true,
292 + 'email_feedback' => true,
293 + 'feedback_link_text' => __( 'Still stuck? How can we help?', 'betterdocs' ),
294 + 'reaction_feedback_text' => __( 'Thanks for your feedback', 'betterdocs' ),
295 + 'feedback_url' => '',
296 + 'feedback_form_title' => __( 'How can we help?', 'betterdocs' ),
297 + 'email_address' => get_option( 'admin_email' ),
298 + 'show_last_update_time' => true,
299 + 'enable_navigation' => true,
300 + 'enable_comment' => true,
301 + 'enable_credit' => false,
302 + 'enable_archive_sidebar' => true,
303 + 'archive_nested_subcategory' => true,
304 + 'archive_enable_pagination' => false,
305 + 'archive_lazy_load_descendants' => false,
306 + 'enable_content_restriction' => false,
307 + 'enable_reporting' => false,
308 + 'enable_sample_data' => false,
309 + 'reporting_day' => 'monday',
310 + 'reporting_email' => get_option( 'admin_email' ),
311 + 'enable_write_with_ai' => true,
312 + 'enable_faq_write_with_ai' => true,
313 + 'enable_glossaries_write_with_ai' => true,
314 + 'enable_docs_ai_suite' => true,
315 + 'write_with_ai_model' => 'gpt-4o-mini',
316 + 'ai_autowrite_api_key' => '',
317 + 'ai_autowrite_max_token' => 2500,
318 + 'write_with_ai_instructions' => array(
319 + array(
320 + 'id' => 'default',
321 + 'title' => __( 'Default/Core', 'betterdocs' ),
322 + 'content' => WriteWithAI::default_instruction_content()
323 + )
324 + ),
325 + 'ai_edit_actions' => AIEdit::default_actions(),
326 + 'enable_article_summary' => false,
327 + 'article_summary_model' => 'gpt-4o-mini',
328 + 'article_summary_max_token' => 1500,
329 + // Multi-platform AI (content suite). `ai_platform` selects the active
330 + // provider; `ai_model` is the single global model; keys are stored
331 + // per platform so switching never loses a saved key. OpenAI reuses
332 + // `ai_autowrite_api_key` above — it has always held an OpenAI key,
333 + // so nothing needs migrating.
334 + 'ai_platform' => 'openai',
335 + 'ai_model' => 'gpt-4o-mini',
336 + 'ai_api_key_gemini' => '',
337 + 'ai_api_key_claude' => '',
338 + 'ai_api_key_deepseek' => '',
339 + 'ai_api_key_openrouter' => '',
340 + 'enable_estimated_reading_time' => true,
341 + 'enable_encyclopedia' => false,
342 + 'enable_glossaries' => false,
343 + 'show_glossary_suggestions' => true,
344 + 'enable_ai_chatbot' => false,
345 + 'estimated_reading_time_title' => '',
346 + 'estimated_reading_time_text' => __( 'min read', 'betterdocs' ),
347 + 'singular_estimated_reading_time_text' => __( 'min read', 'betterdocs' ),
348 + 'betterdocs_access_control_repeater' => array(),
349 + 'internal_knowledge_base_type' => 'basic',
350 + 'betterdocs_access_control_repeater_kb' => array(),
351 + 'enable_git_integration' => false,
352 + /**
353 + * MCP master switch. Off by default; the toggle lives on the
354 + * BetterDocs → MCP page, not in the settings tree, and writes
355 + * through POST betterdocs/v1/settings.
356 + *
357 + * The key has to be listed here or `get()` cannot see it at all:
358 + * it answers `$default` for anything absent from the defaults
359 + * array, whatever the stored option holds.
360 + *
361 + * @since 4.9.0
362 + */
363 + 'enable_mcp' => ''
364 + );
306 365
307 - /**
308 - * A list of default settings for pro plugins.
309 - *
310 - * @return array
311 - * @since 2.5.0
312 - */
313 - public function get_pro_defaults() {
314 - return [];
315 - }
366 + $_default = apply_filters( 'betterdocs_default_settings', $_default );
367 + // $_default = apply_filters_deprecated(
368 + // 'betterdocs_option_default_settings', [$_default], '2.5.0',
369 + // 'betterdocs_default_settings', 'betterdocs_option_default_settings will be removed from v3.5.0.'
370 + // );
316 371
317 - public function is_elementor_pro() {
318 - return is_plugin_active( 'elementor-pro/elementor-pro.php' );
319 - }
372 + return $_default;
373 + }
320 374
321 - /**
322 - * Get full site editor links for docs page.
323 - *
324 - * @return string
325 - * @since 3.5.8
326 - */
327 - public function gutenberg_link() {
328 - if ( betterdocs()->helper->current_theme_is_fse_theme() ) {
329 - return admin_url( 'site-editor.php?postType=wp_template&postId=betterdocs/betterdocs//archive-docs' );
330 - } else {
331 - return 'https://betterdocs.co/docs/betterdocs-provides-full-site-editor-support/';
332 - }
333 - }
375 + /**
376 + * A list of default settings for pro plugins.
377 + *
378 + * @return array
379 + * @since 2.5.0
380 + */
381 + public function get_pro_defaults() {
382 + return array();
383 + }
334 384
335 - /**
336 - * Get elementor theme builder link for docs page.
337 - *
338 - * @return string
339 - * @since 3.5.8
340 - */
341 - public function elementor_link() {
342 - if ( $this->is_elementor_pro() ) {
343 - return admin_url( 'admin.php?page=elementor-app#/site-editor/templates/doc-archive' );
344 - } else {
345 - return 'https://betterdocs.co/docs/docs-page-with-elementor/';
346 - }
347 - }
385 + public function is_elementor_pro() {
386 + return is_plugin_active( 'elementor-pro/elementor-pro.php' );
387 + }
348 388
349 - public function customizer_link() {
350 - $query['autofocus[panel]'] = 'betterdocs_customize_options';
351 - $query['return'] = admin_url( 'edit.php?post_type=docs' );
352 - $builtin_doc_page = betterdocs()->settings->get( 'builtin_doc_page' );
353 - $docs_slug = betterdocs()->settings->get( 'docs_slug' );
354 - $docs_page = betterdocs()->settings->get( 'builtin_doc_page' );
389 + /**
390 + * Get full site editor links for docs page.
391 + *
392 + * @return string
393 + * @since 3.5.8
394 + */
395 + public function gutenberg_link() {
396 + if ( betterdocs()->helper->current_theme_is_fse_theme() ) {
397 + return admin_url( 'site-editor.php?postType=wp_template&postId=betterdocs/betterdocs//archive-docs' );
398 + } else {
399 + return 'https://betterdocs.co/docs/betterdocs-provides-full-site-editor-support/';
400 + }
401 + }
355 402
356 - if ( $builtin_doc_page == 1 && $docs_slug ) {
357 - $query['url'] = site_url( '/' . $docs_slug );
358 - } elseif ( $builtin_doc_page != 1 && $docs_page ) {
359 - $post_info = get_post( $docs_page );
360 - $query['url'] = site_url( '/' . $post_info->post_name );
361 - }
403 + /**
404 + * Get elementor theme builder link for docs page.
405 + *
406 + * @return string
407 + * @since 3.5.8
408 + */
409 + public function elementor_link() {
410 + if ( $this->is_elementor_pro() ) {
411 + return admin_url( 'admin.php?page=elementor-app#/site-editor/templates/doc-archive' );
412 + } else {
413 + return 'https://betterdocs.co/docs/docs-page-with-elementor/';
414 + }
415 + }
362 416
363 - return add_query_arg( $query, admin_url( 'customize.php' ) );
364 - }
417 + public function customizer_link() {
418 + $query[ 'autofocus[panel]' ] = 'betterdocs_customize_options';
419 + $query[ 'return' ] = admin_url( 'edit.php?post_type=docs' );
420 + $builtin_doc_page = betterdocs()->settings->get( 'builtin_doc_page' );
421 + $docs_slug = betterdocs()->settings->get( 'docs_slug' );
422 + $docs_page = betterdocs()->settings->get( 'builtin_doc_page' );
365 423
366 - public function design_tab() {
367 - $settings = [];
424 + if ( 1 == $builtin_doc_page && $docs_slug ) {
425 + $query[ 'url' ] = site_url( '/' . $docs_slug );
426 + } elseif ( 1 != $builtin_doc_page && $docs_page ) {
427 + $post_info = get_post( $docs_page );
428 + $query[ 'url' ] = site_url( '/' . $post_info->post_name );
429 + }
368 430
369 - $settings['gutenberg_link'] = [
370 - 'name' => 'gutenberg_link',
371 - 'type' => 'action',
372 - 'action' => 'betterdocs_settings_gutenberg_link',
373 - 'button' => betterdocs()->helper->current_theme_is_fse_theme() ? __( 'Design with Gutenberg', 'betterdocs' ) : __( 'Learn More', 'betterdocs' ),
374 - 'url' => $this->gutenberg_link(),
375 - 'customizer_img' => betterdocs()->assets->icon( 'customizer/gutenberg-preview.png', true ),
376 - 'priority' => 1
377 - ];
431 + return add_query_arg( $query, admin_url( 'customize.php' ) );
432 + }
378 433
379 - $settings['elementor_link'] = [
380 - 'name' => 'elementor_link',
381 - 'type' => 'action',
382 - 'action' => 'betterdocs_settings_elementor_link',
383 - 'button' => $this->is_elementor_pro() ? __( 'Design with Elementor', 'betterdocs' ) : __( 'Learn More', 'betterdocs' ),
384 - 'url' => $this->elementor_link(),
385 - 'customizer_img' => betterdocs()->assets->icon( 'customizer/elementor-preview.png', true ),
386 - 'priority' => 2
387 - ];
434 + public function design_tab() {
435 + $settings = array();
388 436
389 - if ( ! betterdocs()->helper->current_theme_is_fse_theme() ) {
390 - $settings['customizer_link'] = [
391 - 'name' => 'customizer_link',
392 - 'type' => 'action',
393 - 'action' => 'betterdocs_settings_customizer_link',
394 - 'button' => __( 'Customize in BetterDocs', 'betterdocs' ),
395 - 'url' => $this->customizer_link(),
396 - 'customizer_img' => betterdocs()->assets->icon( 'customizer/customizer-preview.png', true ),
397 - 'priority' => 3
398 - ];
399 - }
437 + $settings[ 'gutenberg_link' ] = array(
438 + 'name' => 'gutenberg_link',
439 + 'type' => 'action',
440 + 'action' => 'betterdocs_settings_gutenberg_link',
441 + 'button' => betterdocs()->helper->current_theme_is_fse_theme() ? __( 'Design with Gutenberg', 'betterdocs' ) : __( 'Learn More', 'betterdocs' ),
442 + 'url' => $this->gutenberg_link(),
443 + 'customizer_img' => betterdocs()->assets->icon( 'customizer/gutenberg-preview.png', true ),
444 + 'priority' => 1
445 + );
400 446
401 - return $settings;
402 - }
447 + $settings[ 'elementor_link' ] = array(
448 + 'name' => 'elementor_link',
449 + 'type' => 'action',
450 + 'action' => 'betterdocs_settings_elementor_link',
451 + 'button' => $this->is_elementor_pro() ? __( 'Design with Elementor', 'betterdocs' ) : __( 'Learn More', 'betterdocs' ),
452 + 'url' => $this->elementor_link(),
453 + 'customizer_img' => betterdocs()->assets->icon( 'customizer/elementor-preview.png', true ),
454 + 'priority' => 2
455 + );
403 456
404 - /**
405 - * Get All Roles
406 - * dynamically
407 - *
408 - * @return array
409 - */
410 - public function get_roles() {
411 - $roles = wp_roles()->role_names;
412 - unset( $roles['subscriber'] );
457 + if ( ! betterdocs()->helper->current_theme_is_fse_theme() ) {
458 + $settings[ 'customizer_link' ] = array(
459 + 'name' => 'customizer_link',
460 + 'type' => 'action',
461 + 'action' => 'betterdocs_settings_customizer_link',
462 + 'button' => __( 'Customize in BetterDocs', 'betterdocs' ),
463 + 'url' => $this->customizer_link(),
464 + 'customizer_img' => betterdocs()->assets->icon( 'customizer/customizer-preview.png', true ),
465 + 'priority' => 3
466 + );
467 + }
413 468
414 - return $roles;
415 - }
469 + return $settings;
470 + }
416 471
417 - /**
418 - * Set dark mode
419 - *
420 - * @return void
421 - * @since 1.0.0
422 - */
423 - public function dark_mode() {
424 - if ( ! check_ajax_referer( 'doc_cat_order_nonce', 'nonce', false ) ) {
425 - wp_send_json_error();
426 - }
472 + /**
473 + * Get All Roles
474 + * dynamically
475 + *
476 + * @return array
477 + */
478 + public function get_roles() {
479 + $roles = wp_roles()->role_names;
480 + unset( $roles[ 'subscriber' ] );
427 481
428 - if ( isset( $_POST['mode'] ) ) {
429 - if ( $this->save( 'dark_mode', rest_sanitize_boolean( $_POST['mode'] ) ) ) { // phpcs:ignore
430 - wp_send_json_success();
431 - }
432 - }
482 + return $roles;
483 + }
433 484
434 - wp_send_json_error();
435 - }
485 + /**
486 + * Set dark mode
487 + *
488 + * @return void
489 + * @since 1.0.0
490 + */
491 + public function dark_mode() {
492 + if ( ! check_ajax_referer( 'doc_cat_order_nonce', 'nonce', false ) ) {
493 + wp_send_json_error();
494 + }
436 495
437 - public function get_normalized_value( $key, $value, $default = null ) {
438 - $_origin_value = $_value = $value;
496 + if ( isset( $_POST[ 'mode' ] ) ) {
497 + $mode = sanitize_text_field( wp_unslash( $_POST[ 'mode' ] ) );
498 + if ( $this->save( 'dark_mode', rest_sanitize_boolean( $mode ) ) ) {
499 + wp_send_json_success();
500 + }
501 + }
439 502
440 - if ( in_array( $_value, [ 'on', 'off', '1', 'false', 'true' ], true ) ) {
441 - switch ( $_value ) {
442 - case 'on':
443 - case 'ON':
444 - case '1':
445 - case 'true':
446 - $_value = true;
447 - break;
448 - case 'off':
449 - case 'OFF':
450 - case '':
451 - case 'false':
452 - $_value = false;
453 - break;
454 - }
455 - }
503 + wp_send_json_error();
504 + }
456 505
457 - $this->type_validation( $_value, $default );
506 + public function get_normalized_value( $key, $value, $default = null ) {
507 + $_origin_value = $_value = $value;
458 508
459 - return $_value;
460 - }
509 + if ( in_array( $_value, array( 'on', 'off', '1', 'false', 'true' ), true ) ) {
510 + switch ( $_value ) {
511 + case 'on':
512 + case 'ON':
513 + case '1':
514 + case 'true':
515 + $_value = true;
516 + break;
517 + case 'off':
518 + case 'OFF':
519 + case '':
520 + case 'false':
521 + $_value = false;
522 + break;
523 + }
524 + }
461 525
462 - public function get_normalized_values( $values, $default_values = [] ) {
463 - if ( empty( $values ) ) {
464 - return [];
465 - }
526 + $this->type_validation( $_value, $default );
466 527
467 - $_settings = [];
468 - foreach ( $values as $key => $value ) {
469 - $_default_value = isset( $default_values[ $key ] ) ? $default_values[ $key ] : null;
470 - $_settings[ $key ] = $this->get_normalized_value( $key, $value, $_default_value );
471 - }
528 + return $_value;
529 + }
472 530
473 - return $_settings;
474 - }
531 + public function get_normalized_values( $values, $default_values = array() ) {
532 + if ( empty( $values ) ) {
533 + return array();
534 + }
475 535
476 - public function get_all( $raw = false ) {
477 - $_default_settings = $raw ? [] : array_merge( $this->get_default(), $this->get_pro_defaults() );
478 - $_settings = $this->database->get( $this->base_key, $_default_settings );
536 + $_settings = array();
537 + foreach ( $values as $key => $value ) {
538 + $_default_value = isset( $default_values[ $key ] ) ? $default_values[ $key ] : null;
539 + $_settings[ $key ] = $this->get_normalized_value( $key, $value, $_default_value );
540 + }
479 541
480 - return $this->get_normalized_values( $_settings, $_default_settings );
481 - }
542 + return $_settings;
543 + }
482 544
483 - public function type_validation( &$value, $defaultValue = null ) {
484 - if ( $defaultValue !== null ) {
485 - /**
486 - * Check if value is not in same type
487 - */
488 - $_default_type = gettype( $defaultValue );
545 + public function get_all( $raw = false ) {
546 + $_default_settings = $raw ? array() : array_merge( $this->get_default(), $this->get_pro_defaults() );
547 + $_settings = $this->database->get( $this->base_key, $_default_settings );
489 548
490 - if ( ! ( is_scalar( $defaultValue ) && is_scalar( $value ) ) && empty( $value ) ) {
491 - $value = $defaultValue;
492 - }
549 + return $this->get_normalized_values( $_settings, $_default_settings );
550 + }
493 551
494 - settype( $value, $_default_type );
495 - }
496 - }
552 + public function type_validation( &$value, $defaultValue = null ) {
553 + if ( null !== $defaultValue ) {
554 + /**
555 + * Check if value is not in same type
556 + */
557 + $_default_type = gettype( $defaultValue );
497 558
498 - /**
499 - * Get settings value by key
500 - *
501 - * @param string $key
502 - * @param mixed $default
503 - * @param bool $get_all
504 - *
505 - * @return mixed
506 - * @since 2.5.0
507 - *
508 - */
509 - public function get( $key, $default = null ) {
510 - $_default_settings = array_merge( $this->get_default(), $this->get_pro_defaults() );
511 - $_settings = $this->database->get( $this->base_key, $_default_settings );
559 + if ( ! ( is_scalar( $defaultValue ) && is_scalar( $value ) ) && empty( $value ) ) {
560 + $value = $defaultValue;
561 + }
512 562
513 - $_value = $default;
514 - switch ( true ) {
515 - // Check if it's a PRO Option
516 - case ! isset( $_default_settings[ $key ] ):
517 - $_value = $default;
518 - break;
519 - // Check if it's a FREE Option and not in DB.
520 - case ! isset( $_settings[ $key ] ) && isset( $_default_settings[ $key ] ):
521 - $_value = $default !== null ? $default : $_default_settings[ $key ];
522 - break;
523 - // Check if it's a FREE Option
524 - case isset( $_settings[ $key ] ) && isset( $_default_settings[ $key ] ):
525 - $_value = $_settings[ $key ];
526 - break;
527 - }
563 + settype( $value, $_default_type );
564 + }
565 + }
528 566
529 - $_value = $this->get_normalized_value( $key, $_value, isset( $_default_settings[ $key ] ) ? $_default_settings[ $key ] : null );
567 + /**
568 + * Get settings value by key
569 + *
570 + * @param string $key
571 + * @param mixed $default
572 + * @param bool $get_all
573 + *
574 + * @return mixed
575 + * @since 2.5.0
576 + *
577 + */
578 + public function get( $key, $default = null ) {
579 + $_default_settings = array_merge( $this->get_default(), $this->get_pro_defaults() );
580 + $_settings = $this->database->get( $this->base_key, $_default_settings );
530 581
531 - if ( gettype( $_value ) === 'string' ) {
532 - if ( empty( $_value ) && $default != null ) {
533 - $_value = $default;
534 - } elseif ( empty( $_value ) && $default === null && isset( $_default_settings[ $key ] ) ) {
535 - $_value = $_default_settings[ $key ];
536 - }
537 - }
582 + $_value = $default;
583 + switch ( true ) {
584 + // Check if it's a PRO Option
585 + case ! isset( $_default_settings[ $key ] ):
586 + $_value = $default;
587 + break;
588 + // Check if it's a FREE Option and not in DB.
589 + case ! isset( $_settings[ $key ] ) && isset( $_default_settings[ $key ] ):
590 + $_value = null !== $default ? $default : $_default_settings[ $key ];
591 + break;
592 + // Check if it's a FREE Option
593 + case isset( $_settings[ $key ] ) && isset( $_default_settings[ $key ] ):
594 + $_value = $_settings[ $key ];
595 + break;
596 + }
538 597
539 - return $_value;
540 - }
598 + $_value = $this->get_normalized_value( $key, $_value, isset( $_default_settings[ $key ] ) ? $_default_settings[ $key ] : null );
541 599
542 - public function get_raw_field( $key, $default = null ) {
543 - $_settings = $this->database->get( $this->base_key, [] );
600 + if ( gettype( $_value ) === 'string' ) {
601 + if ( empty( $_value ) && null != $default ) {
602 + $_value = $default;
603 + } elseif ( empty( $_value ) && null === $default && isset( $_default_settings[ $key ] ) ) {
604 + $_value = $_default_settings[ $key ];
605 + }
606 + }
544 607
545 - if ( isset( $_settings[ $key ] ) ) {
546 - return $this->get_normalized_value( $key, $_settings[ $key ], $default );
547 - }
608 + return $_value;
609 + }
548 610
549 - return $default;
550 - }
611 + public function get_raw_field( $key, $default = null ) {
612 + $_settings = $this->database->get( $this->base_key, array() );
551 613
552 - public function save( $key, $value ) {
553 - $_settings = $this->database->get( $this->base_key, [] );
554 - $_settings[ $key ] = $value;
614 + if ( isset( $_settings[ $key ] ) ) {
615 + return $this->get_normalized_value( $key, $_settings[ $key ], $default );
616 + }
555 617
556 - return $this->database->save( $this->base_key, $_settings );
557 - }
618 + return $default;
619 + }
558 620
559 - public function save_settings( $settings ) {
560 - $existing_plugins = betterdocs()->kbmigration->knowledge_base_plugins();
561 - if ( ! current_user_can( 'edit_docs_settings' ) ) {
562 - return new WP_Error( 'unauthorized_action', __( 'You don\'t have any rights for saving settings.', 'betterdocs' ) );
563 - }
621 + public function save( $key, $value ) {
622 + $_settings = $this->database->get( $this->base_key, array() );
623 + $_settings[ $key ] = $value;
564 624
565 - // Quickbuilder sends back the full UI-loaded payload. To avoid overwriting values that we
566 - // asynchronously updated in the DB via AJAX (like Git integration fields), we strictly remove them
567 - // from the incoming save payload so that the freshly loaded `$_old_settings` values persist.
568 - $exclude_ajax_keys = [ 'git_provider', 'git_repository_url', 'git_branch', 'git_docs_directory' ];
569 - foreach ( $exclude_ajax_keys as $key ) {
570 - if ( array_key_exists( $key, $settings ) ) {
571 - unset( $settings[ $key ] );
572 - }
573 - if ( isset( $settings['values'] ) && is_array( $settings['values'] ) && array_key_exists( $key, $settings['values'] ) ) {
574 - unset( $settings['values'][ $key ] );
575 - }
576 - }
625 + return $this->database->save( $this->base_key, $_settings );
626 + }
577 627
578 - $_old_settings = $this->database->get( $this->base_key, $this->get_default() );
628 + public function save_settings( $settings ) {
629 + $existing_plugins = betterdocs()->kbmigration->knowledge_base_plugins();
630 + if ( ! current_user_can( 'edit_docs_settings' ) ) {
631 + return new WP_Error( 'unauthorized_action', __( 'You don\'t have any rights for saving settings.', 'betterdocs' ) );
632 + }
579 633
580 - // The frontend only ever sees masked API keys. If a submitted value matches the mask of
581 - // the stored value, the user did not change it — restore the original so the mask string
582 - // is never persisted.
583 - $sensitive_api_keys = [ 'ai_autowrite_api_key', 'ai_chatbot_api_key' ];
584 - foreach ( $sensitive_api_keys as $api_key_field ) {
585 - if ( ! isset( $settings[ $api_key_field ] ) ) {
586 - continue;
587 - }
588 - $stored = isset( $_old_settings[ $api_key_field ] ) ? $_old_settings[ $api_key_field ] : '';
589 - if ( $stored !== '' && trim( (string) $settings[ $api_key_field ] ) === Helper::mask_api_key( $stored ) ) {
590 - $settings[ $api_key_field ] = $stored;
591 - }
592 - }
634 + // The frontend sends the currently-active settings tab as a transport-only hint so
635 + // tab-scoped validation (the AI min-token floor below) only runs when that tab is being
636 + // saved. It must never be persisted into the settings option.
637 + $active_tab = '';
638 + if ( array_key_exists( '_active_tab', $settings ) ) {
639 + $active_tab = (string) $settings[ '_active_tab' ];
640 + unset( $settings[ '_active_tab' ] );
641 + }
593 642
594 - // @todo: sanitize the data before inject in DB.
595 - $_normalized_settings = $this->get_normalized_values( $settings );
596 - if ( $existing_plugins && isset( $_normalized_settings['migration_step'] ) && $_normalized_settings['migration_step'] == true ) {
597 - betterdocs()->kbmigration->migrate();
598 - }
599 - $_settings = wp_parse_args( $_normalized_settings, $_old_settings );
643 + // Quickbuilder sends back the full UI-loaded payload. To avoid overwriting values that we
644 + // asynchronously updated in the DB via AJAX (like Git integration fields), we strictly remove them
645 + // from the incoming save payload so that the freshly loaded `$_old_settings` values persist.
646 + $exclude_ajax_keys = array( 'git_provider', 'git_repository_url', 'git_branch', 'git_docs_directory' );
647 + foreach ( $exclude_ajax_keys as $key ) {
648 + if ( array_key_exists( $key, $settings ) ) {
649 + unset( $settings[ $key ] );
650 + }
651 + if ( isset( $settings[ 'values' ] ) && is_array( $settings[ 'values' ] ) && array_key_exists( $key, $settings[ 'values' ] ) ) {
652 + unset( $settings[ 'values' ][ $key ] );
653 + }
654 + }
600 655
601 - // Check if there are actual changes before saving.
602 - // update_option returns false when values serialize identically, which can happen
603 - // due to object caching or type normalization even when user made changes.
604 - $_has_changes = $_settings != $_old_settings;
656 + $_old_settings = $this->database->get( $this->base_key, $this->get_default() );
605 657
606 - $_saved = $this->database->save( $this->base_key, $_settings );
658 + // The frontend only ever sees masked API keys. A submitted value that still looks like a
659 + // mask (contains a run of asterisks — no real key does) means "unchanged": restore the
660 + // stored original so a mask string is never persisted. Guarding on the mask SHAPE rather
661 + // than strict equality with mask(stored) closes the corruption loop QA hit: once a mask
662 + // slips into storage, mask(mask) === mask, so an equality-only guard would faithfully
663 + // preserve the corrupted value forever (round-2 follow-up #1). When the stored value is
664 + // itself mask-shaped it is unrecoverable — clear it so the UI and the GeoIP/GA4 status
665 + // surfaces honestly report a missing key instead of failing downstream with 401s.
666 + $sensitive_api_keys = self::sensitive_api_key_fields();
667 + foreach ( $sensitive_api_keys as $api_key_field ) {
668 + if ( ! isset( $settings[ $api_key_field ] ) ) {
669 + continue;
670 + }
671 + $incoming = trim( (string) $settings[ $api_key_field ] );
672 + $stored = isset( $_old_settings[ $api_key_field ] ) ? (string) $_old_settings[ $api_key_field ] : '';
673 + $stored_is_mask = '' !== $stored && preg_match( '/\*{4,}/', $stored );
607 674
608 - do_action_ref_array( 'betterdocs::settings::saved', [ $_saved, $_settings, $_old_settings, &$this ] );
675 + if ( '' !== $incoming && preg_match( '/\*{4,}/', $incoming ) ) {
676 + $settings[ $api_key_field ] = $stored_is_mask ? '' : $stored;
677 + }
678 + }
609 679
610 - // Return true if save succeeded OR if there were changes to attempt saving.
611 - // This handles cases where update_option returns false due to identical serialization
612 - // (e.g., object caching, type coercion during serialization).
613 - return $_saved || $_has_changes;
614 - }
680 + // Minimum-token policy: reject saves where a feature's max_token field is below the
681 + // per-model floor defined by AIHelper::get_min_tokens(). The model may be unchanged in
682 + // this submission, so fall back to the stored value when it isn't part of the payload.
683 + // Both token fields live under the AI Content Suite tab, so enforce the floor only when
684 + // that tab is the one being saved — saving any other settings page never trips it (e.g.
685 + // old users whose stored value predates the floor). When the active-tab hint is absent
686 + // (stale cached JS, the quick-setup wizard, or any programmatic caller) the loop is
687 + // skipped and the save is allowed through.
688 + $token_pairs = array(
689 + array(
690 + 'tab' => 'tab-betterdocs-ai',
691 + 'context' => 'write_with_ai',
692 + 'token_key' => 'ai_autowrite_max_token',
693 + 'model_key' => 'ai_model',
694 + 'label' => __( 'Write with AI', 'betterdocs' )
695 + ),
696 + array(
697 + 'tab' => 'tab-betterdocs-ai',
698 + 'context' => 'article_summary',
699 + 'token_key' => 'article_summary_max_token',
700 + 'model_key' => 'ai_model',
701 + 'label' => __( 'AI Doc Summarizer', 'betterdocs' )
702 + )
703 + );
704 + foreach ( $token_pairs as $pair ) {
705 + if ( $active_tab !== $pair[ 'tab' ] ) {
706 + continue;
707 + }
708 + if ( ! array_key_exists( $pair[ 'token_key' ], $settings ) ) {
709 + continue;
710 + }
711 + $incoming_tokens = (int) $settings[ $pair[ 'token_key' ] ];
712 + $incoming_model = isset( $settings[ $pair[ 'model_key' ] ] )
713 + ? $settings[ $pair[ 'model_key' ] ]
714 + : ( isset( $_old_settings[ $pair[ 'model_key' ] ] ) ? $_old_settings[ $pair[ 'model_key' ] ] : '' );
715 + $min = AIHelper::get_min_tokens( $pair[ 'context' ], $incoming_model );
716 + if ( $min > 0 && $incoming_tokens < $min ) {
717 + return new WP_Error(
718 + 'min_tokens_below_threshold',
719 + sprintf(
720 + /* translators: 1: feature label, 2: minimum tokens, 3: model id */
721 + __( '%1$s max tokens must be at least %2$d for %3$s.', 'betterdocs' ),
722 + $pair[ 'label' ],
723 + $min,
724 + $incoming_model
725 + )
726 + );
727 + }
728 + }
615 729
616 - public function views( $hook ) {
617 - return betterdocs()->views->get( 'admin/settings' );
618 - }
730 + // @todo: sanitize the data before inject in DB.
731 + $_normalized_settings = $this->get_normalized_values( $settings );
732 + if ( $existing_plugins && isset( $_normalized_settings[ 'migration_step' ] ) && true == $_normalized_settings[ 'migration_step' ] ) {
733 + betterdocs()->kbmigration->migrate();
734 + }
735 + $_settings = wp_parse_args( $_normalized_settings, $_old_settings );
619 736
620 - public function save_default_settings() {
621 - $_settings = $this->get_all();
737 + // Check if there are actual changes before saving.
738 + // update_option returns false when values serialize identically, which can happen
739 + // due to object caching or type normalization even when user made changes.
740 + $_has_changes = $_settings != $_old_settings;
622 741
623 - return $this->database->save( $this->base_key, $_settings );
624 - }
742 + $_saved = $this->database->save( $this->base_key, $_settings );
625 743
626 - public function get_pages() {
627 - $_pages = betterdocs()->query->get_posts( [
628 - 'post_type' => 'page',
629 - 'numberposts' => - 1,
630 - 'post_status' => 'publish',
631 - 'posts_per_page' => - 1
632 - ] );
744 + do_action_ref_array( 'betterdocs::settings::saved', array( $_saved, $_settings, $_old_settings, &$this ) );
633 745
634 - $__pages = [];
746 + // Return true if save succeeded OR if there were changes to attempt saving.
747 + // This handles cases where update_option returns false due to identical serialization
748 + // (e.g., object caching, type coercion during serialization).
749 + return $_saved || $_has_changes;
750 + }
635 751
636 - if ( ! empty( $_pages ) ) {
637 - $__pages[0] = __( 'Select a Page', 'betterdocs' );
638 - foreach ( $_pages->posts as $page ) {
639 - $__pages[ $page->ID ] = esc_html( $page->post_title );
640 - }
641 - }
752 + public function views( $hook ) {
753 + return betterdocs()->views->get( 'admin/settings' );
754 + }
642 755
643 - return $__pages;
644 - }
756 + public function save_default_settings() {
757 + $_settings = $this->get_all();
645 758
646 - public function settings_args() {
647 - $wp_roles = $this->normalize_options( $this->get_roles() );
759 + return $this->database->save( $this->base_key, $_settings );
760 + }
648 761
649 - $roles_for_ikb = $this->normalize_options( array_merge( [ 'all' => __( 'All logged in users', 'betterdocs' ) ], wp_roles()->role_names ) );
762 + public function get_pages() {
763 + $_pages = betterdocs()->query->get_posts( array(
764 + 'post_type' => 'page',
765 + 'numberposts' => -1,
766 + 'post_status' => 'publish',
767 + 'posts_per_page' => -1
768 + ) );
650 769
651 - unset( $roles_for_ikb['administrator'] );
770 + $__pages = array();
652 771
653 - $settings = [
654 - 'id' => 'betterdocs_settings_metabox_wrapper',
655 - 'title' => __( 'betterdocs', 'betterdocs' ),
656 - 'object_types' => [ 'betterdocs' ],
657 - 'context' => 'normal',
658 - 'priority' => 'high',
659 - 'show_header' => false,
660 - 'tabnumber' => false,
661 - 'is_pro_active' => betterdocs()->is_pro_active(),
662 - 'logoURL' => betterdocs()->assets->icon( 'betterdocs-icon.svg', true ),
663 - 'layout' => 'vertical',
664 - 'config' => [
665 - 'active' => 'tab-general',
666 - 'sidebar' => true,
667 - 'title' => false
668 - ],
669 - 'submit' => [
670 - 'show' => true,
671 - 'label' => __( 'Save', 'betterdocs' ),
672 - 'loadingLabel' => __( 'Saving...', 'betterdocs' ),
673 - 'class' => 'save-settings',
674 - 'rules' => Rules::logicalRule( [
675 - Rules::is( 'config.active', 'tab-design', true ),
676 - Rules::is( 'config.active', 'tab-shortcodes', true ),
677 - Rules::is( 'config.active', 'tab-instant-answer', true ),
678 - Rules::is( 'config.active', 'tab-import-export', true ),
679 - Rules::is( 'config.active', 'tab-migration', true )
680 - ], 'and' )
681 - ],
682 - 'values' => betterdocs()->is_pro_active() ? $this->get_all() : array_merge( $this->get_all(), $this->pro_settings_default_values() ),
683 - 'tabs' => apply_filters( 'betterdocs_settings_tabs', [
684 - 'tab-general' => apply_filters( 'betterdocs_settings_tab_general', [
685 - 'id' => 'tab-general',
686 - 'label' => __( 'General', 'betterdocs' ),
687 - 'classes' => 'tab-general',
688 - 'priority' => 10,
689 - 'fields' => [
690 - 'title-general' => apply_filters( 'betterdocs_encyclopedia_settings', [
691 - 'name' => 'title-general-tab',
692 - 'type' => 'section',
693 - 'label' => __( 'General Settings', 'betterdocs' ),
694 - 'priority' => 10,
695 - 'fields' => [
696 - 'multiple_kb' => apply_filters( 'betterdocs_multi_kb_settings', [
697 - 'name' => 'multiple_kb',
698 - 'type' => 'toggle',
699 - 'label' => __( 'Multiple Knowledge Base', 'betterdocs' ),
700 - 'enable_disable_text_active' => true,
701 - 'default' => '',
702 - 'priority' => 1,
703 - 'is_pro' => true
704 - ] ),
705 - 'builtin_doc_page' => [
706 - 'name' => 'builtin_doc_page',
707 - 'type' => 'toggle',
708 - 'label' => __( 'Built-in Documentation Page', 'betterdocs' ),
709 - 'enable_disable_text_active' => true,
710 - 'default' => 1,
711 - 'priority' => 2
712 - ],
713 - 'enable_category_hierarchy_slugs' => [
714 - 'name' => 'enable_category_hierarchy_slugs',
715 - 'type' => 'toggle',
716 - 'label' => __( 'Enable Category Hierarchy Slug', 'betterdocs' ),
717 - 'enable_disable_text_active' => true,
718 - 'default' => false,
719 - 'priority' => 3,
720 - 'label_subtitle' => __( "Shows Hierarchy Based Permalink Slugs For Doc Categories & Single Doc Page", 'betterdocs' )
721 - ],
722 - 'breadcrumb_doc_title' => [
723 - 'name' => 'breadcrumb_doc_title',
724 - 'type' => 'text',
725 - 'label' => __( 'Documentation Page Title', 'betterdocs' ),
726 - 'default' => __( 'Docs', 'betterdocs' ),
727 - 'priority' => 4,
728 - 'rules' => Rules::is( 'builtin_doc_page', true )
729 - ],
730 - 'docs_slug' => [
731 - 'name' => 'docs_slug',
732 - 'type' => 'text',
733 - 'label' => __( 'BetterDocs Root Slug', 'betterdocs' ),
734 - 'default' => 'docs',
735 - 'priority' => 5,
736 - 'rules' => Rules::is( 'builtin_doc_page', true )
737 - ],
738 - 'docs_page' => [
739 - 'name' => 'docs_page',
740 - 'label' => __( 'Docs Page', 'betterdocs' ),
741 - 'type' => 'select',
742 - 'default' => 0,
743 - 'priority' => 6,
744 - 'search' => true,
745 - 'options' => $this->normalize_options( $this->get_pages() ),
746 - 'label_subtitle' => __( 'You will need to insert BetterDocs Shortcode inside the page. This page will be used as docs permalink.', 'betterdocs' ),
747 - 'rules' => Rules::is( 'builtin_doc_page', false )
748 - ],
772 + if ( ! empty( $_pages ) ) {
773 + $__pages[ 0 ] = __( 'Select a Page', 'betterdocs' );
774 + foreach ( $_pages->posts as $page ) {
775 + $__pages[ $page->ID ] = esc_html( $page->post_title );
776 + }
777 + }
749 778
750 - 'category_slug' => [
751 - 'name' => 'category_slug',
752 - 'type' => 'text',
753 - 'label' => __( 'Custom Category Slug', 'betterdocs' ),
754 - 'default' => 'docs-category',
755 - 'priority' => 7
756 - ],
757 - 'tag_slug' => [
758 - 'name' => 'tag_slug',
759 - 'type' => 'text',
760 - 'label' => __( 'Custom Tag Slug', 'betterdocs' ),
761 - 'default' => 'docs-tag',
762 - 'priority' => 8
763 - ],
764 - 'permalink_structure' => [
765 - 'name' => 'permalink_structure',
766 - 'type' => 'permalink_structure',
767 - 'label' => __( 'Single Docs Permalink', 'betterdocs' ),
768 - 'default' => PostType::permalink_structure(),
769 - 'priority' => 9,
770 - 'tags' => $this->normalize_options( [
771 - '%doc_category%' => '%doc_category%',
772 - '%knowledge_base%' => '%knowledge_base%'
773 - ] ),
774 - 'label_subtitle' => __( 'Make sure to keep Docs Root Slug in the Single Docs Permalink. You are not able to keep it blank. You can use the available tags from below.', 'betterdocs' )
775 - ],
776 - 'enable_glossaries' => [
777 - 'name' => 'enable_glossaries',
778 - 'type' => 'toggle',
779 - 'label' => __( 'Show Glossary', 'betterdocs' ),
780 - 'label_subtitle' => __( 'Enable the glossary feature to allow users to look up definitions for terms used within your encyclopedia or glossaries themselves.', 'betterdocs' ),
781 - 'enable_disable_text_active' => true,
782 - 'default' => false,
783 - 'priority' => 10,
784 - 'is_pro' => true
785 - ],
786 - 'enable_encyclopedia' => [
787 - 'name' => 'enable_encyclopedia',
788 - 'type' => 'toggle',
789 - 'label' => __( 'Built-in Encyclopedia Page', 'betterdocs' ),
790 - 'enable_disable_text_active' => true,
791 - 'default' => false,
792 - 'priority' => 11,
793 - 'is_pro' => true
794 - ],
795 - 'enable_faq_schema' => [
796 - 'name' => 'enable_faq_schema',
797 - 'type' => 'toggle',
798 - 'label' => __( 'FAQ Schema', 'betterdocs' ),
799 - 'enable_disable_text_active' => true,
800 - 'default' => '',
801 - 'priority' => 12
802 - ],
803 - 'analytics_from' => [
804 - 'name' => 'analytics_from',
805 - 'type' => 'select',
806 - 'label' => __( 'Analytics From', 'betterdocs' ),
807 - 'options' => $this->normalize_options( [
808 - 'everyone' => __( 'Everyone', 'betterdocs' ),
809 - 'guests' => __( 'Guests Only', 'betterdocs' ),
810 - 'registered_users' => __( 'Registered Users Only', 'betterdocs' )
811 - ] ),
812 - 'default' => 'everyone',
813 - 'priority' => 13,
814 - 'is_pro' => true
815 - ],
816 - 'unique_visitor_count' => [
817 - 'name' => 'unique_visitor_count',
818 - 'type' => 'toggle',
819 - 'label' => __( 'Unique Visitor Count', 'betterdocs' ),
820 - 'enable_disable_text_active' => true,
821 - 'default' => false,
822 - 'priority' => 14,
823 - 'is_pro' => true
824 - ],
825 - 'exclude_bot_analytics' => [
826 - 'name' => 'exclude_bot_analytics',
827 - 'type' => 'toggle',
828 - 'label' => __( 'Exclude Bot Analytics', 'betterdocs' ),
829 - 'enable_disable_text_active' => true,
830 - 'default' => false,
831 - 'priority' => 15,
832 - 'is_pro' => true
833 - ]
779 + return $__pages;
780 + }
834 781
835 - ]
836 - ] )
837 - ]
838 - ] ),
839 - 'tab-layout' => apply_filters( 'betterdocs_settings_tab_layout', [
840 - 'id' => 'tab-layout',
841 - 'label' => __( 'Layout', 'betterdocs' ),
842 - 'classes' => 'tab-layout',
843 - 'priority' => 20,
844 - 'fields' => [
845 - 'title-layout' => [
846 - 'name' => 'title-layout-tab',
847 - 'type' => 'section',
848 - 'label' => __( 'Layout Settings', 'betterdocs' ),
849 - 'priority' => 20,
850 - 'fields' => [
851 - 'tab-sidebar-layout' => apply_filters( 'betterdocs_settings_tab_sidebar_layout', [
852 - 'id' => 'tab-sidebar-layout',
853 - 'name' => 'tab_sidebar_layout',
854 - 'label' => __( 'Layout Settings', 'betterdocs' ),
855 - 'classes' => 'tab-layout',
856 - 'type' => 'tab',
857 - 'active' => 'layout_documentation_page',
858 - 'completionTrack' => true,
859 - 'sidebar' => false,
860 - 'save' => false,
861 - 'title' => false,
862 - 'config' => [
863 - 'active' => 'layout_documentation_page',
864 - 'sidebar' => false,
865 - 'title' => false
866 - ],
867 - 'submit' => [
868 - 'show' => false
869 - ],
870 - 'step' => [
871 - 'show' => false
872 - ],
873 - 'priority' => 20,
874 - 'fields' => [
875 - 'layout_documentation_page' => [
876 - 'id' => 'layout_documentation_page',
877 - 'name' => 'layout_documentation_page',
878 - 'type' => 'section',
879 - 'label' => __( 'Documentation Page', 'betterdocs' ),
880 - 'priority' => 1,
881 - 'fields' => [
882 - 'tab-nested-layout-1' => [
883 - 'id' => 'tab-nested-layout-1',
884 - 'name' => 'tab_nested_layout_1',
885 - 'label' => __( 'Documentation Page', 'betterdocs' ),
886 - 'classes' => 'tab-nested-layout',
887 - 'type' => 'tab',
888 - 'active' => 'layout_documentation_page_general',
889 - 'completionTrack' => true,
890 - 'sidebar' => false,
891 - 'save' => false,
892 - 'title' => false,
893 - 'config' => [
894 - 'active' => 'layout_documentation_page_general',
895 - 'sidebar' => false,
896 - 'title' => false
897 - ],
898 - 'submit' => [
899 - 'show' => false
900 - ],
901 - 'step' => [
902 - 'show' => false
903 - ],
904 - 'priority' => 1,
905 - 'fields' => [
906 - 'layout_documentation_page_general' => [
907 - 'id' => 'layout_documentation_page_general',
908 - 'name' => 'layout_documentation_page_general',
909 - 'type' => 'section',
910 - 'label' => __( 'General', 'betterdocs' ),
911 - 'priority' => 1,
912 - 'fields' => [
913 - 'docs_list_icon' => [
914 - 'name' => 'docs_list_icon',
915 - 'type' => 'media',
916 - 'value' => '',
917 - 'label' => __( 'Docs List Icon', 'betterdocs' ),
918 - 'label_subtitle' => __( 'Upload your own preferred document list icon', 'betterdocs' ),
919 - 'priority' => 0
920 - ],
921 - 'category_title_link' => [
922 - 'name' => 'category_title_link',
923 - 'type' => 'toggle',
924 - 'label' => __( 'Category Title Link', 'betterdocs' ),
925 - 'label_subtitle' => __( 'This setting is applicable for category grid layout', 'betterdocs' ),
926 - 'enable_disable_text_active' => true,
927 - 'default' => false,
928 - 'priority' => 0
929 - ],
930 - 'masonry_layout' => [
931 - 'name' => 'masonry_layout',
932 - 'type' => 'toggle',
933 - 'label' => __( 'Masonry', 'betterdocs' ),
934 - 'enable_disable_text_active' => true,
935 - 'default' => 1,
936 - 'priority' => 1
937 - ],
938 - 'nested_subcategory' => [
939 - 'name' => 'nested_subcategory',
940 - 'type' => 'toggle',
941 - 'label' => __( 'Nested Sub Category', 'betterdocs' ),
942 - 'enable_disable_text_active' => true,
943 - 'default' => '',
944 - 'priority' => 2
945 - ],
946 - 'column_number' => [
947 - 'name' => 'column_number',
948 - 'type' => 'number',
949 - 'label' => __( 'Number Of Columns', 'betterdocs' ),
950 - 'label_subtitle' => __( 'This setting is not applicable for sleek layout.', 'betterdocs' ),
951 - 'default' => 3,
952 - 'priority' => 3
953 - ],
954 - 'posts_number' => apply_filters( 'betterdocs_posts_number', [
955 - 'name' => 'posts_number',
956 - 'type' => 'number',
957 - 'label' => __( 'Number Of Docs', 'betterdocs' ),
958 - 'label_subtitle' => __( 'This setting is not applicable for handbook layout.', 'betterdocs' ),
959 - 'default' => 10,
960 - 'priority' => 4
961 - ] ),
962 - 'post_count' => [
963 - 'name' => 'post_count',
964 - 'type' => 'toggle',
965 - 'label' => __( 'Doc Count', 'betterdocs' ),
966 - 'enable_disable_text_active' => true,
967 - 'default' => 1,
968 - 'priority' => 5
969 - ],
970 - 'count_text' => [
971 - 'name' => 'count_text',
972 - 'type' => 'text',
973 - 'label' => __( 'Count Text', 'betterdocs' ),
974 - 'default' => __( 'Docs', 'betterdocs' ),
975 - 'priority' => 6
976 - ],
977 - 'count_text_singular' => [
978 - 'name' => 'count_text_singular',
979 - 'type' => 'text',
980 - 'label' => __( 'Count Text Singular', 'betterdocs' ),
981 - 'default' => __( 'Doc', 'betterdocs' ),
982 - 'priority' => 7
983 - ],
984 - 'exploremore_btn' => [
985 - 'name' => 'exploremore_btn',
986 - 'type' => 'toggle',
987 - 'label' => __( 'Explore More Button', 'betterdocs' ),
988 - 'enable_disable_text_active' => true,
989 - 'default' => true,
990 - 'priority' => 8
991 - ],
992 - 'exploremore_btn_txt' => [
993 - 'name' => 'exploremore_btn_txt',
994 - 'type' => 'text',
995 - 'label' => __( 'Explore More Button Text', 'betterdocs' ),
996 - 'default' => __( 'Explore More', 'betterdocs' ),
997 - 'priority' => 9,
998 - 'rules' => Rules::is( 'exploremore_btn', true )
999 - ],
1000 - 'betterdocs_popular_docs_text' => [
1001 - 'name' => 'betterdocs_popular_docs_text',
1002 - 'type' => 'text',
1003 - 'label' => __( 'Popular Docs Text', 'betterdocs' ),
1004 - 'default' => __( 'Popular Docs', 'betterdocs' ),
1005 - 'priority' => 10,
1006 - 'is_pro' => true
1007 - ],
1008 - 'betterdocs_popular_docs_number' => [
1009 - 'name' => 'betterdocs_popular_docs_number',
1010 - 'type' => 'number',
1011 - 'label' => __( 'Popular Docs Number', 'betterdocs' ),
1012 - 'default' => 10,
1013 - 'priority' => 11,
1014 - 'is_pro' => true
1015 - ]
1016 - ]
1017 - ],
1018 - 'layout_documentation_page_search' => [
1019 - 'id' => 'layout_documentation_page_search',
1020 - 'name' => 'layout_documentation_page_search',
1021 - 'type' => 'section',
1022 - 'label' => __( 'Search', 'betterdocs' ),
1023 - 'priority' => 2,
1024 - 'fields' => [
1025 - 'live_search' => [
1026 - 'name' => 'live_search',
1027 - 'type' => 'toggle',
1028 - 'label' => __( 'Live Search', 'betterdocs' ),
1029 - 'enable_disable_text_active' => true,
1030 - 'default' => 1,
1031 - 'priority' => 1
1032 - ],
1033 - 'advance_search' => apply_filters( 'betterdocs_advance_search_settings', [
1034 - 'name' => 'advance_search',
1035 - 'type' => 'toggle',
1036 - 'label' => __( 'Advanced Search', 'betterdocs' ),
1037 - 'enable_disable_text_active' => true,
1038 - 'default' => '',
1039 - 'priority' => 2,
1040 - 'is_pro' => true
1041 - ] ),
1042 - 'child_category_exclude' => apply_filters( 'child_category_exclude', [
1043 - 'name' => 'child_category_exclude',
1044 - 'type' => 'toggle',
1045 - 'label' => __( 'Exclude Child Terms In Category Search', 'betterdocs' ),
1046 - 'enable_disable_text_active' => true,
1047 - 'default' => '',
1048 - 'priority' => 3,
1049 - 'is_pro' => true
1050 - ] ),
1051 - 'popular_keyword_limit' => apply_filters( 'betterdocs_popular_keyword_limit_settings', [
1052 - 'name' => 'popular_keyword_limit',
1053 - 'type' => 'number',
1054 - 'label' => __( 'Minimum amount of Keywords Search', 'betterdocs' ),
1055 - 'default' => 5,
1056 - 'priority' => 4,
1057 - 'is_pro' => true
1058 - ] ),
1059 - 'search_letter_limit' => [
1060 - 'name' => 'search_letter_limit',
1061 - 'type' => 'number',
1062 - 'label' => __( 'Minimum Character Limit For Search Result', 'betterdocs' ),
1063 - 'priority' => 5,
1064 - 'default' => 3
1065 - ],
1066 - 'search_placeholder' => [
1067 - 'name' => 'search_placeholder',
1068 - 'type' => 'text',
1069 - 'label' => __( 'Search Placeholder', 'betterdocs' ),
1070 - 'default' => __( 'Search..', 'betterdocs' ),
1071 - 'priority' => 6
1072 - ],
1073 - 'search_button_text' => apply_filters( 'betterdocs_search_button_text', [
1074 - 'name' => 'search_button_text',
1075 - 'type' => 'text',
1076 - 'label' => __( 'Search Button Text', 'betterdocs' ),
1077 - 'priority' => 7,
1078 - 'default' => __( 'Search', 'betterdocs' )
1079 - ] ),
1080 - 'search_not_found_text' => [
1081 - 'name' => 'search_not_found_text',
1082 - 'type' => 'text',
1083 - 'label' => __( 'Search Not Found Text', 'betterdocs' ),
1084 - 'default' => 'Sorry, no docs were found.',
1085 - 'priority' => 8
1086 - ],
1087 - 'search_result_image' => [
1088 - 'name' => 'search_result_image',
1089 - 'type' => 'toggle',
1090 - 'label' => __( 'Search Result Image', 'betterdocs' ),
1091 - 'enable_disable_text_active' => true,
1092 - 'default' => 1,
1093 - 'priority' => 9
1094 - ],
1095 - 'kb_based_search' => apply_filters( 'betterdocs_kb_based_search_settings', [
1096 - 'name' => 'kb_based_search',
1097 - 'type' => 'toggle',
1098 - 'label' => __( 'KB Based Search', 'betterdocs' ),
1099 - 'enable_disable_text_active' => true,
1100 - 'default' => '',
1101 - 'priority' => 10,
1102 - 'is_pro' => true,
1103 - 'rules' => Rules::is( 'multiple_kb', true )
1104 - ] ),
1105 - 'search_modal_search_type' => [
1106 - 'name' => 'search_modal_search_type',
1107 - 'type' => 'select',
1108 - 'label' => __( 'Search Modal Source', 'betterdocs' ),
1109 - 'label_subtitle' => __( 'Choose the content type to be shown in the search modal. <br> <b>Note:</b> This is only applicable on Modal Search.', 'betterdocs' ),
1110 - 'default' => 'all',
1111 - 'options' => $this->normalize_options( [
1112 - 'all' => __('Both (Docs + FAQs)', 'betterdocs'),
1113 - 'docs' => __('Docs only', 'betterdocs'),
1114 - 'faq' => __('FAQs only', 'betterdocs')
1115 - ] ),
1116 - 'priority' => 11,
1117 - ]
1118 - ]
1119 - ],
1120 - 'layout_documentation_page_order_by' => [
1121 - 'id' => 'layout_documentation_page_order_by',
1122 - 'name' => 'layout_documentation_page_order_by',
1123 - 'type' => 'section',
1124 - 'label' => __( 'Order By', 'betterdocs' ),
1125 - 'priority' => 3,
1126 - 'fields' => [
1127 - 'terms_orderby' => [
1128 - 'name' => 'terms_orderby',
1129 - 'type' => 'select',
1130 - 'label' => __( 'Terms Order By', 'betterdocs' ),
1131 - 'default' => 'betterdocs_order',
1132 - 'options' => $this->normalize_options( apply_filters( 'betterdocs_terms_orderby_options', [
1133 - 'none' => __( 'No order', 'betterdocs' ),
1134 - 'name' => __( 'Name', 'betterdocs' ),
1135 - 'slug' => __( 'Slug', 'betterdocs' ),
1136 - 'term_group' => __( 'Term Group', 'betterdocs' ),
1137 - 'term_id' => __( 'Term ID', 'betterdocs' ),
1138 - 'id' => __( 'ID', 'betterdocs' ),
1139 - 'description' => __( 'Description', 'betterdocs' ),
1140 - 'parent' => __( 'Parent', 'betterdocs' ),
1141 - 'betterdocs_order' => __( 'BetterDocs Order', 'betterdocs' )
1142 - ] ) ),
1143 - 'priority' => 1
1144 - ],
1145 - 'terms_order' => [
1146 - 'name' => 'terms_order',
1147 - 'type' => 'select',
1148 - 'label' => __( 'Terms Order', 'betterdocs' ),
1149 - 'default' => 'ASC',
1150 - 'options' => $this->normalize_options( [
1151 - 'ASC' => 'Ascending',
1152 - 'DESC' => 'Descending'
1153 - ] ),
1154 - 'priority' => 3,
1155 - 'rules' => Rules::includes( 'terms_orderby', 'betterdocs_order', true )
1156 - ],
1157 - 'alphabetically_order_post' => [
1158 - 'name' => 'alphabetically_order_post',
1159 - 'type' => 'select',
1160 - 'label' => __( 'Docs Order By', 'betterdocs' ),
1161 - 'default' => 'betterdocs_order',
1162 - 'options' => $this->normalize_options( [
1163 - 'none' => __( 'No order', 'betterdocs' ),
1164 - 'ID' => __( 'Docs ID', 'betterdocs' ),
1165 - 'author' => __( 'Docs Author', 'betterdocs' ),
1166 - 'title' => __( 'Title', 'betterdocs' ),
1167 - 'date' => __( 'Date', 'betterdocs' ),
1168 - 'modified' => __( 'Last Modified Date', 'betterdocs' ),
1169 - 'parent' => __( 'Parent Id', 'betterdocs' ),
1170 - 'rand' => __( 'Random', 'betterdocs' ),
1171 - 'comment_count' => __( 'Comment Count', 'betterdocs' ),
1172 - 'menu_order' => __( 'Menu Order', 'betterdocs' ),
1173 - 'betterdocs_order' => __( 'BetterDocs Order', 'betterdocs' )
1174 - ] ),
1175 - 'priority' => 4
1176 - ],
1177 - 'docs_order' => [
1178 - 'name' => 'docs_order',
1179 - 'type' => 'select',
1180 - 'label' => __( 'Docs Order', 'betterdocs' ),
1181 - 'default' => 'ASC',
1182 - 'options' => $this->normalize_options( [
1183 - 'ASC' => 'Ascending',
1184 - 'DESC' => 'Descending'
1185 - ] ),
1186 - 'priority' => 5,
1187 - 'rules' => Rules::includes( 'alphabetically_order_post', 'betterdocs_order', true )
1188 - ]
1189 - ]
1190 - ]
1191 - ]
1192 - ]
1193 - ]
1194 - ],
1195 - 'layout_single_doc' => apply_filters( 'single_doc_setting_section', [
1196 - 'id' => 'layout_single_doc',
1197 - 'name' => 'layout_single_doc',
1198 - 'type' => 'section',
1199 - 'label' => __( 'Single Doc', 'betterdocs' ),
1200 - 'priority' => 2,
1201 - 'fields' => [
1202 - 'tab-nested-layout-2' => [
1203 - 'id' => 'tab-nested-layout-2',
1204 - 'name' => 'tab_nested_layout_2',
1205 - 'label' => __( 'Single Doc', 'betterdocs' ),
1206 - 'classes' => 'tab-nested-layout',
1207 - 'type' => 'tab',
1208 - 'active' => 'layout_single_doc_general',
1209 - 'completionTrack' => true,
1210 - 'sidebar' => false,
1211 - 'save' => false,
1212 - 'title' => false,
1213 - 'config' => [
1214 - 'active' => 'layout_single_doc_general',
1215 - 'sidebar' => false,
1216 - 'title' => false
1217 - ],
1218 - 'submit' => [
1219 - 'show' => false
1220 - ],
1221 - 'step' => [
1222 - 'show' => false
1223 - ],
1224 - 'priority' => 20,
1225 - 'fields' => [
1226 - 'layout_single_doc_general' => [
1227 - 'id' => 'layout_single_doc_general',
1228 - 'name' => 'layout_single_doc_general',
1229 - 'type' => 'section',
1230 - 'label' => __( 'General', 'betterdocs' ),
1231 - 'priority' => 5,
1232 - 'fields' => [
1233 - 'enable_post_title' => [
1234 - 'name' => 'enable_post_title',
1235 - 'type' => 'toggle',
1236 - 'label' => __( 'Doc Title', 'betterdocs' ),
1237 - 'enable_disable_text_active' => true,
1238 - 'default' => 1,
1239 - 'priority' => 1
1240 - ],
1241 - 'enable_sidebar_cat_list' => [
1242 - 'name' => 'enable_sidebar_cat_list',
1243 - 'type' => 'toggle',
1244 - 'label' => __( 'Sidebar Category List', 'betterdocs' ),
1245 - 'enable_disable_text_active' => true,
1246 - 'default' => 1,
1247 - 'priority' => 2
1248 - ],
1249 - 'enable_print_icon' => [
1250 - 'name' => 'enable_print_icon',
1251 - 'type' => 'toggle',
1252 - 'label' => __( 'Print Icon', 'betterdocs' ),
1253 - 'enable_disable_text_active' => true,
1254 - 'default' => 1,
1255 - 'priority' => 3
1256 - ],
1257 - 'enable_tags' => [
1258 - 'name' => 'enable_tags',
1259 - 'type' => 'toggle',
1260 - 'label' => __( 'Tags', 'betterdocs' ),
1261 - 'enable_disable_text_active' => true,
1262 - 'default' => 1,
1263 - 'priority' => 4
1264 - ],
1265 - 'show_last_update_time' => [
1266 - 'name' => 'show_last_update_time',
1267 - 'type' => 'toggle',
1268 - 'label' => __( 'Last Update Time', 'betterdocs' ),
1269 - 'enable_disable_text_active' => true,
1270 - 'default' => 1,
1271 - 'priority' => 5
1272 - ],
1273 - 'enable_navigation' => [
1274 - 'name' => 'enable_navigation',
1275 - 'type' => 'toggle',
1276 - 'label' => __( 'Navigation', 'betterdocs' ),
1277 - 'enable_disable_text_active' => true,
1278 - 'default' => 1,
1279 - 'priority' => 6
1280 - ],
1281 - 'enable_comment' => [
1282 - 'name' => 'enable_comment',
1283 - 'type' => 'toggle',
1284 - 'label' => __( 'Comment', 'betterdocs' ),
1285 - 'enable_disable_text_active' => true,
1286 - 'default' => '',
1287 - 'priority' => 7
1288 - ],
1289 - 'enable_credit' => [
1290 - 'name' => 'enable_credit',
1291 - 'type' => 'toggle',
1292 - 'label' => __( 'Show Powered by BetterDocs', 'betterdocs' ),
1293 - 'enable_disable_text_active' => true,
1294 - 'default' => '',
1295 - 'priority' => 8
1296 - ],
1297 - 'reaction_feedback_text' => [
1298 - 'name' => 'reaction_feedback_text',
1299 - 'type' => 'text',
1300 - 'label' => __( 'Reaction Feedback Text', 'betterdocs' ),
1301 - 'default' => __( 'Thanks for your feedback.', 'betterdocs' ),
1302 - 'priority' => 9
1303 - ],
1304 - 'enable_estimated_reading_time' => [
1305 - 'name' => 'enable_estimated_reading_time',
1306 - 'type' => 'toggle',
1307 - 'label' => __( 'Estimated Reading Time', 'betterdocs' ),
1308 - 'enable_disable_text_active' => true,
1309 - 'default' => 0,
1310 - 'priority' => 10
1311 - ],
1312 - 'estimated_reading_time_title' => [
1313 - 'name' => 'estimated_reading_time_title',
1314 - 'type' => 'text',
1315 - 'label' => __( 'Estimated Reading Time Title', 'betterdocs' ),
1316 - 'default' => '',
1317 - 'priority' => 11,
1318 - 'rules' => Rules::is( 'enable_estimated_reading_time', true )
1319 - ],
1320 - 'estimated_reading_time_text' => [
1321 - 'name' => 'estimated_reading_time_text',
1322 - 'type' => 'text',
1323 - 'label' => __( 'Estimated Reading Time Text', 'betterdocs' ),
1324 - 'default' => __( 'min read', 'betterdocs' ),
1325 - 'priority' => 12,
1326 - 'rules' => Rules::is( 'enable_estimated_reading_time', true )
1327 - ],
1328 - 'singular_estimated_reading_time_text' => [
1329 - 'name' => 'singular_estimated_reading_time_text',
1330 - 'type' => 'text',
1331 - 'label' => __( 'Estimated Reading Time Text Singular', 'betterdocs' ),
1332 - 'default' => __( 'min read', 'betterdocs' ),
1333 - 'priority' => 13,
1334 - 'rules' => Rules::is( 'enable_estimated_reading_time', true )
1335 - ]
1336 - ]
1337 - ],
1338 - 'layout_single_doc_TOC' => [
1339 - 'id' => 'layout_single_doc_TOC',
1340 - 'name' => 'layout_single_doc_TOC',
1341 - 'type' => 'section',
1342 - 'label' => __( 'TOC', 'betterdocs' ),
1343 - 'priority' => 5,
1344 - 'fields' => [
1345 - 'enable_toc' => [
1346 - 'name' => 'enable_toc',
1347 - 'type' => 'toggle',
1348 - 'label' => __( 'Table of Contents', 'betterdocs' ),
1349 - 'enable_disable_text_active' => true,
1350 - 'default' => 1,
1351 - 'priority' => 1
1352 - ],
1353 - 'toc_title' => [
1354 - 'name' => 'toc_title',
1355 - 'type' => 'text',
1356 - 'label' => __( 'TOC Title', 'betterdocs' ),
1357 - 'default' => __( 'Table of Contents', 'betterdocs' ),
1358 - 'priority' => 2,
1359 - 'rules' => Rules::is( 'enable_toc', true )
782 + public function settings_args() {
783 + $wp_roles = $this->normalize_options( $this->get_roles() );
1360 784
1361 - ],
1362 - 'toc_hierarchy' => [
1363 - 'name' => 'toc_hierarchy',
1364 - 'type' => 'toggle',
1365 - 'label' => __( 'TOC Hierarchy', 'betterdocs' ),
1366 - 'enable_disable_text_active' => true,
1367 - 'default' => 1,
1368 - 'priority' => 3,
1369 - 'rules' => Rules::is( 'enable_toc', true )
1370 - ],
1371 - 'toc_list_number' => [
1372 - 'name' => 'toc_list_number',
1373 - 'type' => 'toggle',
1374 - 'label' => __( 'TOC List Number', 'betterdocs' ),
1375 - 'enable_disable_text_active' => true,
1376 - 'default' => 1,
1377 - 'priority' => 4,
1378 - 'rules' => Rules::is( 'enable_toc', true )
1379 - ],
1380 - 'toc_dynamic_title' => [
1381 - 'name' => 'toc_dynamic_title',
1382 - 'type' => 'toggle',
1383 - 'label' => __( 'Show TOC Title in Anchor Links', 'betterdocs' ),
1384 - 'enable_disable_text_active' => true,
1385 - 'default' => 0,
1386 - 'priority' => 5,
1387 - 'rules' => Rules::is( 'enable_toc', true )
1388 - ],
1389 - 'enable_sticky_toc' => [
1390 - 'name' => 'enable_sticky_toc',
1391 - 'type' => 'toggle',
1392 - 'label' => __( 'Sticky TOC', 'betterdocs' ),
1393 - 'enable_disable_text_active' => true,
1394 - 'default' => 1,
1395 - 'priority' => 6,
1396 - 'rules' => Rules::is( 'enable_toc', true )
1397 - ],
1398 - 'collapsible_toc_mobile' => [
1399 - 'name' => 'collapsible_toc_mobile',
1400 - 'type' => 'toggle',
1401 - 'label' => __( 'Collapsible TOC on small devices', 'betterdocs' ),
1402 - 'enable_disable_text_active' => true,
1403 - 'default' => '',
1404 - 'priority' => 7,
1405 - 'rules' => Rules::is( 'enable_toc', true )
1406 - ],
1407 - 'title_link_ctc' => [
1408 - 'name' => 'title_link_ctc',
1409 - 'type' => 'toggle',
1410 - 'label' => __( 'Title Link Copy To Clipboard', 'betterdocs' ),
1411 - 'enable_disable_text_active' => true,
1412 - 'default' => 1,
1413 - 'priority' => 8
1414 - ],
1415 - 'supported_heading_tag' => [
1416 - 'name' => 'supported_heading_tag',
1417 - 'label' => __( 'TOC Supported Heading Tag', 'betterdocs' ),
1418 - 'type' => 'checkbox-select',
1419 - 'multiple' => true,
1420 - 'priority' => 10,
1421 - 'default' => [
1422 - '1',
1423 - '2',
1424 - '3',
1425 - '4',
1426 - '5',
1427 - '6'
1428 - ],
1429 - 'options' => $this->normalize_options( [
1430 - '1' => 'H1',
1431 - '2' => 'H2',
1432 - '3' => 'H3',
1433 - '4' => 'H4',
1434 - '5' => 'H5',
1435 - '6' => 'H6'
1436 - ] ),
1437 - 'priority' => 9,
1438 - 'rules' => Rules::is( 'enable_toc', true )
1439 - ],
1440 - 'sticky_toc_offset' => [
1441 - 'name' => 'sticky_toc_offset',
1442 - 'type' => 'number',
1443 - 'label' => __( 'Content Offset', 'betterdocs' ),
1444 - 'default' => 100,
1445 - 'priority' => 10,
1446 - 'label_subtitle' => __( 'content offset from top on scroll.', 'betterdocs' ),
1447 - 'rules' => Rules::is( 'enable_toc', true )
1448 - ]
1449 - ]
1450 - ],
1451 - 'layout_single_doc_breadcrumb' => [
1452 - 'id' => 'layout_single_doc_breadcrumb',
1453 - 'name' => 'layout_single_doc_breadcrumb',
1454 - 'type' => 'section',
1455 - 'label' => __( 'Breadcrumb', 'betterdocs' ),
1456 - 'priority' => 5,
1457 - 'fields' => [
1458 - 'enable_breadcrumb' => [
1459 - 'name' => 'enable_breadcrumb',
1460 - 'type' => 'toggle',
1461 - 'label' => __( 'Breadcrumb', 'betterdocs' ),
1462 - 'enable_disable_text_active' => true,
1463 - 'default' => 1,
1464 - 'priority' => 1
1465 - ],
1466 - 'enable_breadcrumb_home_text' => [
1467 - 'name' => 'enable_breadcrumb_home_text',
1468 - 'type' => 'toggle',
1469 - 'label' => __( 'Enable Breadcrumb Home Text', 'betterdocs' ),
1470 - 'enable_disable_text_active' => true,
1471 - 'default' => true,
1472 - 'priority' => 2,
1473 - 'rules' => Rules::is( 'enable_breadcrumb', true )
1474 - ],
1475 - 'breadcrumb_home_text' => [
1476 - 'name' => 'breadcrumb_home_text',
1477 - 'type' => 'text',
1478 - 'label' => __( 'Breadcrumb Home Text', 'betterdocs' ),
1479 - 'default' => __( 'Home', 'betterdocs' ),
1480 - 'priority' => 3,
1481 - 'rules' => Rules::logicalRule(
1482 - [
1483 - Rules::is( 'enable_breadcrumb', true ),
1484 - Rules::is( 'enable_breadcrumb_home_text', true )
1485 - ],
1486 - 'and'
1487 - )
1488 - ],
1489 - 'breadcrumb_home_url' => [
1490 - 'name' => 'breadcrumb_home_url',
1491 - 'type' => 'text',
1492 - 'label' => __( 'Breadcrumb Home URL', 'betterdocs' ),
1493 - 'priority' => 4,
1494 - 'default' => get_home_url(),
1495 - 'rules' => Rules::is( 'enable_breadcrumb', true )
1496 - ],
1497 - 'enable_breadcrumb_category' => [
1498 - 'name' => 'enable_breadcrumb_category',
1499 - 'type' => 'toggle',
1500 - 'label' => __( 'Category on Breadcrumb', 'betterdocs' ),
1501 - 'enable_disable_text_active' => true,
1502 - 'default' => 1,
1503 - 'priority' => 5,
1504 - 'rules' => Rules::is( 'enable_breadcrumb', true )
1505 - ],
1506 - 'enable_breadcrumb_title' => [
1507 - 'name' => 'enable_breadcrumb_title',
1508 - 'type' => 'toggle',
1509 - 'label' => __( 'Title on Breadcrumb', 'betterdocs' ),
1510 - 'enable_disable_text_active' => true,
1511 - 'default' => 1,
1512 - 'priority' => 6,
1513 - 'rules' => Rules::is( 'enable_breadcrumb', true )
1514 - ]
1515 - ]
1516 - ],
1517 - 'layout_single_doc_email_feedback' => [
1518 - 'id' => 'layout_single_doc_email_feedback',
1519 - 'name' => 'layout_single_doc_email_feedback',
1520 - 'type' => 'section',
1521 - 'label' => __( 'Email Feedback', 'betterdocs' ),
1522 - 'priority' => 5,
1523 - 'fields' => [
1524 - 'email_feedback' => [
1525 - 'name' => 'email_feedback',
1526 - 'type' => 'toggle',
1527 - 'label' => __( 'Email Feedback', 'betterdocs' ),
1528 - 'enable_disable_text_active' => true,
1529 - 'default' => 1,
1530 - 'priority' => 1
1531 - ],
1532 - 'feedback_link_text' => [
1533 - 'name' => 'feedback_link_text',
1534 - 'type' => 'text',
1535 - 'label' => __( 'Feedback Link Text', 'betterdocs' ),
1536 - 'default' => __( 'Still stuck? How can we help?', 'betterdocs' ),
1537 - 'priority' => 2,
1538 - 'rules' => Rules::is( 'email_feedback', true )
1539 - ],
1540 - 'feedback_form_title' => [
1541 - 'name' => 'feedback_form_title',
1542 - 'type' => 'text',
1543 - 'label' => __( 'Feedback Form Title', 'betterdocs' ),
1544 - 'default' => __( 'Still stuck? How can we help?', 'betterdocs' ),
1545 - 'priority' => 3,
1546 - 'rules' => Rules::is( 'email_feedback', true )
1547 - ],
1548 - 'email_address' => [
1549 - 'name' => 'email_address',
1550 - 'type' => 'text',
1551 - 'label' => __( 'Email Address', 'betterdocs' ),
1552 - 'default' => get_option( 'admin_email' ),
1553 - 'priority' => 4,
1554 - 'label_subtitle' => __( 'The email address where the Feedback form will be sent', 'betterdocs' ),
1555 - 'rules' => Rules::is( 'email_feedback', true )
1556 - ],
1557 - 'feedback_url' => [
1558 - 'name' => 'feedback_url',
1559 - 'type' => 'text',
1560 - 'label' => __( 'Feedback URL', 'betterdocs' ),
1561 - 'default' => '',
1562 - 'priority' => 5,
1563 - 'rules' => Rules::is( 'email_feedback', true )
1564 - ]
1565 - ]
1566 - ],
1567 - [
1568 - 'id' => 'layout_single_doc_attachments',
1569 - 'name' => 'layout_single_doc_attachments',
1570 - 'type' => 'section',
1571 - 'label' => __( 'Attachments', 'betterdocs' ),
1572 - 'priority' => 6,
1573 - 'fields' => apply_filters( 'betterdocs_single_doc_attachments', [
1574 - 'show_attachment' => [
1575 - 'name' => 'show_attachment',
1576 - 'type' => 'toggle',
1577 - 'is_pro' => true,
1578 - 'priority' => 1,
1579 - 'label' => __( 'Show Attachment', 'betterdocs' ),
1580 - 'enable_disable_text_active' => true,
1581 - 'default' => false
1582 - ]
1583 - ] )
1584 - ],
1585 - [
1586 - 'id' => 'layout_single_doc_related_docs',
1587 - 'name' => 'layout_single_doc_related_docs',
1588 - 'type' => 'section',
1589 - 'label' => __( 'Related Docs', 'betterdocs' ),
1590 - 'priority' => 7,
1591 - 'fields' => apply_filters( 'betterdocs_single_doc_related_docs', [
1592 - 'show_related_docs' => [
1593 - 'name' => 'show_related_docs',
1594 - 'type' => 'toggle',
1595 - 'is_pro' => true,
1596 - 'priority' => 1,
1597 - 'label' => __( 'Show Related Docs', 'betterdocs' ),
1598 - 'enable_disable_text_active' => true,
1599 - 'default' => false
1600 - ]
1601 - ] )
1602 - ]
1603 - ]
1604 - ]
1605 - ]
1606 - ] ),
1607 - 'layout_archive_page' => [
1608 - 'id' => 'layout_archive_page',
1609 - 'name' => 'layout_archive_page',
1610 - 'type' => 'section',
1611 - 'label' => __( 'Archive Page', 'betterdocs' ),
1612 - 'priority' => 3,
1613 - 'fields' => [
1614 - 'enable_archive_sidebar' => [
1615 - 'name' => 'enable_archive_sidebar',
1616 - 'type' => 'toggle',
1617 - 'label' => __( 'Sidebar Category List', 'betterdocs' ),
1618 - 'enable_disable_text_active' => true,
1619 - 'default' => 1,
1620 - 'priority' => 31
1621 - ],
1622 - 'archive_nested_subcategory' => [
1623 - 'name' => 'archive_nested_subcategory',
1624 - 'type' => 'toggle',
1625 - 'label' => __( 'Nested Subcategory', 'betterdocs' ),
1626 - 'enable_disable_text_active' => true,
1627 - 'default' => 1,
1628 - 'priority' => 32
1629 - ],
1630 - 'archive_enable_pagination' => [
1631 - 'name' => 'archive_enable_pagination',
1632 - 'type' => 'toggle',
1633 - 'label' => __( 'Enable Pagination', 'betterdocs' ),
1634 - 'enable_disable_text_active' => true,
1635 - 'default' => false,
1636 - 'priority' => 33
1637 - ]
1638 - ]
1639 - ]
1640 - ]
1641 - ] )
1642 - ]
1643 - ]
1644 - ]
1645 - ] ),
1646 - 'tab-design' => apply_filters( 'betterdocs_settings_tab_design', [
1647 - 'id' => 'tab-design',
1648 - 'label' => __( 'Design', 'betterdocs' ),
1649 - 'priority' => 30,
1650 - 'fields' => [
1651 - 'title-design' => [
1652 - 'name' => 'title-design-tab',
1653 - 'type' => 'section',
1654 - 'label' => __( 'Design', 'betterdocs' ),
1655 - 'priority' => 30,
1656 - 'fields' => $this->design_tab()
1657 - ]
1658 - ]
1659 - ] ),
1660 - 'tab-shortcodes' => apply_filters( 'betterdocs_settings_tab_shortcodes', [
1661 - 'label' => __( 'Shortcodes', 'betterdocs' ),
1662 - 'id' => 'tab-shortcodes',
1663 - 'classes' => 'tab-shortcodes',
1664 - 'priority' => 40,
1665 - 'fields' => [
1666 - 'title-shortcodes' => [
1667 - 'name' => 'title-shortcodes-tab',
1668 - 'type' => 'section',
1669 - 'label' => __( 'Shortcodes', 'betterdocs' ),
1670 - 'priority' => 40,
1671 - 'searchable' => true,
1672 - 'searchPlaceholder' => __( 'Search for shortcode', 'betterdocs' ),
1673 - 'searchNotFoundMessage' => '<img src="' . betterdocs()->assets->icon( 'not-found.svg', true ) . '"/><p>' . __( 'No Shortcodes Found with these keywords', 'betterdocs' ) . '</p>',
1674 - 'fields' => apply_filters( 'betterdocs_shortcode_fields', [
1675 - 'search_form' => [
1676 - 'name' => 'search_form',
1677 - 'type' => 'copy-to-clipboard',
1678 - 'label' => __( 'Search Form', 'betterdocs' ),
1679 - 'default' => '[betterdocs_search_form]',
1680 - 'readOnly' => true,
1681 - 'priority' => 1,
1682 - 'description' => __( '[betterdocs_search_form placeholder="Search..." heading="Heading" subheading="Subheading" category_search="true" search_button="true" popular_search="true"]', 'betterdocs' ),
1683 - 'descriptionLabel' => __( 'Example with parameters:', 'betterdocs' ),
1684 - 'descriptionCopyable' => true
1685 - ],
1686 - 'feedback_form' => [
1687 - 'name' => 'feedback_form',
1688 - 'type' => 'copy-to-clipboard',
1689 - 'label' => __( 'Feedback Form', 'betterdocs' ),
1690 - 'default' => '[betterdocs_feedback_form]',
1691 - 'readOnly' => true,
1692 - 'priority' => 2,
1693 - 'description' => __( '[betterdocs_feedback_form button_text="Send"]', 'betterdocs' ),
1694 - 'descriptionLabel' => __( 'Example with parameters:', 'betterdocs' ),
1695 - 'descriptionCopyable' => true
1696 - ],
1697 - 'category_grid' => [
1698 - 'name' => 'category_grid',
1699 - 'type' => 'copy-to-clipboard',
1700 - 'label' => __( 'Category Grid- Layout 1', 'betterdocs' ),
1701 - 'default' => '[betterdocs_category_grid]',
1702 - 'readOnly' => true,
1703 - 'priority' => 3,
1704 - 'description' => __( '[betterdocs_category_grid show_count="true" show_icon="true" masonry="true" column="3" posts_per_page="5" nested_subcategory="true" terms="term_ID, term_ID" terms_orderby="" terms_order="" multiple_knowledge_base="" kb_slug="" title_tag="h2" orderby="" order="" ]', 'betterdocs' ),
1705 - 'descriptionLabel' => __( 'Example with parameters:', 'betterdocs' ),
1706 - 'descriptionCopyable' => true
1707 - ],
1708 - 'category_box' => [
1709 - 'name' => 'category_box',
1710 - 'type' => 'copy-to-clipboard',
1711 - 'label' => __( 'Category Box- Layout 2', 'betterdocs' ),
1712 - 'default' => '[betterdocs_category_box]',
1713 - 'readOnly' => true,
1714 - 'priority' => 4,
1715 - 'description' => __( '[betterdocs_category_box orderby="" column="" nested_subcategory="" terms="" terms_orderby="" show_icon="" kb_slug="" title_tag="h2" multiple_knowledge_base="false" border_bottom="false"]', 'betterdocs' ),
1716 - 'descriptionLabel' => __( 'Example with parameters:', 'betterdocs' ),
1717 - 'descriptionCopyable' => true
1718 - ],
1719 - 'category_list' => [
1720 - 'name' => 'category_list',
1721 - 'type' => 'copy-to-clipboard',
1722 - 'label' => __( 'Category List', 'betterdocs' ),
1723 - 'default' => '[betterdocs_category_list]',
1724 - 'readOnly' => true,
1725 - 'priority' => 5,
1726 - 'description' => __( '[betterdocs_category_list orderby="" order="" posts_per_page="" nested_subcategory="" terms="" terms_orderby="" terms_order="" kb_slug="" multiple_knowledge_base="false" title_tag="h2"]', 'betterdocs' ),
1727 - 'descriptionLabel' => __( 'Example with parameters:', 'betterdocs' ),
1728 - 'descriptionCopyable' => true
1729 - ],
1730 - 'faq_modern_layout' => [
1731 - 'name' => 'faq_modern_layout',
1732 - 'type' => 'copy-to-clipboard',
1733 - 'label' => __( 'FAQ Layout - 1', 'betterdocs' ),
1734 - 'default' => '[betterdocs_faq_list_modern]',
1735 - 'readOnly' => true,
1736 - 'priority' => 13,
1737 - 'description' => __( '[betterdocs_faq_list_modern groups="group_id" class="" group_exclude="group_id" faq_heading="Frequently Asked Questions"]', 'betterdocs' ),
1738 - 'descriptionLabel' => __( 'Example with parameters:', 'betterdocs' ),
1739 - 'descriptionCopyable' => true
1740 - ],
1741 - 'faq_classic_layout' => [
1742 - 'name' => 'faq_classic_layout',
1743 - 'type' => 'copy-to-clipboard',
1744 - 'label' => __( 'FAQ Layout - 2', 'betterdocs' ),
1745 - 'default' => '[betterdocs_faq_list_classic]',
1746 - 'readOnly' => true,
1747 - 'priority' => 14,
1748 - 'description' => __( '[betterdocs_faq_list_classic groups="group_id" class="" group_exclude="group_id" faq_heading="Frequently Asked Questions"]', 'betterdocs' ),
1749 - 'descriptionLabel' => __( 'Example with parameters:', 'betterdocs' ),
1750 - 'descriptionCopyable' => true
1751 - ],
1752 - 'betterdocs_faq_list_layout_3' => [
1753 - 'name' => 'betterdocs_faq_list_layout_3',
1754 - 'type' => 'copy-to-clipboard',
1755 - 'label' => __( 'FAQ Layout - 3', 'betterdocs' ),
1756 - 'default' => '[betterdocs_faq_list_layout_3 class="faq-doc betterdocs-faq-layout-3"]',
1757 - 'readOnly' => true,
1758 - 'priority' => 15,
1759 - 'description' => __( '[betterdocs_faq_list_layout_3 class="faq-doc betterdocs-faq-layout-3" groups="group_id" class="" group_exclude="group_id" faq_heading="Frequently Asked Questions"]', 'betterdocs' ),
1760 - 'descriptionLabel' => __( 'Example with parameters:', 'betterdocs' ),
1761 - 'descriptionCopyable' => true
1762 - ],
1763 - 'betterdocs_faq_tab' => [
1764 - 'name' => 'betterdocs_faq_tab',
1765 - 'type' => 'copy-to-clipboard',
1766 - 'label' => __( 'FAQ Layout - 4', 'betterdocs' ),
1767 - 'default' => '[betterdocs_faq_tab class="faq-doc betterdocs-faq-layout-4"]',
1768 - 'readOnly' => true,
1769 - 'priority' => 16,
1770 - 'description' => __( '[betterdocs_faq_tab class="faq-doc betterdocs-faq-layout-4" groups="group_id" group_exclude="group_id" faq_heading="Frequently Asked Questions"]', 'betterdocs' ),
1771 - 'descriptionLabel' => __( 'Example with parameters:', 'betterdocs' ),
1772 - 'descriptionCopyable' => true
1773 - ]
1774 - ] )
1775 - ]
1776 - ]
1777 - ] ),
1778 - 'tab-advance-settings' => apply_filters( 'betterdocs_settings_tab_advance', [
1779 - 'id' => 'tab-advance-settings',
1780 - 'label' => __( 'Access & Restrictions', 'betterdocs' ),
1781 - 'classes' => 'tab-layout',
1782 - 'priority' => 50,
1783 - 'fields' => [
1784 - 'title_advance_settings' => [
1785 - 'name' => 'title-advance-settings-tab',
1786 - 'type' => 'section',
1787 - 'label' => __( 'Access & Restrictions', 'betterdocs' ),
1788 - 'priority' => 50,
1789 - 'fields' => [
1790 - 'tab-advanced-settings' => [
1791 - 'id' => 'tab-advanced-settings',
1792 - 'name' => 'tab-advanced-settings',
1793 - 'label' => __( 'Access & Restrictions', 'betterdocs' ),
1794 - 'classes' => 'tab-layout',
1795 - 'type' => 'tab',
1796 - 'active' => 'global_role_management',
1797 - 'completionTrack' => true,
1798 - 'sidebar' => false,
1799 - 'save' => false,
1800 - 'title' => false,
1801 - 'config' => [
1802 - 'active' => '',
1803 - 'sidebar' => false,
1804 - 'title' => false
1805 - ],
1806 - 'submit' => [
1807 - 'show' => false
1808 - ],
1809 - 'step' => [
1810 - 'show' => false
1811 - ],
1812 - 'priority' => 50,
1813 - 'fields' => [
1814 - 'global_role_management' => [
1815 - 'id' => 'global_role_management',
1816 - 'name' => 'global_role_management',
1817 - 'type' => 'section',
1818 - 'label' => __( 'Global Role Management', 'betterdocs' ),
1819 - 'priority' => 1,
1820 - 'fields' => [
1821 - 'article_roles' => [
1822 - 'name' => 'article_roles',
1823 - 'type' => 'checkbox-select',
1824 - 'label' => __( 'Who Can Write Docs?', 'betterdocs' ),
1825 - 'priority' => 1,
1826 - 'multiple' => true,
1827 - 'search' => true,
1828 - 'is_pro' => true,
1829 - 'default' => [ 'administrator' ],
1830 - 'options' => $wp_roles
1831 - ],
1832 - 'settings_roles' => [
1833 - 'name' => 'settings_roles',
1834 - 'type' => 'checkbox-select',
1835 - 'label' => __( 'Who Can Edit Settings?', 'betterdocs' ),
1836 - 'priority' => 2,
1837 - 'multiple' => true,
1838 - 'is_pro' => true,
1839 - 'search' => true,
1840 - 'default' => [ 'administrator' ],
1841 - 'options' => $wp_roles
1842 - ],
1843 - 'analytics_roles' => [
1844 - 'name' => 'analytics_roles',
1845 - 'type' => 'checkbox-select',
1846 - 'label' => __( 'Who Can Check Analytics?', 'betterdocs' ),
1847 - 'priority' => 3,
1848 - 'multiple' => true,
1849 - 'is_pro' => true,
1850 - 'search' => true,
1851 - 'default' => [ 'administrator' ],
1852 - 'options' => $wp_roles
1853 - ],
1854 - 'faq_roles' => [
1855 - 'name' => 'faq_roles',
1856 - 'type' => 'checkbox-select',
1857 - 'label' => __( 'Who Can Check FAQ Builder?', 'betterdocs' ),
1858 - 'priority' => 4,
1859 - 'multiple' => true,
1860 - 'is_pro' => true,
1861 - 'search' => true,
1862 - 'default' => [ 'administrator' ],
1863 - 'options' => $wp_roles
1864 - ],
785 + $roles_for_ikb = $this->normalize_options( array_merge( array( 'all' => __( 'All logged in users', 'betterdocs' ) ), wp_roles()->role_names ) );
1865 786
1866 - ]
1867 - ],
1868 - 'internal_knowledge_base' => [
1869 - 'id' => 'internal_knowledge_base',
1870 - 'name' => 'internal_knowledge_base',
1871 - 'type' => 'section',
1872 - 'label' => __('Internal Knowledge Base', 'betterdocs'),
1873 - 'priority' => 1,
1874 - 'fields' => apply_filters('betterdocs_settings_content_restriction_fields', [
1875 - 'enable_content_restriction' => [
1876 - 'name' => 'enable_content_restriction',
1877 - 'type' => 'toggle',
1878 - 'is_pro' => true,
1879 - 'priority' => 5,
1880 - 'label' => __( 'Internal Knowledge Base', 'betterdocs' ),
1881 - 'enable_disable_text_active' => true,
1882 - 'default' => [ 'all' ]
1883 - ],
1884 - 'internal_knowledge_base_type' => [
1885 - 'name' => 'internal_knowledge_base_type',
1886 - 'type' => 'radio-card',
1887 - 'label' => __( 'Choose a Rule Type', 'betterdocs' ),
1888 - 'label_subtitle' => __( 'Choose a rule type: apply access globally (Basic), or configure detailed restrictions (Advanced) for docs, categories, and KBs.', 'betterdocs' ),
1889 - 'priority' => 6,
1890 - 'multiple' => true,
1891 - 'search' => true,
1892 - 'default' => [ 'all' ],
1893 - 'placeholder' => __( 'Select any', 'betterdocs' ),
1894 - 'options' => [
1895 - [
1896 - 'label' => 'Basic',
1897 - 'value' => 'basic'
1898 - ],
1899 - [
1900 - 'label' => 'Advanced',
1901 - 'value' => 'advanced'
1902 - ]
1903 - ],
1904 - 'filterValue' => 'all',
1905 - 'rules' => Rules::is( 'enable_content_restriction', true )
1906 - ],
1907 - 'content_visibility' => [
1908 - 'name' => 'content_visibility',
1909 - 'type' => 'checkbox-select',
1910 - 'label' => __( 'Restrict Access to', 'betterdocs' ),
1911 - 'label_subtitle' => __( 'Only selected User Roles will be able to view your Knowledge Base', 'betterdocs' ),
1912 - 'is_pro' => true,
1913 - 'priority' => 7,
1914 - 'multiple' => true,
1915 - 'search' => true,
1916 - 'default' => [ 'all' ],
1917 - 'placeholder' => __( 'Select any', 'betterdocs' ),
1918 - 'options' => $roles_for_ikb,
1919 - 'rules' => Rules::logicalRule(
1920 - [
1921 - Rules::is( 'enable_content_restriction', true ),
1922 - Rules::is( 'internal_knowledge_base_type', 'basic' )
1923 - ],
1924 - 'and'
1925 - ),
1926 - 'filterValue' => 'all'
1927 - ],
1928 - 'restrict_template' => [
1929 - 'name' => 'restrict_template',
1930 - 'type' => 'checkbox-select',
1931 - 'label' => __( 'Restriction on Docs', 'betterdocs' ),
1932 - 'label_subtitle' => __( 'Selected Docs pages will be restricted', 'betterdocs' ),
1933 - 'is_pro' => true,
1934 - 'priority' => 8,
1935 - 'multiple' => true,
1936 - 'search' => true,
1937 - 'default' => [ 'all' ],
1938 - 'placeholder' => __( 'Select any', 'betterdocs' ),
1939 - 'options' => $this->get_texanomy(),
1940 - 'rules' => Rules::logicalRule(
1941 - [
1942 - Rules::is( 'enable_content_restriction', true ),
1943 - Rules::is( 'internal_knowledge_base_type', 'basic' )
1944 - ],
1945 - 'and'
1946 - ),
1947 - 'filterValue' => 'all'
1948 - ],
1949 - 'restrict_category' => [
1950 - 'name' => 'restrict_category',
1951 - 'type' => 'checkbox-select',
1952 - 'label' => __( 'Restriction on Docs Categories', 'betterdocs' ),
1953 - 'label_subtitle' => __( 'Selected Docs categories will be restricted', 'betterdocs' ),
1954 - 'is_pro' => true,
1955 - 'priority' => 9,
1956 - 'multiple' => true,
1957 - 'search' => true,
1958 - 'default' => [ 'all' ],
1959 - 'placeholder' => __( 'Select any', 'betterdocs' ),
1960 - 'options' => $this->get_terms( 'doc_category' ),
1961 - 'rules' => Rules::logicalRule(
1962 - [
1963 - Rules::is( 'enable_content_restriction', true ),
1964 - Rules::is( 'internal_knowledge_base_type', 'basic' )
1965 - ],
1966 - 'and'
1967 - ),
1968 - 'filterValue' => 'all'
1969 - ],
1970 - 'restricted_redirect_url' => [
1971 - 'name' => 'restricted_redirect_url',
1972 - 'type' => 'text',
1973 - 'label' => __( 'Redirect URL', 'betterdocs' ),
1974 - 'label_subtitle' => __( 'Set a custom URL to redirect users without permissions when they try to access internal knowledge base. By default, restricted content will redirect to the "404 not found" page', 'betterdocs' ),
1975 - 'default' => '',
1976 - 'placeholder' => 'https://',
1977 - 'is_pro' => true,
1978 - 'priority' => 20,
1979 - 'rules' => Rules::logicalRule(
1980 - [
1981 - Rules::is( 'enable_content_restriction', true ),
1982 - ],
1983 - 'and'
1984 - )
1985 - ]
1986 - ] )
1987 - ]
1988 - ]
1989 - ]
1990 - ]
1991 - ]
1992 - ]
1993 - ] ),
1994 - 'tab-email-reporting' => apply_filters( 'betterdocs_settings_tab_email_reporting', [
1995 - 'id' => 'tab-email-reporting',
1996 - 'label' => __( 'Email Reporting', 'betterdocs' ),
1997 - 'priority' => 60,
1998 - 'fields' => [
1999 - 'title-email-reporting' => [
2000 - 'name' => 'title-email-reporting-tab',
2001 - 'type' => 'section',
2002 - 'label' => __( 'Email Reporting', 'betterdocs' ),
2003 - 'priority' => 60,
2004 - 'fields' => [
2005 - 'enable_reporting' => [
2006 - 'name' => 'enable_reporting',
2007 - 'label' => __( 'Email Reporting', 'betterdocs' ),
2008 - 'enable_disable_text_active' => true,
2009 - 'type' => 'toggle',
2010 - 'priority' => 1,
2011 - 'default' => 0
2012 - ],
2013 - 'reporting_frequency' => apply_filters( 'betterdocs_reporting_frequency_settings', [
2014 - 'name' => 'reporting_frequency',
2015 - 'type' => 'select',
2016 - 'label' => __( 'Reporting Frequency', 'betterdocs' ),
2017 - 'default' => 'betterdocs_weekly',
2018 - 'priority' => 2,
2019 - 'is_pro' => true,
2020 - 'options' => $this->normalize_options( [
2021 - 'betterdocs_daily' => __( 'Once Daily', 'betterdocs' ),
2022 - 'betterdocs_weekly' => __( 'Once Weekly', 'betterdocs' ),
2023 - 'betterdocs_monthly' => __( 'Once Monthly', 'betterdocs' )
2024 - ] ),
2025 - 'rules' => Rules::is( 'enable_reporting', true )
2026 - ] ),
2027 - 'reporting_day' => [
2028 - 'name' => 'reporting_day',
2029 - 'type' => 'select',
2030 - 'label' => __( 'Reporting Day', 'betterdocs' ),
2031 - 'default' => 'monday',
2032 - 'rules' => Rules::logicalRule( [
2033 - Rules::is( 'enable_reporting', true ),
2034 - Rules::is( 'reporting_frequency', 'betterdocs_weekly' )
2035 - ], 'and' ),
2036 - 'priority' => 3,
2037 - 'options' => $this->normalize_options( [
2038 - 'sunday' => __( 'Sunday', 'betterdocs' ),
2039 - 'monday' => __( 'Monday', 'betterdocs' ),
2040 - 'tuesday' => __( 'Tuesday', 'betterdocs' ),
2041 - 'wednesday' => __( 'Wednesday', 'betterdocs' ),
2042 - 'thursday' => __( 'Thursday', 'betterdocs' ),
2043 - 'friday' => __( 'Friday', 'betterdocs' ),
2044 - 'saturday' => __( 'Saturday', 'betterdocs' )
2045 - ] ),
2046 - 'label_subtitle' => __( 'This is only applicable for the “Weekly” report', 'betterdocs' )
2047 - ],
2048 - 'select_reporting_data' => apply_filters( 'betterdocs_select_reporting_data_settings', [
2049 - 'name' => 'select_reporting_data',
2050 - 'type' => 'checkbox-select',
2051 - 'label' => __( 'Select Reporting Data', 'betterdocs' ),
2052 - 'priority' => 4,
2053 - 'multiple' => true,
2054 - 'options' => $this->normalize_options( [
2055 - 'overview' => 'Overview',
2056 - 'top-docs' => 'Top Docs',
2057 - 'most-search' => 'Most Searched Keywords'
2058 - ] ),
2059 - 'default' => [ 'overview', 'top-docs', 'most-search' ],
2060 - 'is_pro' => true,
2061 - 'rules' => Rules::is( 'enable_reporting', true )
2062 - ] ),
2063 - 'reporting_email' => [
2064 - 'name' => 'reporting_email',
2065 - 'type' => 'text',
2066 - 'label' => __( 'Reporting Email', 'betterdocs' ),
2067 - 'default' => get_option( 'admin_email' ),
2068 - 'priority' => 5,
2069 - 'rules' => Rules::is( 'enable_reporting', true )
2070 - ],
2071 - 'reporting_subject' => apply_filters( 'betterdocs_reporting_subject_settings', [
2072 - 'name' => 'reporting_subject',
2073 - 'type' => 'textarea',
2074 - 'label' => __( 'Reporting Email Subject', 'betterdocs' ),
2075 - 'default' => wp_sprintf( // Translators: %s is replaced with the website name.
2076 - __( 'Your Documentation Performance of %s Website', 'betterdocs' ), get_bloginfo( 'name' ) ),
2077 - 'priority' => 6,
2078 - 'is_pro' => true,
2079 - 'rules' => Rules::is( 'enable_reporting', true )
2080 - ] ),
2081 - 'test_report' => [
2082 - 'name' => 'test_report',
2083 - 'label' => __( 'Reporting Test', 'betterdocs' ),
2084 - 'text' => __( 'Test Report', 'betterdocs' ),
2085 - 'type' => 'button',
2086 - 'priority' => 7,
2087 - 'rules' => Rules::is( 'enable_reporting', true ),
2088 - 'ajax' => [
2089 - 'on' => 'click',
2090 - 'api' => '/betterdocs/v1/reporting-test',
2091 - 'data' => [
2092 - 'enable_reporting' => '@enable_reporting',
2093 - 'select_reporting_data' => '@select_reporting_data',
2094 - 'reporting_subject' => '@reporting_subject',
2095 - 'reporting_email' => '@reporting_email',
2096 - 'reporting_day' => '@reporting_day',
2097 - 'reporting_frequency' => '@reporting_frequency'
2098 - ],
2099 - 'swal' => [
2100 - 'text' => __( 'Successfully Sent a Test Report in Your Email.', 'betterdocs' ),
2101 - 'icon' => 'success',
2102 - 'autoClose' => 2000
2103 - ]
2104 - ]
2105 - ]
2106 - ]
2107 - ]
2108 - ]
2109 - ] ),
2110 - 'tab-git-sync' => apply_filters( 'betterdocs_settings_tab_github_integration', [
2111 - 'id' => 'tab-git-sync',
2112 - 'label' => __( 'Git Sync', 'betterdocs' ),
2113 - 'priority' => 60,
2114 - 'fields' => [
2115 - 'title-git-sync' => [
2116 - 'name' => 'title-git-sync-tab',
2117 - 'type' => 'section',
2118 - 'label' => __( 'Git Sync Settings', 'betterdocs' ),
2119 - 'priority' => 60,
2120 - 'fields' => [
2121 - 'enable_git_integration' => [
2122 - 'name' => 'enable_git_integration',
2123 - 'type' => 'toggle',
2124 - 'label' => __( 'Enable Git Sync', 'betterdocs' ),
2125 - 'enable_disable_text_active' => true,
2126 - 'default' => false,
2127 - 'priority' => 1,
2128 - 'is_pro' => true,
2129 - 'label_subtitle' => __( 'Enable bidirectional synchronization between BetterDocs and Git repositories', 'betterdocs' )
2130 - ]
2131 - ]
2132 - ]
2133 - ]
2134 - ] ),
2135 - 'tab-instant-answer' => apply_filters( 'betterdocs_settings_tab_instant_answer', [
2136 - 'id' => 'tab-instant-answer',
2137 - 'name' => 'tab-instant-answer',
2138 - 'type' => 'section',
2139 - 'label' => __( 'Instant Answer', 'betterdocs' ),
2140 - 'save' => false,
2141 - 'priority' => 70,
2142 - 'fields' => [
2143 - 'title-instant-answer' => [
2144 - 'name' => 'title-instant-answer-tab',
2145 - 'type' => 'section',
2146 - 'label' => __( 'Instant Answer', 'betterdocs' ),
2147 - 'priority' => 80,
2148 - 'save' => false,
2149 - 'showSubmit' => false,
2150 - 'fields' => apply_filters( 'betterdocs_instant_answer_fields', [
2151 - 'enable_disable_wrapper' => [
2152 - 'name' => 'enable_disable_wrapper',
2153 - 'type' => 'section',
2154 - 'priority' => 0,
2155 - 'save' => false,
2156 - 'fields' => [
2157 - 'enable_disable' => [
2158 - 'name' => 'enable_disable',
2159 - 'type' => 'toggle',
2160 - 'priority' => 100,
2161 - 'description' => __( 'Enable Instant Answer', 'betterdocs' ),
2162 - 'enable_disable_text_active' => false,
2163 - 'default' => false,
2164 - 'is_pro' => true
2165 - ]
2166 - ]
2167 - ]
2168 - ] )
2169 - ]
2170 - ]
2171 - ] ),
2172 - 'tab-betterdocs-ai' => [
2173 - 'id' => 'tab-betterdocs-ai',
2174 - 'name' => 'tab-betterdocs-ai',
2175 - 'type' => 'section',
2176 - 'label' => __( 'AI Content Suite', 'betterdocs' ),
2177 - 'priority' => 74,
2178 - 'fields' => [
2179 - 'sections-betterdocs-ai' => [
2180 - 'name' => 'sections-betterdocs-ai',
2181 - 'type' => 'section',
2182 - 'label' => __( 'AI Content Suite', 'betterdocs' ),
2183 - 'priority' => 10,
2184 - 'fields' => [
2185 - 'all-betterdocs-ai' => [
2186 - 'id' => 'all-tab-betterdocs-ai',
2187 - 'name' => 'all-tab-betterdocs-ai',
2188 - 'label' => __( 'AI Content Suite Settings', 'betterdocs' ),
2189 - 'classes' => 'tab-layout',
2190 - 'type' => 'tab',
2191 - 'active' => 'open-ai-settings',
2192 - 'completionTrack' => true,
2193 - 'sidebar' => false,
2194 - 'save' => false,
2195 - 'title' => false,
2196 - 'config' => [
2197 - 'active' => 'open-ai-settings',
2198 - 'sidebar' => false,
2199 - 'title' => false
2200 - ],
2201 - 'submit' => [
2202 - 'show' => false
2203 - ],
2204 - 'step' => [
2205 - 'show' => false
2206 - ],
2207 - 'priority' => 20,
2208 - 'fields' => apply_filters(
2209 - 'betterdocs_migration_tab_sections',
2210 - [
2211 - 'open-ai-settings' => [
2212 - 'id' => 'open-ai-settings',
2213 - 'name' => 'open-ai-settings',
2214 - 'type' => 'section',
2215 - 'label' => __( 'API Settings', 'betterdocs' ),
2216 - 'priority' => 1,
2217 - 'fields' => [
2218 - 'ai_autowrite_api_key' => [
2219 - 'name' => 'ai_autowrite_api_key',
2220 - 'type' => 'text',
2221 - 'label' => __( 'API Key', 'betterdocs' ),
2222 - 'label_subtitle' => sprintf( /* translators: %s is a link to the documentation about generating an OpenAI API key. */ __( 'Check out this <a target="_blank" href="%s">documentation</a> to find out how to generate your OpenAI API Key.', 'betterdocs' ), esc_url( 'https://betterdocs.co/docs/write-with-ai/' ) ),
2223 - 'default' => '',
2224 - 'priority' => 1
2225 - ],
2226 - ]
2227 - ],
2228 - 'write-with-ai' => [
2229 - 'id' => 'write-with-ai',
2230 - 'name' => 'write-with-ai',
2231 - 'type' => 'section',
2232 - 'label' => __( 'Write with AI', 'betterdocs' ),
2233 - 'priority' => 5,
2234 - 'fields' => [
2235 - 'enable_write_with_ai' => [
2236 - 'name' => 'enable_write_with_ai',
2237 - 'type' => 'toggle',
2238 - 'priority' => 0,
2239 - 'label' => __( 'Write Docs with AI', 'betterdocs' ),
2240 - 'label_subtitle' => __( 'Generate AI based Documentation in your Gutenberg Editor', 'betterdocs' ),
2241 - 'enable_disable_text_active' => true,
2242 - 'default' => true
2243 - ],
2244 - 'enable_faq_write_with_ai' => [
2245 - 'name' => 'enable_faq_write_with_ai',
2246 - 'type' => 'toggle',
2247 - 'priority' => 5,
2248 - 'label' => __( 'Write FAQ with AI', 'betterdocs' ),
2249 - 'label_subtitle' => __( 'Generate AI based FAQ in your Editor', 'betterdocs' ),
2250 - 'enable_disable_text_active' => true,
2251 - 'default' => true
2252 - ],
2253 - 'enable_glossaries_write_with_ai' => [
2254 - 'name' => 'enable_glossaries_write_with_ai',
2255 - 'type' => 'toggle',
2256 - 'priority' => 6,
2257 - 'label' => __( 'Write Glossaries with AI', 'betterdocs' ),
2258 - 'label_subtitle' => __( 'Generate AI based Glossary definitions from the Glossaries admin page', 'betterdocs' ),
2259 - 'enable_disable_text_active' => true,
2260 - 'default' => true
2261 - ],
2262 - 'write_with_ai_model' => [
2263 - 'name' => 'write_with_ai_model',
2264 - 'type' => 'select',
2265 - 'label' => __( 'OpenAI Model*', 'betterdocs' ),
2266 - 'priority' => 20,
2267 - 'multiple' => false,
2268 - 'default' => 'gpt-4o-mini',
2269 - 'options' => GlobalFields::normalize_fields( [
2270 - 'gpt-4o-mini' => 'GPT-4o Mini',
2271 - 'gpt-4o' => 'GPT-4o',
2272 - ] ),
2273 - ],
2274 - 'ai_autowrite_max_token' => [
2275 - 'name' => 'ai_autowrite_max_token',
2276 - 'type' => 'number',
2277 - 'label' => __( 'Set Max Tokens', 'betterdocs' ),
2278 - 'label_subtitle' => sprintf( // translators: %s is a link to more information about token limits.
2279 - __( 'Documentation will be generated based on the Token Limits you have set. For more information on Token Limits, you can check out this <a target="_blank" href="%s">link</a>.', 'betterdocs' ), esc_url( 'https://platform.openai.com/account/limits' ) ),
2280 - 'default' => 1500,
2281 - 'priority' => 10
2282 - ],
2283 - ]
2284 - ],
2285 - 'article-summary' => [
2286 - 'id' => 'article-summary',
2287 - 'name' => 'article-summary',
2288 - 'type' => 'section',
2289 - 'label' => __( 'AI Doc Summarizer', 'betterdocs' ),
2290 - 'priority' => 10,
2291 - 'fields' => [
2292 - 'enable_article_summary' => [
2293 - 'name' => 'enable_article_summary',
2294 - 'type' => 'toggle',
2295 - 'priority' => 1,
2296 - 'label' => __( 'AI Powered Doc Summarizer', 'betterdocs' ),
2297 - 'label_subtitle' => __( 'Enable AI-powered article summaries on single doc pages. Requires OpenAI API key.', 'betterdocs' ),
2298 - 'enable_disable_text_active' => true,
2299 - 'default' => false
2300 - ],
2301 - 'article_summary_max_token' => [
2302 - 'name' => 'article_summary_max_token',
2303 - 'type' => 'number',
2304 - 'label' => __( 'Set Max Tokens', 'betterdocs' ),
2305 - 'label_subtitle' => sprintf( // translators: %s is a link to more information about token limits.
2306 - __( 'Single Doc summarizer will be generated based on the token limits you have set. For more information on Token Limits, you can check out this <a target="_blank" href="%s">link</a>.', 'betterdocs' ), esc_url( 'https://platform.openai.com/account/limits' ) ),
2307 - 'default' => 1500,
2308 - 'priority' => 5
2309 - ],
2310 - 'article_summary_model' => [
2311 - 'name' => 'article_summary_model',
2312 - 'type' => 'select',
2313 - 'label' => __( 'OpenAI Model*', 'betterdocs' ),
2314 - 'priority' => 10,
2315 - 'multiple' => false,
2316 - 'default' => 'gpt-4o-mini',
2317 - 'options' => GlobalFields::normalize_fields( [
2318 - 'gpt-4o-mini' => 'GPT-4o Mini',
2319 - 'gpt-4o' => 'GPT-4o',
2320 - ] ),
2321 - ],
2322 - ]
2323 - ],
2324 - ]
2325 - )
2326 - ]
2327 - ]
2328 - ]
2329 - ],
2330 - ],
2331 - 'tab-ai-chatbot' => apply_filters( 'betterdocs_settings_tab_ai_chatbot', [
2332 - 'id' => 'tab-ai-chatbot',
2333 - 'name' => 'tab-ai-chatbot',
2334 - 'type' => 'section',
2335 - 'label' => __( 'AI Chatbot', 'betterdocs' ),
2336 - 'submit' => [
2337 - 'show' => false
2338 - ],
2339 - 'save' => false,
2340 - 'priority' => 75,
2341 - 'fields' => [
2342 - 'title-ai-chatbot-tab' => [
2343 - 'name' => 'title-ai-chatbot-tab',
2344 - 'type' => 'section',
2345 - 'label' => __( 'AI Chatbot', 'betterdocs' ),
2346 - 'priority' => 80,
2347 - 'submit' => [
2348 - 'show' => false
2349 - ],
2350 - 'save' => false,
2351 - 'fields' => apply_filters( 'betterdocs_ai_chatbot_fields', [
2352 - 'ai_chatbot_fields' => [
2353 - 'name' => 'ai_chatbot_fields',
2354 - 'type' => 'section',
2355 - 'priority' => 0,
2356 - 'fields' => [
2357 - 'enable_ai_chatbot' => [
2358 - 'name' => 'enable_ai_chatbot',
2359 - 'label' => __( 'AI Chatbot', 'betterdocs' ),
2360 - 'description' => __( 'Enable AI Chatbot', 'betterdocs' ),
2361 - 'type' => 'toggle',
2362 - 'priority' => 5,
2363 - 'default' => 0,
2364 - 'is_pro' => true,
2365 - 'is_license_active' => false,
2366 - 'disabled' => ! betterdocs()->is_pro_active() || ! defined( 'BETTERDOCS_CHATBOT_FILE' )
2367 - ],
2368 - ]
2369 - ]
2370 - ] )
2371 - ]
2372 - ]
2373 - ] ),
2374 - ] ),
2375 - 'TAB_AI_CHATBOT' => get_option( 'enable_ai_chatbot' ),
2376 - 'CHATBOT_LICENSE' => get_option( 'betterdocs_chatbot_software__license_status' ),
2377 - 'PRO_ACTIVE' => is_plugin_active( 'betterdocs-pro/betterdocs-pro.php' ),
2378 - 'PRO_LICENSE' => get_option( 'betterdocs_pro_software__license_status' ),
2379 - ];
787 + unset( $roles_for_ikb[ 'administrator' ] );
2380 788
2381 - $settings = array_merge( $settings, $this->chatbot_active_localize() );
789 + $settings = array(
790 + 'id' => 'betterdocs_settings_metabox_wrapper',
791 + 'title' => __( 'betterdocs', 'betterdocs' ),
792 + 'object_types' => array( 'betterdocs' ),
793 + 'context' => 'normal',
794 + 'priority' => 'high',
795 + 'show_header' => false,
796 + 'tabnumber' => false,
797 + 'is_pro_active' => betterdocs()->is_pro_active(),
798 + 'logoURL' => betterdocs()->assets->icon( 'betterdocs-icon.svg', true ),
799 + 'layout' => 'vertical',
800 + 'config' => array(
801 + 'active' => 'tab-general',
802 + 'sidebar' => true,
803 + 'title' => false
804 + ),
805 + 'submit' => array(
806 + 'show' => true,
807 + 'label' => __( 'Save', 'betterdocs' ),
808 + 'loadingLabel' => __( 'Saving...', 'betterdocs' ),
809 + 'class' => 'save-settings',
810 + 'rules' => Rules::logicalRule( array(
811 + Rules::is( 'config.active', 'tab-design', true ),
812 + Rules::is( 'config.active', 'tab-shortcodes', true ),
813 + Rules::is( 'config.active', 'tab-instant-answer', true ),
814 + Rules::is( 'config.active', 'tab-import-export', true ),
815 + Rules::is( 'config.active', 'tab-migration', true )
816 + ), 'and' )
817 + ),
818 + 'values' => betterdocs()->is_pro_active() ? $this->get_all() : array_merge( $this->get_all(), $this->pro_settings_default_values() ),
819 + 'tabs' => apply_filters( 'betterdocs_settings_tabs', array(
820 + 'tab-general' => apply_filters( 'betterdocs_settings_tab_general', array(
821 + 'id' => 'tab-general',
822 + 'label' => __( 'General', 'betterdocs' ),
823 + 'classes' => 'tab-general',
824 + 'priority' => 10,
825 + 'fields' => array(
826 + 'title-general' => apply_filters( 'betterdocs_encyclopedia_settings', array(
827 + 'name' => 'title-general-tab',
828 + 'type' => 'section',
829 + 'label' => __( 'General Settings', 'betterdocs' ),
830 + 'priority' => 10,
831 + 'fields' => array(
832 + 'multiple_kb' => apply_filters( 'betterdocs_multi_kb_settings', array(
833 + 'name' => 'multiple_kb',
834 + 'type' => 'toggle',
835 + 'label' => __( 'Multiple Knowledge Base', 'betterdocs' ),
836 + 'enable_disable_text_active' => true,
837 + 'default' => '',
838 + 'priority' => 1,
839 + 'is_pro' => true
840 + ) ),
841 + 'builtin_doc_page' => array(
842 + 'name' => 'builtin_doc_page',
843 + 'type' => 'toggle',
844 + 'label' => __( 'Built-in Documentation Page', 'betterdocs' ),
845 + 'enable_disable_text_active' => true,
846 + 'default' => 1,
847 + 'priority' => 2
848 + ),
849 + 'enable_category_hierarchy_slugs' => array(
850 + 'name' => 'enable_category_hierarchy_slugs',
851 + 'type' => 'toggle',
852 + 'label' => __( 'Enable Category Hierarchy Slug', 'betterdocs' ),
853 + 'enable_disable_text_active' => true,
854 + 'default' => false,
855 + 'priority' => 3,
856 + 'label_subtitle' => __( "Shows Hierarchy Based Permalink Slugs For Doc Categories & Single Doc Page", 'betterdocs' )
857 + ),
858 + 'breadcrumb_doc_title' => array(
859 + 'name' => 'breadcrumb_doc_title',
860 + 'type' => 'text',
861 + 'label' => __( 'Documentation Page Title', 'betterdocs' ),
862 + 'default' => __( 'Docs', 'betterdocs' ),
863 + 'priority' => 4,
864 + 'rules' => Rules::is( 'builtin_doc_page', true )
865 + ),
866 + 'docs_slug' => array(
867 + 'name' => 'docs_slug',
868 + 'type' => 'text',
869 + 'label' => __( 'BetterDocs Root Slug', 'betterdocs' ),
870 + 'default' => 'docs',
871 + 'priority' => 5,
872 + 'rules' => Rules::is( 'builtin_doc_page', true )
873 + ),
874 + 'docs_page' => array(
875 + 'name' => 'docs_page',
876 + 'label' => __( 'Docs Page', 'betterdocs' ),
877 + 'type' => 'select',
878 + 'default' => 0,
879 + 'priority' => 6,
880 + 'search' => true,
881 + 'options' => $this->normalize_options( $this->get_pages() ),
882 + 'label_subtitle' => __( 'You will need to insert BetterDocs Shortcode inside the page. This page will be used as docs permalink.', 'betterdocs' ),
883 + 'rules' => Rules::is( 'builtin_doc_page', false )
884 + ),
2382 885
2383 - return apply_filters( 'betterdocs_settings_args', $settings );
2384 - }
886 + 'category_slug' => array(
887 + 'name' => 'category_slug',
888 + 'type' => 'text',
889 + 'label' => __( 'Custom Category Slug', 'betterdocs' ),
890 + 'default' => 'docs-category',
891 + 'priority' => 7
892 + ),
893 + 'tag_slug' => array(
894 + 'name' => 'tag_slug',
895 + 'type' => 'text',
896 + 'label' => __( 'Custom Tag Slug', 'betterdocs' ),
897 + 'default' => 'docs-tag',
898 + 'priority' => 8
899 + ),
900 + 'permalink_structure' => array(
901 + 'name' => 'permalink_structure',
902 + 'type' => 'permalink_structure',
903 + 'label' => __( 'Single Docs Permalink', 'betterdocs' ),
904 + 'default' => PostType::permalink_structure(),
905 + 'priority' => 9,
906 + 'tags' => $this->normalize_options( array(
907 + '%doc_category%' => '%doc_category%',
908 + '%knowledge_base%' => '%knowledge_base%'
909 + ) ),
910 + 'label_subtitle' => __( 'Make sure to keep Docs Root Slug in the Single Docs Permalink. You are not able to keep it blank. You can use the available tags from below.', 'betterdocs' )
911 + ),
912 + 'enable_glossaries' => array(
913 + 'name' => 'enable_glossaries',
914 + 'type' => 'toggle',
915 + 'label' => __( 'Show Glossary', 'betterdocs' ),
916 + 'label_subtitle' => __( 'Enable the glossary feature to allow users to look up definitions for terms used within your encyclopedia or glossaries themselves.', 'betterdocs' ),
917 + 'enable_disable_text_active' => true,
918 + 'default' => false,
919 + 'priority' => 10,
920 + 'is_pro' => true
921 + ),
922 + 'enable_encyclopedia' => array(
923 + 'name' => 'enable_encyclopedia',
924 + 'type' => 'toggle',
925 + 'label' => __( 'Built-in Encyclopedia Page', 'betterdocs' ),
926 + 'enable_disable_text_active' => true,
927 + 'default' => false,
928 + 'priority' => 11,
929 + 'is_pro' => true
930 + ),
931 + 'enable_faq_schema' => array(
932 + 'name' => 'enable_faq_schema',
933 + 'type' => 'toggle',
934 + 'label' => __( 'FAQ Schema', 'betterdocs' ),
935 + 'enable_disable_text_active' => true,
936 + 'default' => '',
937 + 'priority' => 12
938 + ),
939 + 'analytics_from' => array(
940 + 'name' => 'analytics_from',
941 + 'type' => 'select',
942 + 'label' => __( 'Analytics From', 'betterdocs' ),
943 + 'options' => $this->normalize_options( array(
944 + 'everyone' => __( 'Everyone', 'betterdocs' ),
945 + 'guests' => __( 'Guests Only', 'betterdocs' ),
946 + 'registered_users' => __( 'Registered Users Only', 'betterdocs' )
947 + ) ),
948 + 'default' => 'everyone',
949 + 'priority' => 13,
950 + 'is_pro' => true
951 + ),
952 + 'unique_visitor_count' => array(
953 + 'name' => 'unique_visitor_count',
954 + 'type' => 'toggle',
955 + 'label' => __( 'Unique Visitor Count', 'betterdocs' ),
956 + 'enable_disable_text_active' => true,
957 + 'default' => false,
958 + 'priority' => 14,
959 + 'is_pro' => true
960 + ),
961 + 'exclude_bot_analytics' => array(
962 + 'name' => 'exclude_bot_analytics',
963 + 'type' => 'toggle',
964 + 'label' => __( 'Exclude Bot Analytics', 'betterdocs' ),
965 + 'enable_disable_text_active' => true,
966 + 'default' => false,
967 + 'priority' => 15,
968 + 'is_pro' => true
969 + )
2385 970
2386 - /**
2387 - * @return array
2388 - */
2389 - public function chatbot_active_localize() {
2390 - $chatbot_active = is_plugin_active( 'betterdocs-ai-chatbot/betterdocs-ai-chatbot.php' );
2391 - $chatbot_license_valid = get_option( 'betterdocs_chatbot_software__license_status' ) === 'valid';
2392 - $chatbot_enabled = $this->get( 'enable_ai_chatbot', false );
971 + )
972 + ) )
973 + )
974 + ) ),
975 + 'tab-layout' => apply_filters( 'betterdocs_settings_tab_layout', array(
976 + 'id' => 'tab-layout',
977 + 'label' => __( 'Layout', 'betterdocs' ),
978 + 'classes' => 'tab-layout',
979 + 'priority' => 20,
980 + 'fields' => array(
981 + 'title-layout' => array(
982 + 'name' => 'title-layout-tab',
983 + 'type' => 'section',
984 + 'label' => __( 'Layout Settings', 'betterdocs' ),
985 + 'priority' => 20,
986 + 'fields' => array(
987 + 'tab-sidebar-layout' => apply_filters( 'betterdocs_settings_tab_sidebar_layout', array(
988 + 'id' => 'tab-sidebar-layout',
989 + 'name' => 'tab_sidebar_layout',
990 + 'label' => __( 'Layout Settings', 'betterdocs' ),
991 + 'classes' => 'tab-layout',
992 + 'type' => 'tab',
993 + 'active' => 'layout_documentation_page',
994 + 'completionTrack' => true,
995 + 'sidebar' => false,
996 + 'save' => false,
997 + 'title' => false,
998 + 'config' => array(
999 + 'active' => 'layout_documentation_page',
1000 + 'sidebar' => false,
1001 + 'title' => false
1002 + ),
1003 + 'submit' => array(
1004 + 'show' => false
1005 + ),
1006 + 'step' => array(
1007 + 'show' => false
1008 + ),
1009 + 'priority' => 20,
1010 + 'fields' => array(
1011 + 'layout_documentation_page' => array(
1012 + 'id' => 'layout_documentation_page',
1013 + 'name' => 'layout_documentation_page',
1014 + 'type' => 'section',
1015 + 'label' => __( 'Documentation Page', 'betterdocs' ),
1016 + 'priority' => 1,
1017 + 'fields' => array(
1018 + 'tab-nested-layout-1' => array(
1019 + 'id' => 'tab-nested-layout-1',
1020 + 'name' => 'tab_nested_layout_1',
1021 + 'label' => __( 'Documentation Page', 'betterdocs' ),
1022 + 'classes' => 'tab-nested-layout',
1023 + 'type' => 'tab',
1024 + 'active' => 'layout_documentation_page_general',
1025 + 'completionTrack' => true,
1026 + 'sidebar' => false,
1027 + 'save' => false,
1028 + 'title' => false,
1029 + 'config' => array(
1030 + 'active' => 'layout_documentation_page_general',
1031 + 'sidebar' => false,
1032 + 'title' => false
1033 + ),
1034 + 'submit' => array(
1035 + 'show' => false
1036 + ),
1037 + 'step' => array(
1038 + 'show' => false
1039 + ),
1040 + 'priority' => 1,
1041 + 'fields' => array(
1042 + 'layout_documentation_page_general' => array(
1043 + 'id' => 'layout_documentation_page_general',
1044 + 'name' => 'layout_documentation_page_general',
1045 + 'type' => 'section',
1046 + 'label' => __( 'General', 'betterdocs' ),
1047 + 'priority' => 1,
1048 + 'fields' => array(
1049 + 'docs_list_icon' => array(
1050 + 'name' => 'docs_list_icon',
1051 + 'type' => 'media',
1052 + 'value' => '',
1053 + 'label' => __( 'Docs List Icon', 'betterdocs' ),
1054 + 'label_subtitle' => __( 'Upload your own preferred document list icon', 'betterdocs' ),
1055 + 'priority' => 0
1056 + ),
1057 + 'category_title_link' => array(
1058 + 'name' => 'category_title_link',
1059 + 'type' => 'toggle',
1060 + 'label' => __( 'Category Title Link', 'betterdocs' ),
1061 + 'label_subtitle' => __( 'This setting is applicable for category grid layout', 'betterdocs' ),
1062 + 'enable_disable_text_active' => true,
1063 + 'default' => false,
1064 + 'priority' => 0
1065 + ),
1066 + 'masonry_layout' => array(
1067 + 'name' => 'masonry_layout',
1068 + 'type' => 'toggle',
1069 + 'label' => __( 'Masonry', 'betterdocs' ),
1070 + 'enable_disable_text_active' => true,
1071 + 'default' => 1,
1072 + 'priority' => 1
1073 + ),
1074 + 'archive_lazy_load_descendants' => array(
1075 + 'name' => 'archive_lazy_load_descendants',
1076 + 'type' => 'toggle',
1077 + 'label' => __( 'Lazy Load Sidebar Docs & Subcategories', 'betterdocs' ),
1078 + 'label_subtitle' => __( 'Applies to the Sidebar layout wherever it appears — single docs, category archives, and the Sidebar widget/block. Off by default: enable to render only the active category upfront and fetch the rest on click (or on scroll for the Memphis layout), cutting initial HTML size on large knowledge bases.', 'betterdocs' ),
1079 + 'enable_disable_text_active' => true,
1080 + 'default' => false,
1081 + 'priority' => 2
1082 + ),
1083 + 'nested_subcategory' => array(
1084 + 'name' => 'nested_subcategory',
1085 + 'type' => 'toggle',
1086 + 'label' => __( 'Nested Sub Category', 'betterdocs' ),
1087 + 'enable_disable_text_active' => true,
1088 + 'default' => '',
1089 + 'priority' => 3
1090 + ),
1091 + 'column_number' => array(
1092 + 'name' => 'column_number',
1093 + 'type' => 'number',
1094 + 'label' => __( 'Number Of Columns', 'betterdocs' ),
1095 + 'label_subtitle' => __( 'This setting is not applicable for sleek layout.', 'betterdocs' ),
1096 + 'default' => 3,
1097 + 'priority' => 4
1098 + ),
1099 + 'posts_number' => apply_filters( 'betterdocs_posts_number', array(
1100 + 'name' => 'posts_number',
1101 + 'type' => 'number',
1102 + 'label' => __( 'Number Of Docs', 'betterdocs' ),
1103 + 'label_subtitle' => __( 'This setting is not applicable for handbook layout.', 'betterdocs' ),
1104 + 'default' => 10,
1105 + 'priority' => 5
1106 + ) ),
1107 + 'post_count' => array(
1108 + 'name' => 'post_count',
1109 + 'type' => 'toggle',
1110 + 'label' => __( 'Doc Count', 'betterdocs' ),
1111 + 'enable_disable_text_active' => true,
1112 + 'default' => 1,
1113 + 'priority' => 6
1114 + ),
1115 + 'count_text' => array(
1116 + 'name' => 'count_text',
1117 + 'type' => 'text',
1118 + 'label' => __( 'Count Text', 'betterdocs' ),
1119 + 'default' => __( 'Docs', 'betterdocs' ),
1120 + 'priority' => 7
1121 + ),
1122 + 'count_text_singular' => array(
1123 + 'name' => 'count_text_singular',
1124 + 'type' => 'text',
1125 + 'label' => __( 'Count Text Singular', 'betterdocs' ),
1126 + 'default' => __( 'Doc', 'betterdocs' ),
1127 + 'priority' => 8
1128 + ),
1129 + 'exploremore_btn' => array(
1130 + 'name' => 'exploremore_btn',
1131 + 'type' => 'toggle',
1132 + 'label' => __( 'Explore More Button', 'betterdocs' ),
1133 + 'enable_disable_text_active' => true,
1134 + 'default' => true,
1135 + 'priority' => 9
1136 + ),
1137 + 'exploremore_btn_txt' => array(
1138 + 'name' => 'exploremore_btn_txt',
1139 + 'type' => 'text',
1140 + 'label' => __( 'Explore More Button Text', 'betterdocs' ),
1141 + 'default' => __( 'Explore More', 'betterdocs' ),
1142 + 'priority' => 10,
1143 + 'rules' => Rules::is( 'exploremore_btn', true )
1144 + ),
1145 + 'betterdocs_popular_docs_text' => array(
1146 + 'name' => 'betterdocs_popular_docs_text',
1147 + 'type' => 'text',
1148 + 'label' => __( 'Popular Docs Text', 'betterdocs' ),
1149 + 'default' => __( 'Popular Docs', 'betterdocs' ),
1150 + 'priority' => 11,
1151 + 'is_pro' => true
1152 + ),
1153 + 'betterdocs_popular_docs_number' => array(
1154 + 'name' => 'betterdocs_popular_docs_number',
1155 + 'type' => 'number',
1156 + 'label' => __( 'Popular Docs Number', 'betterdocs' ),
1157 + 'default' => 10,
1158 + 'priority' => 12,
1159 + 'is_pro' => true
1160 + )
1161 + )
1162 + ),
1163 + 'layout_documentation_page_search' => array(
1164 + 'id' => 'layout_documentation_page_search',
1165 + 'name' => 'layout_documentation_page_search',
1166 + 'type' => 'section',
1167 + 'label' => __( 'Search', 'betterdocs' ),
1168 + 'priority' => 2,
1169 + 'fields' => array(
1170 + 'live_search' => array(
1171 + 'name' => 'live_search',
1172 + 'type' => 'toggle',
1173 + 'label' => __( 'Live Search', 'betterdocs' ),
1174 + 'enable_disable_text_active' => true,
1175 + 'default' => 1,
1176 + 'priority' => 1
1177 + ),
1178 + 'advance_search' => apply_filters( 'betterdocs_advance_search_settings', array(
1179 + 'name' => 'advance_search',
1180 + 'type' => 'toggle',
1181 + 'label' => __( 'Advanced Search', 'betterdocs' ),
1182 + 'enable_disable_text_active' => true,
1183 + 'default' => '',
1184 + 'priority' => 2,
1185 + 'is_pro' => true
1186 + ) ),
1187 + // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound -- legacy public filter name for category-exclude settings field, retained for back-compat.
1188 + 'child_category_exclude' => apply_filters( 'child_category_exclude', array(
1189 + 'name' => 'child_category_exclude',
1190 + 'type' => 'toggle',
1191 + 'label' => __( 'Exclude Child Terms In Category Search', 'betterdocs' ),
1192 + 'enable_disable_text_active' => true,
1193 + 'default' => '',
1194 + 'priority' => 3,
1195 + 'is_pro' => true
1196 + ) ),
1197 + 'popular_keyword_limit' => apply_filters( 'betterdocs_popular_keyword_limit_settings', array(
1198 + 'name' => 'popular_keyword_limit',
1199 + 'type' => 'number',
1200 + 'label' => __( 'Minimum amount of Keywords Search', 'betterdocs' ),
1201 + 'default' => 5,
1202 + 'priority' => 4,
1203 + 'is_pro' => true
1204 + ) ),
1205 + 'search_letter_limit' => array(
1206 + 'name' => 'search_letter_limit',
1207 + 'type' => 'number',
1208 + 'label' => __( 'Minimum Character Limit For Search Result', 'betterdocs' ),
1209 + 'priority' => 5,
1210 + 'default' => 3
1211 + ),
1212 + 'search_placeholder' => array(
1213 + 'name' => 'search_placeholder',
1214 + 'type' => 'text',
1215 + 'label' => __( 'Search Placeholder', 'betterdocs' ),
1216 + 'default' => __( 'Search..', 'betterdocs' ),
1217 + 'priority' => 6
1218 + ),
1219 + 'search_button_text' => apply_filters( 'betterdocs_search_button_text', array(
1220 + 'name' => 'search_button_text',
1221 + 'type' => 'text',
1222 + 'label' => __( 'Search Button Text', 'betterdocs' ),
1223 + 'priority' => 7,
1224 + 'default' => __( 'Search', 'betterdocs' )
1225 + ) ),
1226 + 'search_not_found_text' => array(
1227 + 'name' => 'search_not_found_text',
1228 + 'type' => 'text',
1229 + 'label' => __( 'Search Not Found Text', 'betterdocs' ),
1230 + 'default' => 'Sorry, no docs were found.',
1231 + 'priority' => 8
1232 + ),
1233 + 'search_result_image' => array(
1234 + 'name' => 'search_result_image',
1235 + 'type' => 'toggle',
1236 + 'label' => __( 'Search Result Image', 'betterdocs' ),
1237 + 'enable_disable_text_active' => true,
1238 + 'default' => 1,
1239 + 'priority' => 9
1240 + ),
1241 + 'kb_based_search' => apply_filters( 'betterdocs_kb_based_search_settings', array(
1242 + 'name' => 'kb_based_search',
1243 + 'type' => 'toggle',
1244 + 'label' => __( 'KB Based Search', 'betterdocs' ),
1245 + 'enable_disable_text_active' => true,
1246 + 'default' => '',
1247 + 'priority' => 10,
1248 + 'is_pro' => true,
1249 + 'rules' => Rules::is( 'multiple_kb', true )
1250 + ) ),
1251 + 'search_modal_search_type' => array(
1252 + 'name' => 'search_modal_search_type',
1253 + 'type' => 'select',
1254 + 'label' => __( 'Search Modal Source', 'betterdocs' ),
1255 + 'label_subtitle' => __( 'Choose the content type to be shown in the search modal. <br> <b>Note:</b> This is only applicable on Modal Search.', 'betterdocs' ),
1256 + 'default' => 'all',
1257 + 'options' => $this->normalize_options( array(
1258 + 'all' => __( 'Both (Docs + FAQs)', 'betterdocs' ),
1259 + 'docs' => __( 'Docs only', 'betterdocs' ),
1260 + 'faq' => __( 'FAQs only', 'betterdocs' )
1261 + ) ),
1262 + 'priority' => 11
1263 + )
1264 + )
1265 + ),
1266 + 'layout_documentation_page_order_by' => array(
1267 + 'id' => 'layout_documentation_page_order_by',
1268 + 'name' => 'layout_documentation_page_order_by',
1269 + 'type' => 'section',
1270 + 'label' => __( 'Order By', 'betterdocs' ),
1271 + 'priority' => 3,
1272 + 'fields' => array(
1273 + 'terms_orderby' => array(
1274 + 'name' => 'terms_orderby',
1275 + 'type' => 'select',
1276 + 'label' => __( 'Terms Order By', 'betterdocs' ),
1277 + 'default' => 'betterdocs_order',
1278 + 'options' => $this->normalize_options( apply_filters( 'betterdocs_terms_orderby_options', array(
1279 + 'none' => __( 'No order', 'betterdocs' ),
1280 + 'name' => __( 'Name', 'betterdocs' ),
1281 + 'slug' => __( 'Slug', 'betterdocs' ),
1282 + 'term_group' => __( 'Term Group', 'betterdocs' ),
1283 + 'term_id' => __( 'Term ID', 'betterdocs' ),
1284 + 'id' => __( 'ID', 'betterdocs' ),
1285 + 'description' => __( 'Description', 'betterdocs' ),
1286 + 'parent' => __( 'Parent', 'betterdocs' ),
1287 + 'betterdocs_order' => __( 'BetterDocs Order', 'betterdocs' )
1288 + ) ) ),
1289 + 'priority' => 1
1290 + ),
1291 + 'terms_order' => array(
1292 + 'name' => 'terms_order',
1293 + 'type' => 'select',
1294 + 'label' => __( 'Terms Order', 'betterdocs' ),
1295 + 'default' => 'ASC',
1296 + 'options' => $this->normalize_options( array(
1297 + 'ASC' => 'Ascending',
1298 + 'DESC' => 'Descending'
1299 + ) ),
1300 + 'priority' => 3,
1301 + 'rules' => Rules::includes( 'terms_orderby', 'betterdocs_order', true )
1302 + ),
1303 + 'alphabetically_order_post' => array(
1304 + 'name' => 'alphabetically_order_post',
1305 + 'type' => 'select',
1306 + 'label' => __( 'Docs Order By', 'betterdocs' ),
1307 + 'default' => 'betterdocs_order',
1308 + 'options' => $this->normalize_options( array(
1309 + 'none' => __( 'No order', 'betterdocs' ),
1310 + 'ID' => __( 'Docs ID', 'betterdocs' ),
1311 + 'author' => __( 'Docs Author', 'betterdocs' ),
1312 + 'title' => __( 'Title', 'betterdocs' ),
1313 + 'date' => __( 'Date', 'betterdocs' ),
1314 + 'modified' => __( 'Last Modified Date', 'betterdocs' ),
1315 + 'parent' => __( 'Parent Id', 'betterdocs' ),
1316 + 'rand' => __( 'Random', 'betterdocs' ),
1317 + 'comment_count' => __( 'Comment Count', 'betterdocs' ),
1318 + 'menu_order' => __( 'Menu Order', 'betterdocs' ),
1319 + 'betterdocs_order' => __( 'BetterDocs Order', 'betterdocs' )
1320 + ) ),
1321 + 'priority' => 4
1322 + ),
1323 + 'docs_order' => array(
1324 + 'name' => 'docs_order',
1325 + 'type' => 'select',
1326 + 'label' => __( 'Docs Order', 'betterdocs' ),
1327 + 'default' => 'ASC',
1328 + 'options' => $this->normalize_options( array(
1329 + 'ASC' => 'Ascending',
1330 + 'DESC' => 'Descending'
1331 + ) ),
1332 + 'priority' => 5,
1333 + 'rules' => Rules::includes( 'alphabetically_order_post', 'betterdocs_order', true )
1334 + )
1335 + )
1336 + )
1337 + )
1338 + )
1339 + )
1340 + ),
1341 + // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound -- legacy public filter name for single-doc setting section, retained for back-compat.
1342 + 'layout_single_doc' => apply_filters( 'single_doc_setting_section', array(
1343 + 'id' => 'layout_single_doc',
1344 + 'name' => 'layout_single_doc',
1345 + 'type' => 'section',
1346 + 'label' => __( 'Single Doc', 'betterdocs' ),
1347 + 'priority' => 2,
1348 + 'fields' => array(
1349 + 'tab-nested-layout-2' => array(
1350 + 'id' => 'tab-nested-layout-2',
1351 + 'name' => 'tab_nested_layout_2',
1352 + 'label' => __( 'Single Doc', 'betterdocs' ),
1353 + 'classes' => 'tab-nested-layout',
1354 + 'type' => 'tab',
1355 + 'active' => 'layout_single_doc_general',
1356 + 'completionTrack' => true,
1357 + 'sidebar' => false,
1358 + 'save' => false,
1359 + 'title' => false,
1360 + 'config' => array(
1361 + 'active' => 'layout_single_doc_general',
1362 + 'sidebar' => false,
1363 + 'title' => false
1364 + ),
1365 + 'submit' => array(
1366 + 'show' => false
1367 + ),
1368 + 'step' => array(
1369 + 'show' => false
1370 + ),
1371 + 'priority' => 20,
1372 + 'fields' => array(
1373 + 'layout_single_doc_general' => array(
1374 + 'id' => 'layout_single_doc_general',
1375 + 'name' => 'layout_single_doc_general',
1376 + 'type' => 'section',
1377 + 'label' => __( 'General', 'betterdocs' ),
1378 + 'priority' => 5,
1379 + 'fields' => array(
1380 + 'enable_post_title' => array(
1381 + 'name' => 'enable_post_title',
1382 + 'type' => 'toggle',
1383 + 'label' => __( 'Doc Title', 'betterdocs' ),
1384 + 'enable_disable_text_active' => true,
1385 + 'default' => 1,
1386 + 'priority' => 1
1387 + ),
1388 + 'enable_sidebar_cat_list' => array(
1389 + 'name' => 'enable_sidebar_cat_list',
1390 + 'type' => 'toggle',
1391 + 'label' => __( 'Sidebar Category List', 'betterdocs' ),
1392 + 'enable_disable_text_active' => true,
1393 + 'default' => 1,
1394 + 'priority' => 2
1395 + ),
1396 + 'enable_print_icon' => array(
1397 + 'name' => 'enable_print_icon',
1398 + 'type' => 'toggle',
1399 + 'label' => __( 'Print Icon', 'betterdocs' ),
1400 + 'enable_disable_text_active' => true,
1401 + 'default' => 1,
1402 + 'priority' => 3
1403 + ),
1404 + 'print_enable_logo' => array(
1405 + 'name' => 'print_enable_logo',
1406 + 'type' => 'toggle',
1407 + 'label' => __( 'Logo on Printed Doc', 'betterdocs' ),
1408 + 'label_subtitle' => __( 'Show a logo at the top of the printed / PDF page', 'betterdocs' ),
1409 + 'enable_disable_text_active' => true,
1410 + 'default' => 0,
1411 + 'priority' => 4
1412 + ),
1413 + 'print_logo' => array(
1414 + 'name' => 'print_logo',
1415 + 'type' => 'media',
1416 + 'value' => '',
1417 + 'label' => __( 'Print Logo', 'betterdocs' ),
1418 + 'label_subtitle' => __( 'Leave empty to use your site logo, or the site icon when no site logo is set', 'betterdocs' ),
1419 + 'priority' => 5,
1420 + 'rules' => Rules::is( 'print_enable_logo', true )
1421 + ),
1422 + 'print_enable_footer' => array(
1423 + 'name' => 'print_enable_footer',
1424 + 'type' => 'toggle',
1425 + 'label' => __( 'Footer on Printed Doc', 'betterdocs' ),
1426 + 'label_subtitle' => __( 'Show a footer on every page of the printed / PDF document', 'betterdocs' ),
1427 + 'enable_disable_text_active' => true,
1428 + 'default' => 0,
1429 + 'priority' => 6
1430 + ),
1431 + 'print_footer_text' => array(
1432 + 'name' => 'print_footer_text',
1433 + 'type' => 'textarea',
1434 + 'label' => __( 'Print Footer Text', 'betterdocs' ),
1435 + 'label_subtitle' => __( 'Leave empty to use the site name and current year', 'betterdocs' ),
1436 + 'default' => '',
1437 + 'priority' => 7,
1438 + 'rules' => Rules::is( 'print_enable_footer', true )
1439 + ),
1440 + 'enable_tags' => array(
1441 + 'name' => 'enable_tags',
1442 + 'type' => 'toggle',
1443 + 'label' => __( 'Tags', 'betterdocs' ),
1444 + 'enable_disable_text_active' => true,
1445 + 'default' => 1,
1446 + 'priority' => 8
1447 + ),
1448 + 'show_last_update_time' => array(
1449 + 'name' => 'show_last_update_time',
1450 + 'type' => 'toggle',
1451 + 'label' => __( 'Last Update Time', 'betterdocs' ),
1452 + 'enable_disable_text_active' => true,
1453 + 'default' => 1,
1454 + 'priority' => 9
1455 + ),
1456 + 'enable_navigation' => array(
1457 + 'name' => 'enable_navigation',
1458 + 'type' => 'toggle',
1459 + 'label' => __( 'Navigation', 'betterdocs' ),
1460 + 'enable_disable_text_active' => true,
1461 + 'default' => 1,
1462 + 'priority' => 10
1463 + ),
1464 + 'enable_comment' => array(
1465 + 'name' => 'enable_comment',
1466 + 'type' => 'toggle',
1467 + 'label' => __( 'Comment', 'betterdocs' ),
1468 + 'enable_disable_text_active' => true,
1469 + 'default' => '',
1470 + 'priority' => 11
1471 + ),
1472 + 'enable_credit' => array(
1473 + 'name' => 'enable_credit',
1474 + 'type' => 'toggle',
1475 + 'label' => __( 'Show Powered by BetterDocs', 'betterdocs' ),
1476 + 'enable_disable_text_active' => true,
1477 + 'default' => '',
1478 + 'priority' => 12
1479 + ),
1480 + 'reaction_feedback_text' => array(
1481 + 'name' => 'reaction_feedback_text',
1482 + 'type' => 'text',
1483 + 'label' => __( 'Reaction Feedback Text', 'betterdocs' ),
1484 + 'default' => __( 'Thanks for your feedback.', 'betterdocs' ),
1485 + 'priority' => 13
1486 + ),
1487 + 'enable_estimated_reading_time' => array(
1488 + 'name' => 'enable_estimated_reading_time',
1489 + 'type' => 'toggle',
1490 + 'label' => __( 'Estimated Reading Time', 'betterdocs' ),
1491 + 'enable_disable_text_active' => true,
1492 + 'default' => 0,
1493 + 'priority' => 14
1494 + ),
1495 + 'estimated_reading_time_title' => array(
1496 + 'name' => 'estimated_reading_time_title',
1497 + 'type' => 'text',
1498 + 'label' => __( 'Estimated Reading Time Title', 'betterdocs' ),
1499 + 'default' => '',
1500 + 'priority' => 15,
1501 + 'rules' => Rules::is( 'enable_estimated_reading_time', true )
1502 + ),
1503 + 'estimated_reading_time_text' => array(
1504 + 'name' => 'estimated_reading_time_text',
1505 + 'type' => 'text',
1506 + 'label' => __( 'Estimated Reading Time Text', 'betterdocs' ),
1507 + 'default' => __( 'min read', 'betterdocs' ),
1508 + 'priority' => 16,
1509 + 'rules' => Rules::is( 'enable_estimated_reading_time', true )
1510 + ),
1511 + 'singular_estimated_reading_time_text' => array(
1512 + 'name' => 'singular_estimated_reading_time_text',
1513 + 'type' => 'text',
1514 + 'label' => __( 'Estimated Reading Time Text Singular', 'betterdocs' ),
1515 + 'default' => __( 'min read', 'betterdocs' ),
1516 + 'priority' => 17,
1517 + 'rules' => Rules::is( 'enable_estimated_reading_time', true )
1518 + )
1519 + )
1520 + ),
1521 + 'layout_single_doc_TOC' => array(
1522 + 'id' => 'layout_single_doc_TOC',
1523 + 'name' => 'layout_single_doc_TOC',
1524 + 'type' => 'section',
1525 + 'label' => __( 'TOC', 'betterdocs' ),
1526 + 'priority' => 5,
1527 + 'fields' => array(
1528 + 'enable_toc' => array(
1529 + 'name' => 'enable_toc',
1530 + 'type' => 'toggle',
1531 + 'label' => __( 'Table of Contents', 'betterdocs' ),
1532 + 'enable_disable_text_active' => true,
1533 + 'default' => 1,
1534 + 'priority' => 1
1535 + ),
1536 + 'toc_title' => array(
1537 + 'name' => 'toc_title',
1538 + 'type' => 'text',
1539 + 'label' => __( 'TOC Title', 'betterdocs' ),
1540 + 'default' => __( 'Table of Contents', 'betterdocs' ),
1541 + 'priority' => 2,
1542 + 'rules' => Rules::is( 'enable_toc', true )
2393 1543
2394 - // AI Search Suggestions are enabled if all conditions are met
2395 - $ai_search_suggestions_enabled = betterdocs()->helper->is_ai_chatbot_enabled();
1544 + ),
1545 + 'toc_hierarchy' => array(
1546 + 'name' => 'toc_hierarchy',
1547 + 'type' => 'toggle',
1548 + 'label' => __( 'TOC Hierarchy', 'betterdocs' ),
1549 + 'enable_disable_text_active' => true,
1550 + 'default' => 1,
1551 + 'priority' => 3,
1552 + 'rules' => Rules::is( 'enable_toc', true )
1553 + ),
1554 + 'toc_list_number' => array(
1555 + 'name' => 'toc_list_number',
1556 + 'type' => 'toggle',
1557 + 'label' => __( 'TOC List Number', 'betterdocs' ),
1558 + 'enable_disable_text_active' => true,
1559 + 'default' => 1,
1560 + 'priority' => 4,
1561 + 'rules' => Rules::is( 'enable_toc', true )
1562 + ),
1563 + 'toc_dynamic_title' => array(
1564 + 'name' => 'toc_dynamic_title',
1565 + 'type' => 'toggle',
1566 + 'label' => __( 'Show TOC Title in Anchor Links', 'betterdocs' ),
1567 + 'enable_disable_text_active' => true,
1568 + 'default' => 0,
1569 + 'priority' => 5,
1570 + 'rules' => Rules::is( 'enable_toc', true )
1571 + ),
1572 + 'enable_sticky_toc' => array(
1573 + 'name' => 'enable_sticky_toc',
1574 + 'type' => 'toggle',
1575 + 'label' => __( 'Sticky TOC', 'betterdocs' ),
1576 + 'enable_disable_text_active' => true,
1577 + 'default' => 1,
1578 + 'priority' => 6,
1579 + 'rules' => Rules::is( 'enable_toc', true )
1580 + ),
1581 + 'collapsible_toc_mobile' => array(
1582 + 'name' => 'collapsible_toc_mobile',
1583 + 'type' => 'toggle',
1584 + 'label' => __( 'Collapsible TOC on small devices', 'betterdocs' ),
1585 + 'enable_disable_text_active' => true,
1586 + 'default' => '',
1587 + 'priority' => 7,
1588 + 'rules' => Rules::is( 'enable_toc', true )
1589 + ),
1590 + 'title_link_ctc' => array(
1591 + 'name' => 'title_link_ctc',
1592 + 'type' => 'toggle',
1593 + 'label' => __( 'Title Link Copy To Clipboard', 'betterdocs' ),
1594 + 'enable_disable_text_active' => true,
1595 + 'default' => 1,
1596 + 'priority' => 8
1597 + ),
1598 + 'supported_heading_tag' => array(
1599 + 'name' => 'supported_heading_tag',
1600 + 'label' => __( 'TOC Supported Heading Tag', 'betterdocs' ),
1601 + 'type' => 'checkbox-select',
1602 + 'multiple' => true,
1603 + 'priority' => 10,
1604 + 'default' => array(
1605 + '1',
1606 + '2',
1607 + '3',
1608 + '4',
1609 + '5',
1610 + '6'
1611 + ),
1612 + 'options' => $this->normalize_options( array(
1613 + '1' => 'H1',
1614 + '2' => 'H2',
1615 + '3' => 'H3',
1616 + '4' => 'H4',
1617 + '5' => 'H5',
1618 + '6' => 'H6'
1619 + ) ),
1620 + 'priority' => 9,
1621 + 'rules' => Rules::is( 'enable_toc', true )
1622 + ),
1623 + 'sticky_toc_offset' => array(
1624 + 'name' => 'sticky_toc_offset',
1625 + 'type' => 'number',
1626 + 'label' => __( 'Content Offset', 'betterdocs' ),
1627 + 'default' => 100,
1628 + 'priority' => 10,
1629 + 'label_subtitle' => __( 'content offset from top on scroll.', 'betterdocs' ),
1630 + 'rules' => Rules::is( 'enable_toc', true )
1631 + )
1632 + )
1633 + ),
1634 + 'layout_single_doc_breadcrumb' => array(
1635 + 'id' => 'layout_single_doc_breadcrumb',
1636 + 'name' => 'layout_single_doc_breadcrumb',
1637 + 'type' => 'section',
1638 + 'label' => __( 'Breadcrumb', 'betterdocs' ),
1639 + 'priority' => 5,
1640 + 'fields' => array(
1641 + 'enable_breadcrumb' => array(
1642 + 'name' => 'enable_breadcrumb',
1643 + 'type' => 'toggle',
1644 + 'label' => __( 'Breadcrumb', 'betterdocs' ),
1645 + 'enable_disable_text_active' => true,
1646 + 'default' => 1,
1647 + 'priority' => 1
1648 + ),
1649 + 'enable_breadcrumb_home_text' => array(
1650 + 'name' => 'enable_breadcrumb_home_text',
1651 + 'type' => 'toggle',
1652 + 'label' => __( 'Enable Breadcrumb Home Text', 'betterdocs' ),
1653 + 'enable_disable_text_active' => true,
1654 + 'default' => true,
1655 + 'priority' => 2,
1656 + 'rules' => Rules::is( 'enable_breadcrumb', true )
1657 + ),
1658 + 'breadcrumb_home_text' => array(
1659 + 'name' => 'breadcrumb_home_text',
1660 + 'type' => 'text',
1661 + 'label' => __( 'Breadcrumb Home Text', 'betterdocs' ),
1662 + 'default' => __( 'Home', 'betterdocs' ),
1663 + 'priority' => 3,
1664 + 'rules' => Rules::logicalRule(
1665 + array(
1666 + Rules::is( 'enable_breadcrumb', true ),
1667 + Rules::is( 'enable_breadcrumb_home_text', true )
1668 + ),
1669 + 'and'
1670 + )
1671 + ),
1672 + 'breadcrumb_home_url' => array(
1673 + 'name' => 'breadcrumb_home_url',
1674 + 'type' => 'text',
1675 + 'label' => __( 'Breadcrumb Home URL', 'betterdocs' ),
1676 + 'priority' => 4,
1677 + 'default' => get_home_url(),
1678 + 'rules' => Rules::is( 'enable_breadcrumb', true )
1679 + ),
1680 + 'enable_breadcrumb_category' => array(
1681 + 'name' => 'enable_breadcrumb_category',
1682 + 'type' => 'toggle',
1683 + 'label' => __( 'Category on Breadcrumb', 'betterdocs' ),
1684 + 'enable_disable_text_active' => true,
1685 + 'default' => 1,
1686 + 'priority' => 5,
1687 + 'rules' => Rules::is( 'enable_breadcrumb', true )
1688 + ),
1689 + 'enable_breadcrumb_title' => array(
1690 + 'name' => 'enable_breadcrumb_title',
1691 + 'type' => 'toggle',
1692 + 'label' => __( 'Title on Breadcrumb', 'betterdocs' ),
1693 + 'enable_disable_text_active' => true,
1694 + 'default' => 1,
1695 + 'priority' => 6,
1696 + 'rules' => Rules::is( 'enable_breadcrumb', true )
1697 + )
1698 + )
1699 + ),
1700 + 'layout_single_doc_email_feedback' => array(
1701 + 'id' => 'layout_single_doc_email_feedback',
1702 + 'name' => 'layout_single_doc_email_feedback',
1703 + 'type' => 'section',
1704 + 'label' => __( 'Email Feedback', 'betterdocs' ),
1705 + 'priority' => 5,
1706 + 'fields' => array(
1707 + 'email_feedback' => array(
1708 + 'name' => 'email_feedback',
1709 + 'type' => 'toggle',
1710 + 'label' => __( 'Email Feedback', 'betterdocs' ),
1711 + 'enable_disable_text_active' => true,
1712 + 'default' => 1,
1713 + 'priority' => 1
1714 + ),
1715 + 'feedback_link_text' => array(
1716 + 'name' => 'feedback_link_text',
1717 + 'type' => 'text',
1718 + 'label' => __( 'Feedback Link Text', 'betterdocs' ),
1719 + 'default' => __( 'Still stuck? How can we help?', 'betterdocs' ),
1720 + 'priority' => 2,
1721 + 'rules' => Rules::is( 'email_feedback', true )
1722 + ),
1723 + 'feedback_form_title' => array(
1724 + 'name' => 'feedback_form_title',
1725 + 'type' => 'text',
1726 + 'label' => __( 'Feedback Form Title', 'betterdocs' ),
1727 + 'default' => __( 'Still stuck? How can we help?', 'betterdocs' ),
1728 + 'priority' => 3,
1729 + 'rules' => Rules::is( 'email_feedback', true )
1730 + ),
1731 + 'email_address' => array(
1732 + 'name' => 'email_address',
1733 + 'type' => 'text',
1734 + 'label' => __( 'Email Address', 'betterdocs' ),
1735 + 'default' => get_option( 'admin_email' ),
1736 + 'priority' => 4,
1737 + 'label_subtitle' => __( 'The email address where the Feedback form will be sent', 'betterdocs' ),
1738 + 'rules' => Rules::is( 'email_feedback', true )
1739 + ),
1740 + 'feedback_url' => array(
1741 + 'name' => 'feedback_url',
1742 + 'type' => 'text',
1743 + 'label' => __( 'Feedback URL', 'betterdocs' ),
1744 + 'default' => '',
1745 + 'priority' => 5,
1746 + 'rules' => Rules::is( 'email_feedback', true )
1747 + )
1748 + )
1749 + ),
1750 + array(
1751 + 'id' => 'layout_single_doc_attachments',
1752 + 'name' => 'layout_single_doc_attachments',
1753 + 'type' => 'section',
1754 + 'label' => __( 'Attachments', 'betterdocs' ),
1755 + 'priority' => 6,
1756 + 'fields' => apply_filters( 'betterdocs_single_doc_attachments', array(
1757 + 'show_attachment' => array(
1758 + 'name' => 'show_attachment',
1759 + 'type' => 'toggle',
1760 + 'is_pro' => true,
1761 + 'priority' => 1,
1762 + 'label' => __( 'Show Attachment', 'betterdocs' ),
1763 + 'enable_disable_text_active' => true,
1764 + 'default' => false
1765 + )
1766 + ) )
1767 + ),
1768 + array(
1769 + 'id' => 'layout_single_doc_related_docs',
1770 + 'name' => 'layout_single_doc_related_docs',
1771 + 'type' => 'section',
1772 + 'label' => __( 'Related Docs', 'betterdocs' ),
1773 + 'priority' => 7,
1774 + 'fields' => apply_filters( 'betterdocs_single_doc_related_docs', array(
1775 + 'show_related_docs' => array(
1776 + 'name' => 'show_related_docs',
1777 + 'type' => 'toggle',
1778 + 'is_pro' => true,
1779 + 'priority' => 1,
1780 + 'label' => __( 'Show Related Docs', 'betterdocs' ),
1781 + 'enable_disable_text_active' => true,
1782 + 'default' => false
1783 + )
1784 + ) )
1785 + )
1786 + )
1787 + )
1788 + )
1789 + ) ),
1790 + 'layout_archive_page' => array(
1791 + 'id' => 'layout_archive_page',
1792 + 'name' => 'layout_archive_page',
1793 + 'type' => 'section',
1794 + 'label' => __( 'Archive Page', 'betterdocs' ),
1795 + 'priority' => 3,
1796 + 'fields' => array(
1797 + 'enable_archive_sidebar' => array(
1798 + 'name' => 'enable_archive_sidebar',
1799 + 'type' => 'toggle',
1800 + 'label' => __( 'Sidebar Category List', 'betterdocs' ),
1801 + 'enable_disable_text_active' => true,
1802 + 'default' => 1,
1803 + 'priority' => 31
1804 + ),
1805 + 'archive_nested_subcategory' => array(
1806 + 'name' => 'archive_nested_subcategory',
1807 + 'type' => 'toggle',
1808 + 'label' => __( 'Nested Subcategory', 'betterdocs' ),
1809 + 'enable_disable_text_active' => true,
1810 + 'default' => 1,
1811 + 'priority' => 32
1812 + ),
1813 + 'archive_enable_pagination' => array(
1814 + 'name' => 'archive_enable_pagination',
1815 + 'type' => 'toggle',
1816 + 'label' => __( 'Enable Pagination', 'betterdocs' ),
1817 + 'enable_disable_text_active' => true,
1818 + 'default' => false,
1819 + 'priority' => 33
1820 + )
1821 + )
1822 + )
1823 + )
1824 + ) )
1825 + )
1826 + )
1827 + )
1828 + ) ),
1829 + 'tab-design' => apply_filters( 'betterdocs_settings_tab_design', array(
1830 + 'id' => 'tab-design',
1831 + 'label' => __( 'Design', 'betterdocs' ),
1832 + 'priority' => 30,
1833 + 'fields' => array(
1834 + 'title-design' => array(
1835 + 'name' => 'title-design-tab',
1836 + 'type' => 'section',
1837 + 'label' => __( 'Design', 'betterdocs' ),
1838 + 'priority' => 30,
1839 + 'fields' => $this->design_tab()
1840 + )
1841 + )
1842 + ) ),
1843 + 'tab-shortcodes' => apply_filters( 'betterdocs_settings_tab_shortcodes', array(
1844 + 'label' => __( 'Shortcodes', 'betterdocs' ),
1845 + 'id' => 'tab-shortcodes',
1846 + 'classes' => 'tab-shortcodes',
1847 + 'priority' => 40,
1848 + 'fields' => array(
1849 + 'title-shortcodes' => array(
1850 + 'name' => 'title-shortcodes-tab',
1851 + 'type' => 'section',
1852 + 'label' => __( 'Shortcodes', 'betterdocs' ),
1853 + 'priority' => 40,
1854 + 'searchable' => true,
1855 + 'searchPlaceholder' => __( 'Search for shortcode', 'betterdocs' ),
1856 + 'searchNotFoundMessage' => '<img src="' . betterdocs()->assets->icon( 'not-found.svg', true ) . '"/><p>' . __( 'No Shortcodes Found with these keywords', 'betterdocs' ) . '</p>',
1857 + 'fields' => apply_filters( 'betterdocs_shortcode_fields', array(
1858 + 'search_form' => array(
1859 + 'name' => 'search_form',
1860 + 'type' => 'copy-to-clipboard',
1861 + 'label' => __( 'Search Form', 'betterdocs' ),
1862 + 'default' => '[betterdocs_search_form]',
1863 + 'readOnly' => true,
1864 + 'priority' => 1,
1865 + 'description' => __( '[betterdocs_search_form placeholder="Search..." heading="Heading" subheading="Subheading" category_search="true" search_button="true" popular_search="true"]', 'betterdocs' ),
1866 + 'descriptionLabel' => __( 'Example with parameters:', 'betterdocs' ),
1867 + 'descriptionCopyable' => true
1868 + ),
1869 + 'feedback_form' => array(
1870 + 'name' => 'feedback_form',
1871 + 'type' => 'copy-to-clipboard',
1872 + 'label' => __( 'Feedback Form', 'betterdocs' ),
1873 + 'default' => '[betterdocs_feedback_form]',
1874 + 'readOnly' => true,
1875 + 'priority' => 2,
1876 + 'description' => __( '[betterdocs_feedback_form button_text="Send"]', 'betterdocs' ),
1877 + 'descriptionLabel' => __( 'Example with parameters:', 'betterdocs' ),
1878 + 'descriptionCopyable' => true
1879 + ),
1880 + 'category_grid' => array(
1881 + 'name' => 'category_grid',
1882 + 'type' => 'copy-to-clipboard',
1883 + 'label' => __( 'Category Grid- Layout 1', 'betterdocs' ),
1884 + 'default' => '[betterdocs_category_grid]',
1885 + 'readOnly' => true,
1886 + 'priority' => 3,
1887 + 'description' => __( '[betterdocs_category_grid show_count="true" show_icon="true" masonry="true" column="3" posts_per_page="5" nested_subcategory="true" terms="term_ID, term_ID" terms_orderby="" terms_order="" multiple_knowledge_base="" kb_slug="" title_tag="h2" orderby="" order="" ]', 'betterdocs' ),
1888 + 'descriptionLabel' => __( 'Example with parameters:', 'betterdocs' ),
1889 + 'descriptionCopyable' => true
1890 + ),
1891 + 'category_box' => array(
1892 + 'name' => 'category_box',
1893 + 'type' => 'copy-to-clipboard',
1894 + 'label' => __( 'Category Box- Layout 2', 'betterdocs' ),
1895 + 'default' => '[betterdocs_category_box]',
1896 + 'readOnly' => true,
1897 + 'priority' => 4,
1898 + 'description' => __( '[betterdocs_category_box orderby="" column="" nested_subcategory="" terms="" terms_orderby="" show_icon="" kb_slug="" title_tag="h2" multiple_knowledge_base="false" border_bottom="false"]', 'betterdocs' ),
1899 + 'descriptionLabel' => __( 'Example with parameters:', 'betterdocs' ),
1900 + 'descriptionCopyable' => true
1901 + ),
1902 + 'category_list' => array(
1903 + 'name' => 'category_list',
1904 + 'type' => 'copy-to-clipboard',
1905 + 'label' => __( 'Category List', 'betterdocs' ),
1906 + 'default' => '[betterdocs_category_list]',
1907 + 'readOnly' => true,
1908 + 'priority' => 5,
1909 + 'description' => __( '[betterdocs_category_list orderby="" order="" posts_per_page="" nested_subcategory="" terms="" terms_orderby="" terms_order="" kb_slug="" multiple_knowledge_base="false" title_tag="h2"]', 'betterdocs' ),
1910 + 'descriptionLabel' => __( 'Example with parameters:', 'betterdocs' ),
1911 + 'descriptionCopyable' => true
1912 + ),
1913 + 'faq_modern_layout' => array(
1914 + 'name' => 'faq_modern_layout',
1915 + 'type' => 'copy-to-clipboard',
1916 + 'label' => __( 'FAQ Layout - 1', 'betterdocs' ),
1917 + 'default' => '[betterdocs_faq_list_modern]',
1918 + 'readOnly' => true,
1919 + 'priority' => 13,
1920 + 'description' => __( '[betterdocs_faq_list_modern groups="group_id" class="" group_exclude="group_id" faq_heading="Frequently Asked Questions"]', 'betterdocs' ),
1921 + 'descriptionLabel' => __( 'Example with parameters:', 'betterdocs' ),
1922 + 'descriptionCopyable' => true
1923 + ),
1924 + 'faq_classic_layout' => array(
1925 + 'name' => 'faq_classic_layout',
1926 + 'type' => 'copy-to-clipboard',
1927 + 'label' => __( 'FAQ Layout - 2', 'betterdocs' ),
1928 + 'default' => '[betterdocs_faq_list_classic]',
1929 + 'readOnly' => true,
1930 + 'priority' => 14,
1931 + 'description' => __( '[betterdocs_faq_list_classic groups="group_id" class="" group_exclude="group_id" faq_heading="Frequently Asked Questions"]', 'betterdocs' ),
1932 + 'descriptionLabel' => __( 'Example with parameters:', 'betterdocs' ),
1933 + 'descriptionCopyable' => true
1934 + ),
1935 + 'betterdocs_faq_list_layout_3' => array(
1936 + 'name' => 'betterdocs_faq_list_layout_3',
1937 + 'type' => 'copy-to-clipboard',
1938 + 'label' => __( 'FAQ Layout - 3', 'betterdocs' ),
1939 + 'default' => '[betterdocs_faq_list_layout_3 class="faq-doc betterdocs-faq-layout-3"]',
1940 + 'readOnly' => true,
1941 + 'priority' => 15,
1942 + 'description' => __( '[betterdocs_faq_list_layout_3 class="faq-doc betterdocs-faq-layout-3" groups="group_id" class="" group_exclude="group_id" faq_heading="Frequently Asked Questions"]', 'betterdocs' ),
1943 + 'descriptionLabel' => __( 'Example with parameters:', 'betterdocs' ),
1944 + 'descriptionCopyable' => true
1945 + ),
1946 + 'betterdocs_faq_tab' => array(
1947 + 'name' => 'betterdocs_faq_tab',
1948 + 'type' => 'copy-to-clipboard',
1949 + 'label' => __( 'FAQ Layout - 4', 'betterdocs' ),
1950 + 'default' => '[betterdocs_faq_tab class="faq-doc betterdocs-faq-layout-4"]',
1951 + 'readOnly' => true,
1952 + 'priority' => 16,
1953 + 'description' => __( '[betterdocs_faq_tab class="faq-doc betterdocs-faq-layout-4" groups="group_id" group_exclude="group_id" faq_heading="Frequently Asked Questions"]', 'betterdocs' ),
1954 + 'descriptionLabel' => __( 'Example with parameters:', 'betterdocs' ),
1955 + 'descriptionCopyable' => true
1956 + )
1957 + ) )
1958 + )
1959 + )
1960 + ) ),
1961 + 'tab-advance-settings' => apply_filters( 'betterdocs_settings_tab_advance', array(
1962 + 'id' => 'tab-advance-settings',
1963 + 'label' => __( 'Access & Restrictions', 'betterdocs' ),
1964 + 'classes' => 'tab-layout',
1965 + 'priority' => 50,
1966 + 'fields' => array(
1967 + 'title_advance_settings' => array(
1968 + 'name' => 'title-advance-settings-tab',
1969 + 'type' => 'section',
1970 + 'label' => __( 'Access & Restrictions', 'betterdocs' ),
1971 + 'priority' => 50,
1972 + 'fields' => array(
1973 + 'tab-advanced-settings' => array(
1974 + 'id' => 'tab-advanced-settings',
1975 + 'name' => 'tab-advanced-settings',
1976 + 'label' => __( 'Access & Restrictions', 'betterdocs' ),
1977 + 'classes' => 'tab-layout',
1978 + 'type' => 'tab',
1979 + 'active' => 'global_role_management',
1980 + 'completionTrack' => true,
1981 + 'sidebar' => false,
1982 + 'save' => false,
1983 + 'title' => false,
1984 + 'config' => array(
1985 + 'active' => '',
1986 + 'sidebar' => false,
1987 + 'title' => false
1988 + ),
1989 + 'submit' => array(
1990 + 'show' => false
1991 + ),
1992 + 'step' => array(
1993 + 'show' => false
1994 + ),
1995 + 'priority' => 50,
1996 + 'fields' => array(
1997 + 'global_role_management' => array(
1998 + 'id' => 'global_role_management',
1999 + 'name' => 'global_role_management',
2000 + 'type' => 'section',
2001 + 'label' => __( 'Global Role Management', 'betterdocs' ),
2002 + 'priority' => 1,
2003 + 'fields' => array(
2004 + 'article_roles' => array(
2005 + 'name' => 'article_roles',
2006 + 'type' => 'checkbox-select',
2007 + 'label' => __( 'Who Can Write Docs?', 'betterdocs' ),
2008 + 'priority' => 1,
2009 + 'multiple' => true,
2010 + 'search' => true,
2011 + 'is_pro' => true,
2012 + 'default' => array( 'administrator' ),
2013 + 'options' => $wp_roles
2014 + ),
2015 + 'settings_roles' => array(
2016 + 'name' => 'settings_roles',
2017 + 'type' => 'checkbox-select',
2018 + 'label' => __( 'Who Can Edit Settings?', 'betterdocs' ),
2019 + 'priority' => 2,
2020 + 'multiple' => true,
2021 + 'is_pro' => true,
2022 + 'search' => true,
2023 + 'default' => array( 'administrator' ),
2024 + 'options' => $wp_roles
2025 + ),
2026 + 'analytics_roles' => array(
2027 + 'name' => 'analytics_roles',
2028 + 'type' => 'checkbox-select',
2029 + 'label' => __( 'Who Can Check Analytics?', 'betterdocs' ),
2030 + 'priority' => 3,
2031 + 'multiple' => true,
2032 + 'is_pro' => true,
2033 + 'search' => true,
2034 + 'default' => array( 'administrator' ),
2035 + 'options' => $wp_roles
2036 + ),
2037 + 'faq_roles' => array(
2038 + 'name' => 'faq_roles',
2039 + 'type' => 'checkbox-select',
2040 + 'label' => __( 'Who Can Check FAQ Builder?', 'betterdocs' ),
2041 + 'priority' => 4,
2042 + 'multiple' => true,
2043 + 'is_pro' => true,
2044 + 'search' => true,
2045 + 'default' => array( 'administrator' ),
2046 + 'options' => $wp_roles
2047 + )
2396 2048
2397 - return [
2398 - 'CHATBOT_ACTIVE' => $chatbot_active,
2399 - 'CHATBOT_LICENSE_VALID' => $chatbot_license_valid,
2400 - 'CHATBOT_ENABLED' => $chatbot_enabled,
2401 - 'AI_SEARCH_SUGGESTIONS_ENABLED' => $ai_search_suggestions_enabled
2402 - ];
2403 - }
2049 + )
2050 + ),
2051 + 'internal_knowledge_base' => array(
2052 + 'id' => 'internal_knowledge_base',
2053 + 'name' => 'internal_knowledge_base',
2054 + 'type' => 'section',
2055 + 'label' => __( 'Internal Knowledge Base', 'betterdocs' ),
2056 + 'priority' => 1,
2057 + 'fields' => apply_filters( 'betterdocs_settings_content_restriction_fields', array(
2058 + 'enable_content_restriction' => array(
2059 + 'name' => 'enable_content_restriction',
2060 + 'type' => 'toggle',
2061 + 'is_pro' => true,
2062 + 'priority' => 5,
2063 + 'label' => __( 'Internal Knowledge Base', 'betterdocs' ),
2064 + 'enable_disable_text_active' => true,
2065 + 'default' => array( 'all' )
2066 + ),
2067 + 'internal_knowledge_base_type' => array(
2068 + 'name' => 'internal_knowledge_base_type',
2069 + 'type' => 'radio-card',
2070 + 'label' => __( 'Choose a Rule Type', 'betterdocs' ),
2071 + 'label_subtitle' => __( 'Choose a rule type: apply access globally (Basic), or configure detailed restrictions (Advanced) for docs, categories, and KBs.', 'betterdocs' ),
2072 + 'priority' => 6,
2073 + 'multiple' => true,
2074 + 'search' => true,
2075 + 'default' => array( 'all' ),
2076 + 'placeholder' => __( 'Select any', 'betterdocs' ),
2077 + 'options' => array(
2078 + array(
2079 + 'label' => 'Basic',
2080 + 'value' => 'basic'
2081 + ),
2082 + array(
2083 + 'label' => 'Advanced',
2084 + 'value' => 'advanced'
2085 + )
2086 + ),
2087 + 'filterValue' => 'all',
2088 + 'rules' => Rules::is( 'enable_content_restriction', true )
2089 + ),
2090 + 'content_visibility' => array(
2091 + 'name' => 'content_visibility',
2092 + 'type' => 'checkbox-select',
2093 + 'label' => __( 'Restrict Access to', 'betterdocs' ),
2094 + 'label_subtitle' => __( 'Only selected User Roles will be able to view your Knowledge Base', 'betterdocs' ),
2095 + 'is_pro' => true,
2096 + 'priority' => 7,
2097 + 'multiple' => true,
2098 + 'search' => true,
2099 + 'default' => array( 'all' ),
2100 + 'placeholder' => __( 'Select any', 'betterdocs' ),
2101 + 'options' => $roles_for_ikb,
2102 + 'rules' => Rules::logicalRule(
2103 + array(
2104 + Rules::is( 'enable_content_restriction', true ),
2105 + Rules::is( 'internal_knowledge_base_type', 'basic' )
2106 + ),
2107 + 'and'
2108 + ),
2109 + 'filterValue' => 'all'
2110 + ),
2111 + 'restrict_template' => array(
2112 + 'name' => 'restrict_template',
2113 + 'type' => 'checkbox-select',
2114 + 'label' => __( 'Restriction on Docs', 'betterdocs' ),
2115 + 'label_subtitle' => __( 'Selected Docs pages will be restricted', 'betterdocs' ),
2116 + 'is_pro' => true,
2117 + 'priority' => 8,
2118 + 'multiple' => true,
2119 + 'search' => true,
2120 + 'default' => array( 'all' ),
2121 + 'placeholder' => __( 'Select any', 'betterdocs' ),
2122 + 'options' => $this->get_texanomy(),
2123 + 'rules' => Rules::logicalRule(
2124 + array(
2125 + Rules::is( 'enable_content_restriction', true ),
2126 + Rules::is( 'internal_knowledge_base_type', 'basic' )
2127 + ),
2128 + 'and'
2129 + ),
2130 + 'filterValue' => 'all'
2131 + ),
2132 + 'restrict_category' => array(
2133 + 'name' => 'restrict_category',
2134 + 'type' => 'checkbox-select',
2135 + 'label' => __( 'Restriction on Docs Categories', 'betterdocs' ),
2136 + 'label_subtitle' => __( 'Selected Docs categories will be restricted', 'betterdocs' ),
2137 + 'is_pro' => true,
2138 + 'priority' => 9,
2139 + 'multiple' => true,
2140 + 'search' => true,
2141 + 'default' => array( 'all' ),
2142 + 'placeholder' => __( 'Select any', 'betterdocs' ),
2143 + 'options' => $this->get_terms( 'doc_category' ),
2144 + 'rules' => Rules::logicalRule(
2145 + array(
2146 + Rules::is( 'enable_content_restriction', true ),
2147 + Rules::is( 'internal_knowledge_base_type', 'basic' )
2148 + ),
2149 + 'and'
2150 + ),
2151 + 'filterValue' => 'all'
2152 + ),
2153 + 'restricted_redirect_url' => array(
2154 + 'name' => 'restricted_redirect_url',
2155 + 'type' => 'text',
2156 + 'label' => __( 'Redirect URL', 'betterdocs' ),
2157 + 'label_subtitle' => __( 'Set a custom URL to redirect users without permissions when they try to access internal knowledge base. By default, restricted content will redirect to the "404 not found" page', 'betterdocs' ),
2158 + 'default' => '',
2159 + 'placeholder' => 'https://',
2160 + 'is_pro' => true,
2161 + 'priority' => 20,
2162 + 'rules' => Rules::logicalRule(
2163 + array(
2164 + Rules::is( 'enable_content_restriction', true )
2165 + ),
2166 + 'and'
2167 + )
2168 + )
2169 + ) )
2170 + )
2171 + )
2172 + )
2173 + )
2174 + )
2175 + )
2176 + ) ),
2177 + 'tab-email-reporting' => apply_filters( 'betterdocs_settings_tab_email_reporting', array(
2178 + 'id' => 'tab-email-reporting',
2179 + 'label' => __( 'Email Reporting', 'betterdocs' ),
2180 + 'priority' => 60,
2181 + 'fields' => array(
2182 + 'title-email-reporting' => array(
2183 + 'name' => 'title-email-reporting-tab',
2184 + 'type' => 'section',
2185 + 'label' => __( 'Email Reporting', 'betterdocs' ),
2186 + 'priority' => 60,
2187 + 'fields' => array(
2188 + 'enable_reporting' => array(
2189 + 'name' => 'enable_reporting',
2190 + 'label' => __( 'Email Reporting', 'betterdocs' ),
2191 + 'enable_disable_text_active' => true,
2192 + 'type' => 'toggle',
2193 + 'priority' => 1,
2194 + 'default' => 0
2195 + ),
2196 + 'reporting_frequency' => apply_filters( 'betterdocs_reporting_frequency_settings', array(
2197 + 'name' => 'reporting_frequency',
2198 + 'type' => 'select',
2199 + 'label' => __( 'Reporting Frequency', 'betterdocs' ),
2200 + 'default' => 'betterdocs_weekly',
2201 + 'priority' => 2,
2202 + 'is_pro' => true,
2203 + 'options' => $this->normalize_options( array(
2204 + 'betterdocs_daily' => __( 'Once Daily', 'betterdocs' ),
2205 + 'betterdocs_weekly' => __( 'Once Weekly', 'betterdocs' ),
2206 + 'betterdocs_monthly' => __( 'Once Monthly', 'betterdocs' )
2207 + ) ),
2208 + 'rules' => Rules::is( 'enable_reporting', true )
2209 + ) ),
2210 + 'reporting_day' => array(
2211 + 'name' => 'reporting_day',
2212 + 'type' => 'select',
2213 + 'label' => __( 'Reporting Day', 'betterdocs' ),
2214 + 'default' => 'monday',
2215 + 'rules' => Rules::logicalRule( array(
2216 + Rules::is( 'enable_reporting', true ),
2217 + Rules::is( 'reporting_frequency', 'betterdocs_weekly' )
2218 + ), 'and' ),
2219 + 'priority' => 3,
2220 + 'options' => $this->normalize_options( array(
2221 + 'sunday' => __( 'Sunday', 'betterdocs' ),
2222 + 'monday' => __( 'Monday', 'betterdocs' ),
2223 + 'tuesday' => __( 'Tuesday', 'betterdocs' ),
2224 + 'wednesday' => __( 'Wednesday', 'betterdocs' ),
2225 + 'thursday' => __( 'Thursday', 'betterdocs' ),
2226 + 'friday' => __( 'Friday', 'betterdocs' ),
2227 + 'saturday' => __( 'Saturday', 'betterdocs' )
2228 + ) ),
2229 + 'label_subtitle' => __( 'This is only applicable for the “Weekly” report', 'betterdocs' )
2230 + ),
2231 + 'select_reporting_data' => apply_filters( 'betterdocs_select_reporting_data_settings', array(
2232 + 'name' => 'select_reporting_data',
2233 + 'type' => 'checkbox-select',
2234 + 'label' => __( 'Select Reporting Data', 'betterdocs' ),
2235 + 'priority' => 4,
2236 + 'multiple' => true,
2237 + 'options' => $this->normalize_options( array(
2238 + 'overview' => 'Overview',
2239 + 'top-docs' => 'Top Docs',
2240 + 'most-search' => 'Most Searched Keywords'
2241 + ) ),
2242 + 'default' => array( 'overview', 'top-docs', 'most-search' ),
2243 + 'is_pro' => true,
2244 + 'rules' => Rules::is( 'enable_reporting', true )
2245 + ) ),
2246 + 'reporting_email' => array(
2247 + 'name' => 'reporting_email',
2248 + 'type' => 'text',
2249 + 'label' => __( 'Reporting Email', 'betterdocs' ),
2250 + 'default' => get_option( 'admin_email' ),
2251 + 'priority' => 5,
2252 + 'rules' => Rules::is( 'enable_reporting', true )
2253 + ),
2254 + 'reporting_subject' => apply_filters( 'betterdocs_reporting_subject_settings', array(
2255 + 'name' => 'reporting_subject',
2256 + 'type' => 'textarea',
2257 + 'label' => __( 'Reporting Email Subject', 'betterdocs' ),
2258 + 'default' => wp_sprintf( // Translators: %s is replaced with the website name.
2259 + __( 'Your Documentation Performance of %s Website', 'betterdocs' ), get_bloginfo( 'name' ) ),
2260 + 'priority' => 6,
2261 + 'is_pro' => true,
2262 + 'rules' => Rules::is( 'enable_reporting', true )
2263 + ) ),
2264 + 'test_report' => array(
2265 + 'name' => 'test_report',
2266 + 'label' => __( 'Reporting Test', 'betterdocs' ),
2267 + 'text' => __( 'Test Report', 'betterdocs' ),
2268 + 'type' => 'button',
2269 + 'priority' => 7,
2270 + 'rules' => Rules::is( 'enable_reporting', true ),
2271 + 'ajax' => array(
2272 + 'on' => 'click',
2273 + 'api' => '/betterdocs/v1/reporting-test',
2274 + 'data' => array(
2275 + 'enable_reporting' => '@enable_reporting',
2276 + 'select_reporting_data' => '@select_reporting_data',
2277 + 'reporting_subject' => '@reporting_subject',
2278 + 'reporting_email' => '@reporting_email',
2279 + 'reporting_day' => '@reporting_day',
2280 + 'reporting_frequency' => '@reporting_frequency'
2281 + ),
2282 + 'swal' => array(
2283 + 'text' => __( 'Successfully Sent a Test Report in Your Email.', 'betterdocs' ),
2284 + 'icon' => 'success',
2285 + 'autoClose' => 2000
2286 + )
2287 + )
2288 + )
2289 + )
2290 + )
2291 + )
2292 + ) ),
2293 + 'tab-git-sync' => apply_filters( 'betterdocs_settings_tab_github_integration', array(
2294 + 'id' => 'tab-git-sync',
2295 + 'label' => __( 'Git Sync', 'betterdocs' ),
2296 + 'priority' => 60,
2297 + 'fields' => array(
2298 + 'title-git-sync' => array(
2299 + 'name' => 'title-git-sync-tab',
2300 + 'type' => 'section',
2301 + 'label' => __( 'Git Sync Settings', 'betterdocs' ),
2302 + 'priority' => 60,
2303 + 'fields' => array(
2304 + 'enable_git_integration' => array(
2305 + 'name' => 'enable_git_integration',
2306 + 'type' => 'toggle',
2307 + 'label' => __( 'Enable Git Sync', 'betterdocs' ),
2308 + 'enable_disable_text_active' => true,
2309 + 'default' => false,
2310 + 'priority' => 1,
2311 + 'is_pro' => true,
2312 + 'label_subtitle' => __( 'Enable bidirectional synchronization between BetterDocs and Git repositories', 'betterdocs' )
2313 + )
2314 + )
2315 + )
2316 + )
2317 + ) ),
2318 + 'tab-instant-answer' => apply_filters( 'betterdocs_settings_tab_instant_answer', array(
2319 + 'id' => 'tab-instant-answer',
2320 + 'name' => 'tab-instant-answer',
2321 + 'type' => 'section',
2322 + 'label' => __( 'Instant Answer', 'betterdocs' ),
2323 + 'save' => false,
2324 + 'priority' => 70,
2325 + 'fields' => array(
2326 + 'title-instant-answer' => array(
2327 + 'name' => 'title-instant-answer-tab',
2328 + 'type' => 'section',
2329 + 'label' => __( 'Instant Answer', 'betterdocs' ),
2330 + 'priority' => 80,
2331 + 'save' => false,
2332 + 'showSubmit' => false,
2333 + 'fields' => apply_filters( 'betterdocs_instant_answer_fields', array(
2334 + 'enable_disable_wrapper' => array(
2335 + 'name' => 'enable_disable_wrapper',
2336 + 'type' => 'section',
2337 + 'priority' => 0,
2338 + 'save' => false,
2339 + 'fields' => array(
2340 + 'enable_disable' => array(
2341 + 'name' => 'enable_disable',
2342 + 'type' => 'toggle',
2343 + 'priority' => 100,
2344 + 'description' => __( 'Enable Instant Answer', 'betterdocs' ),
2345 + 'enable_disable_text_active' => false,
2346 + 'default' => false,
2347 + 'is_pro' => true
2348 + )
2349 + )
2350 + )
2351 + ) )
2352 + )
2353 + )
2354 + ) ),
2355 + 'tab-betterdocs-ai' => array(
2356 + 'id' => 'tab-betterdocs-ai',
2357 + 'name' => 'tab-betterdocs-ai',
2358 + 'type' => 'section',
2359 + 'label' => __( 'AI Content Suite', 'betterdocs' ),
2360 + 'priority' => 74,
2361 + 'fields' => array(
2362 + 'sections-betterdocs-ai' => array(
2363 + 'name' => 'sections-betterdocs-ai',
2364 + 'type' => 'section',
2365 + 'label' => __( 'AI Content Suite', 'betterdocs' ),
2366 + 'priority' => 10,
2367 + 'fields' => array(
2368 + 'all-betterdocs-ai' => array(
2369 + 'id' => 'all-tab-betterdocs-ai',
2370 + 'name' => 'all-tab-betterdocs-ai',
2371 + 'label' => __( 'AI Content Suite Settings', 'betterdocs' ),
2372 + 'classes' => 'tab-layout',
2373 + 'type' => 'tab',
2374 + 'active' => 'open-ai-settings',
2375 + 'completionTrack' => true,
2376 + 'sidebar' => false,
2377 + 'save' => false,
2378 + 'title' => false,
2379 + 'config' => array(
2380 + 'active' => 'open-ai-settings',
2381 + 'sidebar' => false,
2382 + 'title' => false
2383 + ),
2384 + 'submit' => array(
2385 + 'show' => false
2386 + ),
2387 + 'step' => array(
2388 + 'show' => false
2389 + ),
2390 + 'priority' => 20,
2391 + 'fields' => apply_filters(
2392 + 'betterdocs_migration_tab_sections',
2393 + array(
2394 + 'open-ai-settings' => array(
2395 + 'id' => 'open-ai-settings',
2396 + 'name' => 'open-ai-settings',
2397 + 'type' => 'section',
2398 + 'label' => __( 'AI Platform & API', 'betterdocs' ),
2399 + 'priority' => 1,
2400 + 'fields' => array(
2401 + 'ai_platform' => array(
2402 + 'name' => 'ai_platform',
2403 + 'type' => 'select',
2404 + 'label' => __( 'AI Platform', 'betterdocs' ),
2405 + 'label_subtitle' => __( 'Choose which AI platform powers Write with AI, AI Edit, the Doc Summarizer and Quality Score. The model list and API key field below adapt to your choice.', 'betterdocs' ),
2406 + 'priority' => 1,
2407 + 'multiple' => false,
2408 + 'default' => 'openai',
2409 + // DeepSeek and OpenRouter are temporarily hidden from the
2410 + // dropdown. Filter the options here, NOT ModelRegistry::platforms() —
2411 + // sensitive_api_key_fields() loops the registry to mask each
2412 + // platform's key field, so trimming the registry would silently
2413 + // un-mask those keys. Re-enable later by dropping the array_diff_key.
2414 + 'options' => GlobalFields::normalize_fields(
2415 + array_diff_key( ModelRegistry::platforms(), array_flip( array( 'deepseek', 'openrouter' ) ) )
2416 + )
2417 + ),
2418 + // OpenAI's key field keeps its original name so installs
2419 + // that already saved a Write with AI key keep it.
2420 + 'ai_autowrite_api_key' => array(
2421 + 'name' => 'ai_autowrite_api_key',
2422 + 'type' => 'text',
2423 + 'label' => __( 'OpenAI API Key', 'betterdocs' ),
2424 + 'label_subtitle' => sprintf( /* translators: %s: documentation URL */ __( 'Check out this <a target="_blank" href="%s">documentation</a> to generate your OpenAI API key.', 'betterdocs' ), esc_url( 'https://betterdocs.co/docs/write-with-ai/' ) ),
2425 + 'default' => '',
2426 + 'priority' => 2,
2427 + 'rules' => Rules::is( 'ai_platform', 'openai' )
2428 + ),
2429 + 'ai_api_key_gemini' => array(
2430 + 'name' => 'ai_api_key_gemini',
2431 + 'type' => 'text',
2432 + 'label' => __( 'Google Gemini API Key', 'betterdocs' ),
2433 + 'label_subtitle' => sprintf( /* translators: %s: Google AI Studio URL */ __( 'Generate a key from <a target="_blank" href="%s">Google AI Studio</a>.', 'betterdocs' ), esc_url( 'https://aistudio.google.com/app/apikey' ) ),
2434 + 'default' => '',
2435 + 'priority' => 2,
2436 + 'rules' => Rules::is( 'ai_platform', 'gemini' )
2437 + ),
2438 + 'ai_api_key_claude' => array(
2439 + 'name' => 'ai_api_key_claude',
2440 + 'type' => 'text',
2441 + 'label' => __( 'Anthropic Claude API Key', 'betterdocs' ),
2442 + 'label_subtitle' => sprintf( /* translators: %s: Anthropic Console URL */ __( 'Generate a key from the <a target="_blank" href="%s">Anthropic Console</a>.', 'betterdocs' ), esc_url( 'https://console.anthropic.com/settings/keys' ) ),
2443 + 'default' => '',
2444 + 'priority' => 2,
2445 + 'rules' => Rules::is( 'ai_platform', 'claude' )
2446 + ),
2447 + 'ai_api_key_deepseek' => array(
2448 + 'name' => 'ai_api_key_deepseek',
2449 + 'type' => 'text',
2450 + 'label' => __( 'DeepSeek API Key', 'betterdocs' ),
2451 + 'label_subtitle' => sprintf( /* translators: %s: DeepSeek platform URL */ __( 'Generate a key from the <a target="_blank" href="%s">DeepSeek platform</a>.', 'betterdocs' ), esc_url( 'https://platform.deepseek.com/api_keys' ) ),
2452 + 'default' => '',
2453 + 'priority' => 2,
2454 + 'rules' => Rules::is( 'ai_platform', 'deepseek' )
2455 + ),
2456 + 'ai_api_key_openrouter' => array(
2457 + 'name' => 'ai_api_key_openrouter',
2458 + 'type' => 'text',
2459 + 'label' => __( 'OpenRouter API Key', 'betterdocs' ),
2460 + 'label_subtitle' => sprintf( /* translators: %s: OpenRouter keys URL */ __( 'Generate a key from <a target="_blank" href="%s">OpenRouter</a>.', 'betterdocs' ), esc_url( 'https://openrouter.ai/keys' ) ),
2461 + 'default' => '',
2462 + 'priority' => 2,
2463 + 'rules' => Rules::is( 'ai_platform', 'openrouter' )
2464 + ),
2465 + 'ai_model' => array(
2466 + 'name' => 'ai_model',
2467 + 'type' => 'platform_model_select',
2468 + 'label' => __( 'Model', 'betterdocs' ),
2469 + 'label_subtitle' => __( 'Available models depend on the selected platform.', 'betterdocs' ),
2470 + 'priority' => 10,
2471 + 'default' => 'gpt-4o-mini',
2472 + 'catalogue' => ModelRegistry::catalogue(),
2473 + 'defaults' => ModelRegistry::defaults()
2474 + )
2475 + )
2476 + ),
2477 + 'write-with-ai' => array(
2478 + 'id' => 'write-with-ai',
2479 + 'name' => 'write-with-ai',
2480 + 'type' => 'section',
2481 + 'label' => __( 'Write with AI', 'betterdocs' ),
2482 + 'priority' => 5,
2483 + 'fields' => array(
2484 + 'write-with-ai-subtabs' => array(
2485 + 'id' => 'write-with-ai-subtabs',
2486 + 'name' => 'write_with_ai_subtabs',
2487 + 'label' => __( 'Write with AI', 'betterdocs' ),
2488 + 'classes' => 'tab-nested-layout',
2489 + 'type' => 'tab',
2490 + 'active' => 'wwa-configuration',
2491 + 'completionTrack' => true,
2492 + 'sidebar' => false,
2493 + 'save' => false,
2494 + 'title' => false,
2495 + 'config' => array(
2496 + 'active' => 'wwa-configuration',
2497 + 'sidebar' => false,
2498 + 'title' => false
2499 + ),
2500 + 'submit' => array(
2501 + 'show' => false
2502 + ),
2503 + 'step' => array(
2504 + 'show' => false
2505 + ),
2506 + 'priority' => 5,
2507 + 'fields' => array(
2508 + 'wwa-configuration' => array(
2509 + 'id' => 'wwa-configuration',
2510 + 'name' => 'wwa-configuration',
2511 + 'type' => 'section',
2512 + 'label' => __( 'Configuration', 'betterdocs' ),
2513 + 'priority' => 1,
2514 + 'fields' => array(
2515 + 'enable_write_with_ai' => array(
2516 + 'name' => 'enable_write_with_ai',
2517 + 'type' => 'toggle',
2518 + 'priority' => 0,
2519 + 'label' => __( 'Write Docs with AI', 'betterdocs' ),
2520 + 'label_subtitle' => __( 'Generate AI based Documentation in your Gutenberg Editor', 'betterdocs' ),
2521 + 'enable_disable_text_active' => true,
2522 + 'default' => true
2523 + ),
2524 + 'enable_faq_write_with_ai' => array(
2525 + 'name' => 'enable_faq_write_with_ai',
2526 + 'type' => 'toggle',
2527 + 'priority' => 5,
2528 + 'label' => __( 'Write FAQ with AI', 'betterdocs' ),
2529 + 'label_subtitle' => __( 'Generate AI based FAQ in your Editor', 'betterdocs' ),
2530 + 'enable_disable_text_active' => true,
2531 + 'default' => true
2532 + ),
2533 + 'enable_glossaries_write_with_ai' => array(
2534 + 'name' => 'enable_glossaries_write_with_ai',
2535 + 'type' => 'toggle',
2536 + 'priority' => 6,
2537 + 'label' => __( 'Write Glossaries with AI', 'betterdocs' ),
2538 + 'label_subtitle' => __( 'Generate AI based Glossary definitions from the Glossaries admin page', 'betterdocs' ),
2539 + 'enable_disable_text_active' => true,
2540 + 'default' => true,
2541 + 'is_pro' => true
2542 + ),
2543 + 'enable_docs_ai_suite' => array(
2544 + 'name' => 'enable_docs_ai_suite',
2545 + 'type' => 'toggle',
2546 + 'priority' => 7,
2547 + 'label' => __( 'Enhance Docs with AI', 'betterdocs' ),
2548 + 'label_subtitle' => __( 'Add BetterDocs AI actions for suggesting categories, tags and excerpts inside the native Docs editor panels.', 'betterdocs' ),
2549 + 'enable_disable_text_active' => true,
2550 + 'default' => true
2551 + ),
2552 + 'ai_autowrite_max_token' => array(
2553 + 'name' => 'ai_autowrite_max_token',
2554 + 'type' => 'min_token_number',
2555 + 'label' => __( 'Set Max Tokens', 'betterdocs' ),
2556 + 'label_subtitle' => sprintf( // translators: %s is a link to more information about token limits.
2557 + __( 'Documentation will be generated based on the Token Limits you have set. For more information on Token Limits, you can check out this <a target="_blank" href="%s">link</a>.', 'betterdocs' ), esc_url( 'https://platform.openai.com/account/limits' ) ),
2558 + 'default' => 2500,
2559 + 'priority' => 10,
2560 + 'model_field' => 'ai_model',
2561 + 'context' => 'write_with_ai',
2562 + 'min_token_map' => AIHelper::get_min_tokens_map( 'write_with_ai' ),
2563 + 'classes' => 'wprf-type-text'
2564 + )
2565 + )
2566 + ),
2567 + 'wwa-personalize' => array(
2568 + 'id' => 'wwa-personalize',
2569 + 'name' => 'wwa-personalize',
2570 + 'type' => 'section',
2571 + 'label' => __( 'Write AI Personalize', 'betterdocs' ),
2572 + 'priority' => 5,
2573 + 'fields' => array(
2574 + 'write_with_ai_instructions' => array(
2575 + 'name' => 'write_with_ai_instructions',
2576 + 'type' => 'wwa_instructions',
2577 + 'label' => __( 'Instructions', 'betterdocs' ),
2578 + 'label_subtitle' => __( 'Add reusable instruction sets to steer how BetterDocs AI writes. The "Default/Core" set is always applied; extra sets can be picked in the Write with AI popup.', 'betterdocs' ),
2579 + 'priority' => 1,
2580 + 'default' => array(
2581 + array(
2582 + 'id' => 'default',
2583 + 'title' => __( 'Default/Core', 'betterdocs' ),
2584 + 'content' => WriteWithAI::default_instruction_content()
2585 + )
2586 + )
2587 + )
2588 + )
2589 + ),
2590 + 'edit-ai-personalize' => array(
2591 + 'id' => 'edit-ai-personalize',
2592 + 'name' => 'edit-ai-personalize',
2593 + 'type' => 'section',
2594 + 'label' => __( 'Edit AI Personalize', 'betterdocs' ),
2595 + 'priority' => 7,
2596 + 'fields' => array(
2597 + 'ai_edit_actions' => array(
2598 + 'name' => 'ai_edit_actions',
2599 + 'type' => 'ai_edit_actions',
2600 + 'label' => __( 'Actions', 'betterdocs' ),
2601 + 'label_subtitle' => __( 'Choose which Edit with AI actions appear in the editor. Toggle actions on or off, edit each action\'s instruction, or add your own custom actions. All predefined actions are enabled by default.', 'betterdocs' ),
2602 + 'priority' => 1,
2603 + 'default' => AIEdit::default_actions()
2604 + )
2605 + )
2606 + )
2607 + )
2608 + )
2609 + )
2610 + ),
2611 + 'article-summary' => array(
2612 + 'id' => 'article-summary',
2613 + 'name' => 'article-summary',
2614 + 'type' => 'section',
2615 + 'label' => __( 'AI Doc Summarizer', 'betterdocs' ),
2616 + 'priority' => 10,
2617 + 'fields' => array(
2618 + 'enable_article_summary' => array(
2619 + 'name' => 'enable_article_summary',
2620 + 'type' => 'toggle',
2621 + 'priority' => 1,
2622 + 'label' => __( 'AI Powered Doc Summarizer', 'betterdocs' ),
2623 + 'label_subtitle' => __( 'Enable AI-powered article summaries on single doc pages. Requires OpenAI API key.', 'betterdocs' ),
2624 + 'enable_disable_text_active' => true,
2625 + 'default' => false
2626 + ),
2627 + 'article_summary_max_token' => array(
2628 + 'name' => 'article_summary_max_token',
2629 + 'type' => 'min_token_number',
2630 + 'label' => __( 'Set Max Tokens', 'betterdocs' ),
2631 + 'label_subtitle' => sprintf( // translators: %s is a link to more information about token limits.
2632 + __( 'Single Doc summarizer will be generated based on the token limits you have set. For more information on Token Limits, you can check out this <a target="_blank" href="%s">link</a>.', 'betterdocs' ), esc_url( 'https://platform.openai.com/account/limits' ) ),
2633 + 'default' => 1500,
2634 + 'priority' => 5,
2635 + 'model_field' => 'ai_model',
2636 + 'context' => 'article_summary',
2637 + 'min_token_map' => AIHelper::get_min_tokens_map( 'article_summary' ),
2638 + 'classes' => 'wprf-type-text'
2639 + )
2640 + )
2641 + )
2642 + )
2643 + )
2644 + )
2645 + )
2646 + )
2647 + )
2648 + ),
2649 + 'tab-ai-chatbot' => apply_filters( 'betterdocs_settings_tab_ai_chatbot', array(
2650 + 'id' => 'tab-ai-chatbot',
2651 + 'name' => 'tab-ai-chatbot',
2652 + 'type' => 'section',
2653 + 'label' => __( 'AI Chatbot', 'betterdocs' ),
2654 + 'submit' => array(
2655 + 'show' => false
2656 + ),
2657 + 'save' => false,
2658 + 'priority' => 75,
2659 + 'fields' => array(
2660 + 'title-ai-chatbot-tab' => array(
2661 + 'name' => 'title-ai-chatbot-tab',
2662 + 'type' => 'section',
2663 + 'label' => __( 'AI Chatbot', 'betterdocs' ),
2664 + 'priority' => 80,
2665 + 'submit' => array(
2666 + 'show' => false
2667 + ),
2668 + 'save' => false,
2669 + 'fields' => apply_filters( 'betterdocs_ai_chatbot_fields', array(
2670 + 'ai_chatbot_fields' => array(
2671 + 'name' => 'ai_chatbot_fields',
2672 + 'type' => 'section',
2673 + 'priority' => 0,
2674 + 'fields' => array(
2675 + 'enable_ai_chatbot' => array(
2676 + 'name' => 'enable_ai_chatbot',
2677 + 'label' => __( 'AI Chatbot', 'betterdocs' ),
2678 + 'description' => __( 'Enable AI Chatbot', 'betterdocs' ),
2679 + 'type' => 'toggle',
2680 + 'priority' => 5,
2681 + 'default' => 0,
2682 + 'is_pro' => true,
2683 + 'is_license_active' => false,
2684 + 'disabled' => ! betterdocs()->is_pro_active() || ! defined( 'BETTERDOCS_CHATBOT_FILE' )
2685 + ),
2686 + 'instant_answer_warning' => array(
2687 + 'name' => 'instant_answer_warning',
2688 + 'type' => 'html',
2689 + 'priority' => 6,
2690 + 'html' => sprintf(
2691 + '<div class="betterdocs-ia-warning" style="margin:8px 0 0;padding:12px 16px;background:#fffaeb;border-left:4px solid #fdb022;border-radius:4px;display:flex;align-items:flex-start;gap:10px;"><span style="font-size:18px;line-height:1;flex-shrink:0;color:#b54708;">&#9888;</span><div style="font-size:13px;color:#202223;line-height:1.5;">%1$s<br><a href="?page=betterdocs-settings&amp;tab=tab-instant-answer" style="display:inline-block;margin-top:6px;color:#5a6bff;text-decoration:none;font-weight:500;">%2$s &rarr;</a></div></div>',
2692 + esc_html__( 'Instant Answer is currently disabled. The AI Chatbot won\'t appear on your site until Instant Answer is enabled.', 'betterdocs' ),
2693 + esc_html__( 'Enable Instant Answer', 'betterdocs' )
2694 + ),
2695 + 'rules' => Rules::logicalRule( array(
2696 + Rules::is( 'enable_ai_chatbot', true ),
2697 + Rules::is( 'enable_disable', false ),
2698 + ), 'and' ),
2699 + )
2700 + )
2701 + )
2702 + ) )
2703 + )
2704 + )
2705 + ) )
2706 + ) ),
2707 + 'TAB_AI_CHATBOT' => get_option( 'enable_ai_chatbot' ),
2708 + 'CHATBOT_LICENSE' => get_option( 'betterdocs_chatbot_software__license_status' ),
2709 + 'PRO_ACTIVE' => is_plugin_active( 'betterdocs-pro/betterdocs-pro.php' ),
2710 + 'PRO_LICENSE' => get_option( 'betterdocs_pro_software__license_status' )
2711 + );
2404 2712
2405 - /**
2406 - * Call This Function As Helper, When Pro Is Deactivated, To Be Used As Settings Default Values, When Betterdocs Pro Is Deactivated
2407 - *
2408 - * @return array
2409 - */
2410 - public function pro_settings_default_values() {
2411 - return [
2412 - 'multiple_kb' => false,
2413 - 'enable_glossaries' => false,
2414 - 'enable_encyclopedia' => false,
2415 - 'analytics_from' => false,
2416 - 'unique_visitor_count' => false,
2417 - 'exclude_bot_analytics' => false,
2418 - 'show_attachment' => false,
2419 - 'show_related_docs' => false,
2420 - 'advance_search' => false,
2421 - 'child_category_exclude' => false,
2422 - 'kb_based_search' => false,
2423 - 'enable_disable' => false,
2424 - 'enable_content_restriction' => false
2425 - ];
2426 - }
2713 + $settings = array_merge( $settings, $this->chatbot_active_localize() );
2427 2714
2428 - public function import_export_settings( $settings ) {
2429 - if ( ! current_user_can( 'import' ) ) {
2430 - return $settings;
2431 - }
2715 + return apply_filters( 'betterdocs_settings_args', $settings );
2716 + }
2432 2717
2433 - $settings['tab-import-export'] = apply_filters( 'betterdocs_settings_tab_import_export', [
2434 - 'id' => 'tab-import-export',
2435 - 'name' => 'tab-import-export',
2436 - 'classes' => 'tab-import-export',
2437 - 'label' => __( 'Import / Export', 'betterdocs' ),
2438 - 'priority' => 80,
2439 - 'fields' => [
2440 - 'sections-import-export' => [
2441 - 'name' => 'sections-import-export',
2442 - 'type' => 'section',
2443 - 'label' => __( 'Import / Export', 'betterdocs' ),
2444 - 'priority' => 30,
2445 - 'fields' => [
2446 - 'all-tab-import-export' => [
2447 - 'id' => 'all-tab-import-export',
2448 - 'name' => 'all-tab-import-export',
2449 - 'label' => __( 'Import Export Settings', 'betterdocs' ),
2450 - 'classes' => 'tab-layout',
2451 - 'type' => 'tab',
2452 - 'active' => 'import',
2453 - 'completionTrack' => true,
2454 - 'sidebar' => false,
2455 - 'save' => false,
2456 - 'title' => false,
2457 - 'config' => [
2458 - 'active' => 'import',
2459 - 'sidebar' => false,
2460 - 'title' => false
2461 - ],
2462 - 'submit' => [
2463 - 'show' => false
2464 - ],
2465 - 'step' => [
2466 - 'show' => false
2467 - ],
2468 - 'priority' => 20,
2469 - 'fields' => [
2470 - 'import' => [
2471 - 'id' => 'import',
2472 - 'name' => 'import',
2473 - 'type' => 'section',
2474 - 'label' => __( 'Import', 'betterdocs' ),
2475 - 'priority' => 1,
2476 - 'fields' => [
2477 - 'import_tab_nested' => [
2478 - 'id' => 'import_tab_nested',
2479 - 'name' => 'import_tab_nested',
2480 - 'label' => __( 'Import', 'betterdocs' ),
2481 - 'classes' => 'tab-nested-layout',
2482 - 'type' => 'tab',
2483 - 'active' => 'import_docs_nested',
2484 - 'completionTrack' => true,
2485 - 'sidebar' => false,
2486 - 'save' => false,
2487 - 'title' => false,
2488 - 'config' => [
2489 - 'active' => 'import_docs_nested',
2490 - 'sidebar' => false,
2491 - 'title' => false
2492 - ],
2493 - 'submit' => [
2494 - 'show' => false
2495 - ],
2496 - 'step' => [
2497 - 'show' => false
2498 - ],
2499 - 'priority' => 1,
2500 - 'fields' => [
2501 - 'import_docs_nested' => [
2502 - 'id' => 'import_docs_nested',
2503 - 'name' => 'import_docs_nested',
2504 - 'type' => 'section',
2505 - 'label' => __( 'Import Docs', 'betterdocs' ),
2506 - 'priority' => 1,
2507 - 'fields' => [
2508 - 'import_docs' => [
2509 - 'name' => 'import_docs',
2510 - 'type' => 'importerupload',
2511 - 'label' => __( 'Import Docs', 'betterdocs' ),
2512 - 'label_subtitle' => wp_sprintf( // Translators: %1$s is a link to download a sample CSV file.
2513 - __( 'To import your Docs, please upload the .xml / .csv file here. <a href="%1$s">Download sample csv file</a>', 'betterdocs' ), betterdocs()->assets->icon( 'BetterDocs-sample-data.csv', true ) ),
2514 - 'text' => [
2515 - 'normal' => __( 'Proceed', 'betterdocs' ),
2516 - 'saved' => __( 'Proceed', 'betterdocs' ),
2517 - 'loading' => __( 'Importing...', 'betterdocs' ),
2518 - 'exists_notice' => __( 'It seems like documentations with same slugs already exist on your website. What would you like to do?', 'betterdocs' )
2519 - ],
2520 - 'ajax' => [
2521 - 'on' => 'click',
2522 - 'api' => '/betterdocs/v1/import-docs',
2523 - 'swal' => [
2524 - 'text' => __( 'Import completed successfully.', 'betterdocs' ),
2525 - 'icon' => 'success',
2526 - 'autoClose' => 2000
2527 - ]
2528 - ],
2529 - 'file_type' => '.xml, .csv',
2530 - 'priority' => 1
2531 - ]
2532 - ]
2533 - ],
2718 + /**
2719 + * @return array
2720 + */
2721 + public function chatbot_active_localize() {
2722 + $chatbot_active = is_plugin_active( 'betterdocs-ai-chatbot/betterdocs-ai-chatbot.php' );
2723 + $chatbot_license_valid = get_option( 'betterdocs_chatbot_software__license_status' ) === 'valid';
2724 + $chatbot_enabled = $this->get( 'enable_ai_chatbot', false );
2534 2725
2535 - 'import_settings_nested' => [
2536 - 'id' => 'import_settings_nested',
2537 - 'name' => 'import_settings_nested',
2538 - 'type' => 'section',
2539 - 'label' => __( 'Import Settings', 'betterdocs' ),
2540 - 'priority' => 1,
2541 - 'fields' => [
2542 - 'settings_importer' => [
2543 - 'name' => 'settings_importer',
2544 - 'type' => 'settingsuploader',
2545 - 'label' => __( 'Import Settings', 'betterdocs' ),
2546 - 'label_subtitle' => __( 'To import BetterDocs Settings, please upload BetterDocs settings you have exported from another website in .json format', 'betterdocs' ),
2547 - 'reset' => __( 'Change', 'betterdocs' ),
2548 - 'priority' => 1
2549 - ],
2550 - 'import_settings' => [
2551 - 'name' => 'import_settings',
2552 - 'type' => 'button',
2553 - 'rules' => Rules::is( 'settings_importer', null, true ),
2554 - 'text' => [
2555 - 'normal' => __( 'Proceed', 'betterdocs' ),
2556 - 'saved' => __( 'Proceed', 'betterdocs' ),
2557 - 'loading' => __( 'Importing...', 'betterdocs' )
2558 - ],
2559 - 'ajax' => [
2560 - 'on' => 'click',
2561 - 'api' => '/betterdocs/v1/import-settings',
2562 - 'data' => [
2563 - 'settings' => '@settings_importer'
2564 - ],
2565 - 'swal' => [
2566 - 'text' => __( 'Import completed successfully.', 'betterdocs' ),
2567 - 'icon' => 'success',
2568 - 'autoClose' => 1000
2569 - ],
2570 - 'reload' => true
2571 - ],
2572 - 'priority' => 2
2573 - ]
2574 - ]
2575 - ]
2576 - ]
2577 - ]
2578 - ]
2579 - ],
2580 - 'export' => [
2581 - 'id' => 'export',
2582 - 'name' => 'export',
2583 - 'type' => 'section',
2584 - 'label' => __( 'Export', 'betterdocs' ),
2585 - 'priority' => 1,
2586 - 'fields' => [
2587 - 'export_tab_nested' => [
2588 - 'id' => 'export_tab_nested',
2589 - 'name' => 'export_tab_nested',
2590 - 'label' => __( 'Export', 'betterdocs' ),
2591 - 'classes' => 'tab-nested-layout',
2592 - 'type' => 'tab',
2593 - 'active' => 'export_docs_nested',
2594 - 'completionTrack' => true,
2595 - 'sidebar' => false,
2596 - 'save' => false,
2597 - 'title' => false,
2598 - 'config' => [
2599 - 'active' => 'export_docs_nested',
2600 - 'sidebar' => false,
2601 - 'title' => false
2602 - ],
2603 - 'submit' => [
2604 - 'show' => false
2605 - ],
2606 - 'step' => [
2607 - 'show' => false
2608 - ],
2609 - 'priority' => 1,
2610 - 'fields' => [
2611 - 'export_docs_nested' => [
2612 - 'id' => 'export_docs_nested',
2613 - 'name' => 'export_docs_nested',
2614 - 'type' => 'section',
2615 - 'label' => __( 'Export Docs', 'betterdocs' ),
2616 - 'priority' => 1,
2617 - 'fields' => apply_filters( 'betterdocs_export_fields', [
2618 - 'export_type' => [
2619 - 'name' => 'export_type',
2620 - 'label' => __( 'Select Docs Type', 'betterdocs' ),
2621 - 'label_subtitle' => __( 'Choose an export type: All Docs, a specific Knowledge Base, or a Doc Category', 'betterdocs' ),
2622 - 'type' => 'select',
2623 - 'default' => 'docs',
2624 - 'priority' => 3,
2625 - 'search' => true,
2626 - 'options' => $this->normalize_options( apply_filters( 'betterdocs_export_type_options', [
2627 - 'docs' => __( 'Docs', 'betterdocs' ),
2628 - 'doc_category' => __( 'Docs Category', 'betterdocs' ),
2629 - 'glossaries' => __( 'Glossaries', 'betterdocs' )
2630 - ] ) )
2631 - ],
2632 - 'export_docs' => [
2633 - 'name' => 'export_docs',
2634 - 'type' => 'checkbox-select',
2635 - 'label' => __( 'Select Docs', 'betterdocs' ),
2636 - 'label_subtitle' => __( 'Selected docs will be included in the export.', 'betterdocs' ),
2637 - 'priority' => 4,
2638 - 'multiple' => true,
2639 - 'search' => true,
2640 - 'default' => [ 'all' ],
2641 - 'placeholder' => __( 'Select any', 'betterdocs' ),
2642 - 'options' => array_merge( [
2643 - [
2644 - 'value' => 'all',
2645 - 'label' => 'All'
2646 - ]
2647 - ], $this->docs() ),
2648 - 'filterValue' => 'all',
2649 - 'rules' => Rules::is( 'export_type', 'docs' )
2650 - ],
2651 - 'export_categories' => [
2652 - 'name' => 'export_categories',
2653 - 'type' => 'checkbox-select',
2654 - 'label' => __( 'Select Categories', 'betterdocs' ),
2655 - 'label_subtitle' => __( 'Selected categories and its docs will be included in the export.', 'betterdocs' ),
2656 - 'priority' => 6,
2657 - 'multiple' => true,
2658 - 'search' => true,
2659 - 'default' => [ 'all' ],
2660 - 'placeholder' => __( 'Select any', 'betterdocs' ),
2661 - 'options' => $this->get_terms( 'doc_category', false ),
2662 - 'filterValue' => 'all',
2663 - 'rules' => Rules::is( 'export_type', 'doc_category' )
2664 - ],
2665 - 'export_glossaries' => [
2666 - 'name' => 'export_glossaries',
2667 - 'type' => 'checkbox-select',
2668 - 'label' => __( 'Select Glossaries', 'betterdocs' ),
2669 - 'label_subtitle' => __( 'Selected glossary terms will be exported.', 'betterdocs' ),
2670 - 'priority' => 7,
2671 - 'multiple' => true,
2672 - 'search' => true,
2673 - 'default' => [ 'all' ],
2674 - 'placeholder' => __( 'Select any', 'betterdocs' ),
2675 - 'options' => $this->get_terms( 'glossaries' ),
2676 - 'filterValue' => 'all',
2677 - 'rules' => Rules::is( 'export_type', 'glossaries' )
2678 - ],
2679 - 'file_type' => [
2680 - 'name' => 'file_type',
2681 - 'label' => __( 'Select File Type', 'betterdocs' ),
2682 - 'label_subtitle' => __( 'Choose a file type', 'betterdocs' ),
2683 - 'type' => 'select',
2684 - 'default' => 'xml',
2685 - 'priority' => 8,
2686 - 'search' => true,
2687 - 'options' => $this->normalize_options( apply_filters( 'betterdocs_export_file_type_options', [
2688 - 'xml' => __( '.xml', 'betterdocs' ),
2689 - 'csv' => __( '.csv', 'betterdocs' )
2690 - ] ) )
2691 - ],
2692 - 'enable_export_faq' => [
2693 - 'name' => 'enable_export_faq',
2694 - 'type' => 'toggle',
2695 - 'priority' => 9,
2696 - 'label' => __( 'Export FAQ', 'betterdocs' ),
2697 - 'label_subtitle' => __( 'Export FAQ Related Terms & Posts', 'betterdocs' ),
2698 - 'enable_disable_text_active' => true,
2699 - 'default' => true,
2700 - 'rules' => Rules::is( 'export_type', 'glossaries', true )
2701 - ],
2702 - 'export_docs_btn' => [
2703 - 'name' => 'export_docs_btn',
2704 - 'text' => [
2705 - 'normal' => __( 'Proceed', 'betterdocs' ),
2706 - 'saved' => __( 'Proceed', 'betterdocs' ),
2707 - 'loading' => __( 'Exporting...', 'betterdocs' )
2708 - ],
2709 - 'type' => 'button',
2710 - 'priority' => 10,
2711 - 'ajax' => [
2712 - 'on' => 'click',
2713 - 'api' => '/betterdocs/v1/export-docs',
2714 - 'data' => [
2715 - 'export_type' => '@export_type',
2716 - 'export_docs' => '@export_docs',
2717 - 'export_kbs' => '@export_kbs',
2718 - 'export_categories' => '@export_categories',
2719 - 'export_glossaries' => '@export_glossaries',
2720 - 'file_type' => '@file_type',
2721 - 'enable_export_faq' => '@enable_export_faq'
2722 - ],
2723 - 'swal' => [
2724 - 'text' => __( 'Exported Successfully.', 'betterdocs' ),
2725 - 'icon' => 'success',
2726 - 'autoClose' => 2000
2727 - ]
2728 - ]
2729 - ]
2730 - ] )
2731 - ],
2726 + // AI Search Suggestions are enabled if all conditions are met
2727 + $ai_search_suggestions_enabled = betterdocs()->helper->is_ai_chatbot_enabled();
2732 2728
2733 - 'export_settings_nested' => [
2734 - 'id' => 'export_settings_nested',
2735 - 'name' => 'export_settings_nested',
2736 - 'type' => 'section',
2737 - 'label' => __( 'Export Settings', 'betterdocs' ),
2738 - 'priority' => 1,
2739 - 'fields' => [
2740 - 'export_settings' => [
2741 - 'name' => 'export_settings',
2742 - 'label' => __( 'Export Settings', 'betterdocs' ),
2743 - 'label_subtitle' => __( 'Simply click on “Export Settings” button to download your BetterDocs settings in .json format', 'betterdocs' ),
2744 - 'text' => [
2745 - 'normal' => __( 'Export Settings', 'betterdocs' ),
2746 - 'saved' => __( 'Export Settings', 'betterdocs' ),
2747 - 'loading' => __( 'Exporting...', 'betterdocs' )
2748 - ],
2749 - 'type' => 'button',
2750 - 'priority' => 8,
2751 - 'ajax' => [
2752 - 'on' => 'click',
2753 - 'api' => '/betterdocs/v1/export-settings',
2754 - 'data' => [
2755 - 'betterdocs_settings' => get_option( 'betterdocs_settings' )
2756 - ],
2757 - 'swal' => [
2758 - 'text' => __( 'File downloaded successfully.', 'betterdocs' ),
2759 - 'icon' => 'success',
2760 - 'autoClose' => 2000
2761 - ]
2762 - ]
2763 - ]
2764 - ]
2765 - ]
2766 - ]
2767 - ]
2768 - ]
2769 - ]
2770 - ]
2771 - ]
2772 - ]
2773 - ]
2774 - ]
2775 - ] );
2729 + return array(
2730 + 'CHATBOT_ACTIVE' => $chatbot_active,
2731 + 'CHATBOT_LICENSE_VALID' => $chatbot_license_valid,
2732 + 'CHATBOT_ENABLED' => $chatbot_enabled,
2733 + 'AI_SEARCH_SUGGESTIONS_ENABLED' => $ai_search_suggestions_enabled
2734 + );
2735 + }
2776 2736
2777 - return $settings;
2778 - }
2737 + /**
2738 + * Call This Function As Helper, When Pro Is Deactivated, To Be Used As Settings Default Values, When Betterdocs Pro Is Deactivated
2739 + *
2740 + * @return array
2741 + */
2742 + public function pro_settings_default_values() {
2743 + return array(
2744 + 'multiple_kb' => false,
2745 + 'enable_glossaries' => false,
2746 + 'enable_encyclopedia' => false,
2747 + 'analytics_from' => false,
2748 + 'unique_visitor_count' => false,
2749 + 'exclude_bot_analytics' => false,
2750 + 'show_attachment' => false,
2751 + 'show_related_docs' => false,
2752 + 'advance_search' => false,
2753 + 'child_category_exclude' => false,
2754 + 'kb_based_search' => false,
2755 + 'enable_disable' => false,
2756 + 'enable_content_restriction' => false
2757 + );
2758 + }
2779 2759
2780 - public function maybe_remove_git_tab( $tabs ) {
2781 - $pro_active = is_plugin_active( 'betterdocs-pro/betterdocs-pro.php' );
2782 - $pro_has_git = apply_filters( 'betterdocs_pro_has_git_integration', false );
2760 + public function import_export_settings( $settings ) {
2761 + if ( ! current_user_can( 'import' ) ) {
2762 + return $settings;
2763 + }
2783 2764
2784 - if ( $pro_active && ! $pro_has_git ) {
2785 - unset( $tabs['tab-git-sync'] );
2786 - }
2765 + $settings[ 'tab-import-export' ] = apply_filters( 'betterdocs_settings_tab_import_export', array(
2766 + 'id' => 'tab-import-export',
2767 + 'name' => 'tab-import-export',
2768 + 'classes' => 'tab-import-export',
2769 + 'label' => __( 'Import / Export', 'betterdocs' ),
2770 + 'priority' => 80,
2771 + 'fields' => array(
2772 + 'sections-import-export' => array(
2773 + 'name' => 'sections-import-export',
2774 + 'type' => 'section',
2775 + 'label' => __( 'Import / Export', 'betterdocs' ),
2776 + 'priority' => 30,
2777 + 'fields' => array(
2778 + 'all-tab-import-export' => array(
2779 + 'id' => 'all-tab-import-export',
2780 + 'name' => 'all-tab-import-export',
2781 + 'label' => __( 'Import Export Settings', 'betterdocs' ),
2782 + 'classes' => 'tab-layout',
2783 + 'type' => 'tab',
2784 + 'active' => 'import',
2785 + 'completionTrack' => true,
2786 + 'sidebar' => false,
2787 + 'save' => false,
2788 + 'title' => false,
2789 + 'config' => array(
2790 + 'active' => 'import',
2791 + 'sidebar' => false,
2792 + 'title' => false
2793 + ),
2794 + 'submit' => array(
2795 + 'show' => false
2796 + ),
2797 + 'step' => array(
2798 + 'show' => false
2799 + ),
2800 + 'priority' => 20,
2801 + 'fields' => array(
2802 + 'import' => array(
2803 + 'id' => 'import',
2804 + 'name' => 'import',
2805 + 'type' => 'section',
2806 + 'label' => __( 'Import', 'betterdocs' ),
2807 + 'priority' => 1,
2808 + 'fields' => array(
2809 + 'import_tab_nested' => array(
2810 + 'id' => 'import_tab_nested',
2811 + 'name' => 'import_tab_nested',
2812 + 'label' => __( 'Import', 'betterdocs' ),
2813 + 'classes' => 'tab-nested-layout',
2814 + 'type' => 'tab',
2815 + 'active' => 'import_docs_nested',
2816 + 'completionTrack' => true,
2817 + 'sidebar' => false,
2818 + 'save' => false,
2819 + 'title' => false,
2820 + 'config' => array(
2821 + 'active' => 'import_docs_nested',
2822 + 'sidebar' => false,
2823 + 'title' => false
2824 + ),
2825 + 'submit' => array(
2826 + 'show' => false
2827 + ),
2828 + 'step' => array(
2829 + 'show' => false
2830 + ),
2831 + 'priority' => 1,
2832 + 'fields' => array(
2833 + 'import_docs_nested' => array(
2834 + 'id' => 'import_docs_nested',
2835 + 'name' => 'import_docs_nested',
2836 + 'type' => 'section',
2837 + 'label' => __( 'Import Docs', 'betterdocs' ),
2838 + 'priority' => 1,
2839 + 'fields' => array(
2840 + 'import_docs' => array(
2841 + 'name' => 'import_docs',
2842 + 'type' => 'importerupload',
2843 + 'label' => __( 'Import Docs', 'betterdocs' ),
2844 + 'label_subtitle' => wp_sprintf( // Translators: %1$s is a link to download a sample CSV file.
2845 + __( 'To import your Docs, please upload the .xml / .csv file here. <a href="%1$s">Download sample csv file</a>', 'betterdocs' ), betterdocs()->assets->icon( 'BetterDocs-sample-data.csv', true ) ),
2846 + 'text' => array(
2847 + 'normal' => __( 'Proceed', 'betterdocs' ),
2848 + 'saved' => __( 'Proceed', 'betterdocs' ),
2849 + 'loading' => __( 'Importing...', 'betterdocs' ),
2850 + 'exists_notice' => __( 'It seems like documentations with same slugs already exist on your website. What would you like to do?', 'betterdocs' )
2851 + ),
2852 + 'ajax' => array(
2853 + 'on' => 'click',
2854 + 'api' => '/betterdocs/v1/import-docs',
2855 + 'swal' => array(
2856 + 'text' => __( 'Import completed successfully.', 'betterdocs' ),
2857 + 'icon' => 'success',
2858 + 'autoClose' => 2000
2859 + )
2860 + ),
2861 + 'file_type' => '.xml, .csv',
2862 + 'priority' => 1
2863 + )
2864 + )
2865 + ),
2787 2866
2788 - return $tabs;
2789 - }
2867 + 'import_settings_nested' => array(
2868 + 'id' => 'import_settings_nested',
2869 + 'name' => 'import_settings_nested',
2870 + 'type' => 'section',
2871 + 'label' => __( 'Import Settings', 'betterdocs' ),
2872 + 'priority' => 1,
2873 + 'fields' => array(
2874 + 'settings_importer' => array(
2875 + 'name' => 'settings_importer',
2876 + 'type' => 'settingsuploader',
2877 + 'label' => __( 'Import Settings', 'betterdocs' ),
2878 + 'label_subtitle' => __( 'To import BetterDocs Settings, please upload BetterDocs settings you have exported from another website in .json format', 'betterdocs' ),
2879 + 'reset' => __( 'Change', 'betterdocs' ),
2880 + 'priority' => 1
2881 + ),
2882 + 'import_settings' => array(
2883 + 'name' => 'import_settings',
2884 + 'type' => 'button',
2885 + 'rules' => Rules::is( 'settings_importer', null, true ),
2886 + 'text' => array(
2887 + 'normal' => __( 'Proceed', 'betterdocs' ),
2888 + 'saved' => __( 'Proceed', 'betterdocs' ),
2889 + 'loading' => __( 'Importing...', 'betterdocs' )
2890 + ),
2891 + 'ajax' => array(
2892 + 'on' => 'click',
2893 + 'api' => '/betterdocs/v1/import-settings',
2894 + 'data' => array(
2895 + 'settings' => '@settings_importer'
2896 + ),
2897 + 'swal' => array(
2898 + 'text' => __( 'Import completed successfully.', 'betterdocs' ),
2899 + 'icon' => 'success',
2900 + 'autoClose' => 1000
2901 + ),
2902 + 'reload' => true
2903 + ),
2904 + 'priority' => 2
2905 + )
2906 + )
2907 + )
2908 + )
2909 + )
2910 + )
2911 + ),
2912 + 'export' => array(
2913 + 'id' => 'export',
2914 + 'name' => 'export',
2915 + 'type' => 'section',
2916 + 'label' => __( 'Export', 'betterdocs' ),
2917 + 'priority' => 1,
2918 + 'fields' => array(
2919 + 'export_tab_nested' => array(
2920 + 'id' => 'export_tab_nested',
2921 + 'name' => 'export_tab_nested',
2922 + 'label' => __( 'Export', 'betterdocs' ),
2923 + 'classes' => 'tab-nested-layout',
2924 + 'type' => 'tab',
2925 + 'active' => 'export_docs_nested',
2926 + 'completionTrack' => true,
2927 + 'sidebar' => false,
2928 + 'save' => false,
2929 + 'title' => false,
2930 + 'config' => array(
2931 + 'active' => 'export_docs_nested',
2932 + 'sidebar' => false,
2933 + 'title' => false
2934 + ),
2935 + 'submit' => array(
2936 + 'show' => false
2937 + ),
2938 + 'step' => array(
2939 + 'show' => false
2940 + ),
2941 + 'priority' => 1,
2942 + 'fields' => array(
2943 + 'export_docs_nested' => array(
2944 + 'id' => 'export_docs_nested',
2945 + 'name' => 'export_docs_nested',
2946 + 'type' => 'section',
2947 + 'label' => __( 'Export Docs', 'betterdocs' ),
2948 + 'priority' => 1,
2949 + 'fields' => apply_filters( 'betterdocs_export_fields', array(
2950 + 'export_type' => array(
2951 + 'name' => 'export_type',
2952 + 'label' => __( 'Select Docs Type', 'betterdocs' ),
2953 + 'label_subtitle' => __( 'Choose an export type: All Docs, a specific Knowledge Base, or a Doc Category', 'betterdocs' ),
2954 + 'type' => 'select',
2955 + 'default' => 'docs',
2956 + 'priority' => 3,
2957 + 'search' => true,
2958 + 'options' => $this->normalize_options( apply_filters( 'betterdocs_export_type_options', array(
2959 + 'docs' => __( 'Docs', 'betterdocs' ),
2960 + 'doc_category' => __( 'Docs Category', 'betterdocs' ),
2961 + 'glossaries' => __( 'Glossaries', 'betterdocs' )
2962 + ) ) )
2963 + ),
2964 + 'export_docs' => array(
2965 + 'name' => 'export_docs',
2966 + 'type' => 'checkbox-select',
2967 + 'label' => __( 'Select Docs', 'betterdocs' ),
2968 + 'label_subtitle' => __( 'Selected docs will be included in the export.', 'betterdocs' ),
2969 + 'priority' => 4,
2970 + 'multiple' => true,
2971 + 'search' => true,
2972 + 'default' => array( 'all' ),
2973 + 'placeholder' => __( 'Select any', 'betterdocs' ),
2974 + 'options' => array_merge( array(
2975 + array(
2976 + 'value' => 'all',
2977 + 'label' => 'All'
2978 + )
2979 + ), $this->docs() ),
2980 + 'filterValue' => 'all',
2981 + 'rules' => Rules::is( 'export_type', 'docs' )
2982 + ),
2983 + 'export_categories' => array(
2984 + 'name' => 'export_categories',
2985 + 'type' => 'checkbox-select',
2986 + 'label' => __( 'Select Categories', 'betterdocs' ),
2987 + 'label_subtitle' => __( 'Selected categories and its docs will be included in the export.', 'betterdocs' ),
2988 + 'priority' => 6,
2989 + 'multiple' => true,
2990 + 'search' => true,
2991 + 'default' => array( 'all' ),
2992 + 'placeholder' => __( 'Select any', 'betterdocs' ),
2993 + 'options' => $this->get_terms( 'doc_category', false ),
2994 + 'filterValue' => 'all',
2995 + 'rules' => Rules::is( 'export_type', 'doc_category' )
2996 + ),
2997 + 'export_glossaries' => array(
2998 + 'name' => 'export_glossaries',
2999 + 'type' => 'checkbox-select',
3000 + 'label' => __( 'Select Glossaries', 'betterdocs' ),
3001 + 'label_subtitle' => __( 'Selected glossary terms will be exported.', 'betterdocs' ),
3002 + 'priority' => 7,
3003 + 'multiple' => true,
3004 + 'search' => true,
3005 + 'default' => array( 'all' ),
3006 + 'placeholder' => __( 'Select any', 'betterdocs' ),
3007 + 'options' => $this->get_terms( 'glossaries' ),
3008 + 'filterValue' => 'all',
3009 + 'rules' => Rules::is( 'export_type', 'glossaries' )
3010 + ),
3011 + 'file_type' => array(
3012 + 'name' => 'file_type',
3013 + 'label' => __( 'Select File Type', 'betterdocs' ),
3014 + 'label_subtitle' => __( 'Choose a file type', 'betterdocs' ),
3015 + 'type' => 'select',
3016 + 'default' => 'xml',
3017 + 'priority' => 8,
3018 + 'search' => true,
3019 + 'options' => $this->normalize_options( apply_filters( 'betterdocs_export_file_type_options', array(
3020 + 'xml' => __( '.xml', 'betterdocs' ),
3021 + 'csv' => __( '.csv', 'betterdocs' )
3022 + ) ) )
3023 + ),
3024 + 'enable_export_faq' => array(
3025 + 'name' => 'enable_export_faq',
3026 + 'type' => 'toggle',
3027 + 'priority' => 9,
3028 + 'label' => __( 'Export FAQ', 'betterdocs' ),
3029 + 'label_subtitle' => __( 'Export FAQ Related Terms & Posts', 'betterdocs' ),
3030 + 'enable_disable_text_active' => true,
3031 + 'default' => true,
3032 + 'rules' => Rules::is( 'export_type', 'glossaries', true )
3033 + ),
3034 + 'export_docs_btn' => array(
3035 + 'name' => 'export_docs_btn',
3036 + 'text' => array(
3037 + 'normal' => __( 'Proceed', 'betterdocs' ),
3038 + 'saved' => __( 'Proceed', 'betterdocs' ),
3039 + 'loading' => __( 'Exporting...', 'betterdocs' )
3040 + ),
3041 + 'type' => 'button',
3042 + 'priority' => 10,
3043 + 'ajax' => array(
3044 + 'on' => 'click',
3045 + 'api' => '/betterdocs/v1/export-docs',
3046 + 'data' => array(
3047 + 'export_type' => '@export_type',
3048 + 'export_docs' => '@export_docs',
3049 + 'export_kbs' => '@export_kbs',
3050 + 'export_categories' => '@export_categories',
3051 + 'export_glossaries' => '@export_glossaries',
3052 + 'file_type' => '@file_type',
3053 + 'enable_export_faq' => '@enable_export_faq'
3054 + ),
3055 + 'swal' => array(
3056 + 'text' => __( 'Exported Successfully.', 'betterdocs' ),
3057 + 'icon' => 'success',
3058 + 'autoClose' => 2000
3059 + )
3060 + )
3061 + )
3062 + ) )
3063 + ),
2790 3064
2791 - public function normalize_options( $options ) {
2792 - return GlobalFields::normalize_fields( $options );
2793 - }
3065 + 'export_settings_nested' => array(
3066 + 'id' => 'export_settings_nested',
3067 + 'name' => 'export_settings_nested',
3068 + 'type' => 'section',
3069 + 'label' => __( 'Export Settings', 'betterdocs' ),
3070 + 'priority' => 1,
3071 + 'fields' => array(
3072 + 'export_settings' => array(
3073 + 'name' => 'export_settings',
3074 + 'label' => __( 'Export Settings', 'betterdocs' ),
3075 + 'label_subtitle' => __( 'Simply click on “Export Settings” button to download your BetterDocs settings in .json format', 'betterdocs' ),
3076 + 'text' => array(
3077 + 'normal' => __( 'Export Settings', 'betterdocs' ),
3078 + 'saved' => __( 'Export Settings', 'betterdocs' ),
3079 + 'loading' => __( 'Exporting...', 'betterdocs' )
3080 + ),
3081 + 'type' => 'button',
3082 + 'priority' => 8,
3083 + 'ajax' => array(
3084 + 'on' => 'click',
3085 + 'api' => '/betterdocs/v1/export-settings',
3086 + 'data' => array(
3087 + 'betterdocs_settings' => get_option( 'betterdocs_settings' )
3088 + ),
3089 + 'swal' => array(
3090 + 'text' => __( 'File downloaded successfully.', 'betterdocs' ),
3091 + 'icon' => 'success',
3092 + 'autoClose' => 2000
3093 + )
3094 + )
3095 + )
3096 + )
3097 + )
3098 + )
3099 + )
3100 + )
3101 + )
3102 + )
3103 + )
3104 + )
3105 + )
3106 + )
3107 + ) );
2794 3108
2795 - public function get_texanomy() {
2796 - $docs_tax = $this->database->get_cache( 'betterdocs::settings::taxonomies' );
3109 + return $settings;
3110 + }
2797 3111
2798 - if ( $docs_tax ) {
2799 - return $docs_tax;
2800 - }
3112 + public function maybe_remove_git_tab( $tabs ) {
3113 + $pro_active = is_plugin_active( 'betterdocs-pro/betterdocs-pro.php' );
3114 + $pro_has_git = apply_filters( 'betterdocs_pro_has_git_integration', false );
2801 3115
2802 - $taxonomies = get_taxonomies( [
2803 - 'object_type' => [ 'docs' ]
2804 - ], 'objects' );
3116 + if ( $pro_active && ! $pro_has_git ) {
3117 + unset( $tabs[ 'tab-git-sync' ] );
3118 + }
2805 3119
2806 - $docs_tax = [
2807 - 'all' => 'All Docs Archive',
2808 - 'docs' => 'Docs Page'
2809 - ];
2810 - foreach ( $taxonomies as $key => $value ) {
2811 - $docs_tax[ $key ] = $value->label;
2812 - }
2813 - unset( $docs_tax['doc_tag'] );
3120 + return $tabs;
3121 + }
2814 3122
2815 - $docs_tax = $this->normalize_options( $docs_tax );
2816 - if ( count( $docs_tax ) > 2 ) {
2817 - $this->database->set_cache( 'betterdocs::settings::taxonomies', $docs_tax );
2818 - }
3123 + public function normalize_options( $options ) {
3124 + return GlobalFields::normalize_fields( $options );
3125 + }
2819 3126
2820 - return $docs_tax;
2821 - }
3127 + public function get_texanomy() {
3128 + $docs_tax = $this->database->get_cache( 'betterdocs::settings::taxonomies' );
2822 3129
2823 - public function get_terms( $taxonomy, $hide_empty = true ) {
2824 - $_cache_key = 'betterdocs::settings::terms::' . trim( $taxonomy );
2825 - $docs_tax = $this->database->get_cache( $_cache_key );
3130 + if ( $docs_tax ) {
3131 + return $docs_tax;
3132 + }
2826 3133
2827 - if ( $docs_tax ) {
2828 - return $docs_tax;
2829 - }
3134 + $taxonomies = get_taxonomies( array(
3135 + 'object_type' => array( 'docs' )
3136 + ), 'objects' );
2830 3137
2831 - $get_terms = get_terms( [
2832 - 'taxonomy' => $taxonomy,
2833 - 'hide_empty' => $hide_empty
2834 - ] );
3138 + $docs_tax = array(
3139 + 'all' => 'All Docs Archive',
3140 + 'docs' => 'Docs Page'
3141 + );
3142 + foreach ( $taxonomies as $key => $value ) {
3143 + $docs_tax[ $key ] = $value->label;
3144 + }
3145 + unset( $docs_tax[ 'doc_tag' ] );
2835 3146
2836 - $terms = [
2837 - 'all' => 'All'
2838 - ];
3147 + $docs_tax = $this->normalize_options( $docs_tax );
3148 + if ( count( $docs_tax ) > 2 ) {
3149 + $this->database->set_cache( 'betterdocs::settings::taxonomies', $docs_tax );
3150 + }
2839 3151
2840 - if ( ! empty( $get_terms ) && ! is_wp_error( $get_terms ) ) {
2841 - foreach ( $get_terms as $value ) {
2842 - if ( isset( $value->slug ) && isset( $value->name ) ) {
2843 - $terms[ $value->slug ] = $value->name;
2844 - }
2845 - }
2846 - }
3152 + return $docs_tax;
3153 + }
2847 3154
2848 - $terms = $this->normalize_options( $terms );
2849 - if ( count( $terms ) > 1 ) {
2850 - $this->database->set_cache( $_cache_key, $terms );
2851 - }
3155 + public function get_terms( $taxonomy, $hide_empty = true ) {
3156 + $_cache_key = 'betterdocs::settings::terms::' . trim( $taxonomy );
3157 + $docs_tax = $this->database->get_cache( $_cache_key );
2852 3158
2853 - return $terms;
2854 - }
3159 + if ( $docs_tax ) {
3160 + return $docs_tax;
3161 + }
2855 3162
2856 - public function get_terms_with_ids( $taxonomy ) {
2857 - $_cache_key = 'betterdocs::settings::terms::ids' . trim( $taxonomy );
2858 - $docs_tax = $this->database->get_cache( $_cache_key );
3163 + $get_terms = get_terms( array(
3164 + 'taxonomy' => $taxonomy,
3165 + 'hide_empty' => $hide_empty
3166 + ) );
2859 3167
2860 - if ( $docs_tax ) {
2861 - return $docs_tax;
2862 - }
3168 + $terms = array(
3169 + 'all' => 'All'
3170 + );
2863 3171
2864 - $get_terms = get_terms( [
2865 - 'taxonomy' => $taxonomy,
2866 - 'hide_empty' => false,
2867 - 'suppress_filter' => true,
2868 - ] );
3172 + if ( ! empty( $get_terms ) && ! is_wp_error( $get_terms ) ) {
3173 + foreach ( $get_terms as $value ) {
3174 + if ( isset( $value->slug ) && isset( $value->name ) ) {
3175 + $terms[ $value->slug ] = $value->name;
3176 + }
3177 + }
3178 + }
2869 3179
2870 - $terms = [];
3180 + $terms = $this->normalize_options( $terms );
3181 + if ( count( $terms ) > 1 ) {
3182 + $this->database->set_cache( $_cache_key, $terms );
3183 + }
2871 3184
2872 - if ( ! empty( $get_terms ) && ! is_wp_error( $get_terms ) ) {
2873 - foreach ( $get_terms as $value ) {
2874 - if ( isset( $value->term_id ) && isset( $value->name ) ) {
2875 - $terms[ $value->term_id ] = $value->name;
2876 - }
2877 - }
2878 - }
3185 + return $terms;
3186 + }
2879 3187
2880 - $terms = $this->normalize_options( $terms );
2881 - if ( count( $terms ) > 1 ) {
2882 - $this->database->set_cache( $_cache_key, $terms );
2883 - }
3188 + public function get_terms_with_ids( $taxonomy ) {
3189 + $_cache_key = 'betterdocs::settings::terms::ids' . trim( $taxonomy );
3190 + $docs_tax = $this->database->get_cache( $_cache_key );
2884 3191
2885 - return $terms;
2886 - }
3192 + if ( $docs_tax ) {
3193 + return $docs_tax;
3194 + }
2887 3195
2888 - /**
2889 - * Get all docs
2890 - */
2891 - public function docs() {
2892 - $docs = $this->database->get_cache( 'betterdocs::settings::all_docs' );
3196 + $get_terms = get_terms( array(
3197 + 'taxonomy' => $taxonomy,
3198 + 'hide_empty' => false,
3199 + 'suppress_filter' => true
3200 + ) );
2893 3201
2894 - if ( $docs ) {
2895 - return $docs;
2896 - }
3202 + $terms = array();
2897 3203
2898 - $docs = [];
3204 + if ( ! empty( $get_terms ) && ! is_wp_error( $get_terms ) ) {
3205 + foreach ( $get_terms as $value ) {
3206 + if ( isset( $value->term_id ) && isset( $value->name ) ) {
3207 + $terms[ $value->term_id ] = $value->name;
3208 + }
3209 + }
3210 + }
2899 3211
2900 - $_docs = get_posts( [
2901 - 'post_type' => 'docs',
2902 - 'numberposts' => - 1,
2903 - 'posts_per_page' => - 1
2904 - ] );
3212 + $terms = $this->normalize_options( $terms );
3213 + if ( count( $terms ) > 1 ) {
3214 + $this->database->set_cache( $_cache_key, $terms );
3215 + }
2905 3216
2906 - if ( ! empty( $_docs ) ) {
2907 - foreach ( $_docs as $doc ) {
2908 - $docs[ $doc->ID ] = betterdocs()->template_helper->kses( $doc->post_title );
2909 - }
2910 - $docs = GlobalFields::normalize_fields( $docs );
2911 - $this->database->set_cache( 'betterdocs::settings::all_docs', $docs );
2912 - }
3217 + return $terms;
3218 + }
2913 3219
2914 - return $docs;
2915 - }
3220 + /**
3221 + * Get all docs
3222 + */
3223 + public function docs() {
3224 + $docs = $this->database->get_cache( 'betterdocs::settings::all_docs' );
2916 3225
2917 - public function hide_roles_management( $tabData = [] ) {
2918 - global $current_user;
3226 + if ( $docs ) {
3227 + return $docs;
3228 + }
2919 3229
2920 - if ( $current_user instanceof WP_User && ! in_array( 'administrator', $current_user->roles ) ) {
2921 - unset( $tabData['fields']['title-advance-settings']['fields']['article_roles'] );
2922 - unset( $tabData['fields']['title-advance-settings']['fields']['settings_roles'] );
2923 - unset( $tabData['fields']['title-advance-settings']['fields']['analytics_roles'] );
2924 - unset( $tabData['fields']['title-advance-settings']['fields']['faq_roles'] );
2925 - }
3230 + $docs = array();
2926 3231
2927 - return $tabData;
2928 - }
3232 + $_docs = get_posts( array(
3233 + 'post_type' => 'docs',
3234 + 'numberposts' => -1,
3235 + 'posts_per_page' => -1
3236 + ) );
3237 +
3238 + if ( ! empty( $_docs ) ) {
3239 + foreach ( $_docs as $doc ) {
3240 + $docs[ $doc->ID ] = betterdocs()->template_helper->kses( $doc->post_title );
3241 + }
3242 + $docs = GlobalFields::normalize_fields( $docs );
3243 + $this->database->set_cache( 'betterdocs::settings::all_docs', $docs );
3244 + }
3245 +
3246 + return $docs;
3247 + }
3248 +
3249 + public function hide_roles_management( $tabData = array() ) {
3250 + global $current_user;
3251 +
3252 + if ( $current_user instanceof WP_User && ! in_array( 'administrator', $current_user->roles ) ) {
3253 + unset( $tabData[ 'fields' ][ 'title-advance-settings' ][ 'fields' ][ 'article_roles' ] );
3254 + unset( $tabData[ 'fields' ][ 'title-advance-settings' ][ 'fields' ][ 'settings_roles' ] );
3255 + unset( $tabData[ 'fields' ][ 'title-advance-settings' ][ 'fields' ][ 'analytics_roles' ] );
3256 + unset( $tabData[ 'fields' ][ 'title-advance-settings' ][ 'fields' ][ 'faq_roles' ] );
3257 + }
3258 +
3259 + return $tabData;
3260 + }
2929 3261 }