container = $container; $this->assets = $assets; $this->settings = $settings; $this->kbmigration = $kbmigration; $this->slug = 'betterdocs-dashboard'; add_action( 'init', array( $type, 'register' ), 9 ); add_action( 'rest_api_init', array( $this, 'order_terms_in_wp_terms_admin_table' ) ); $type->init(); $type->admin_init(); $this->faq_builder = $this->container->get( FAQBuilder::class ); $this->glossaries = $this->container->get( Glossaries::class ); /** * Register usage tracking (including the daily `put_do_weekly_action` cron * handler) on every request — WP-Cron runs with is_admin() === false, so * this MUST sit above the admin guard or the cron send never fires. The * admin-only UI hooks inside Insights::init() (deactivation form, footer * scripts, plugin_action_links) are context-specific and simply never run * outside wp-admin. */ $this->plugin_insights(); if ( ! is_admin() ) { return; } $this->installer = new PluginInstaller(); add_action( 'admin_notices', array( $this, 'compatibility_notices' ) ); // The WPNotice CacheBank wipes all admin_notices at priority 10 on BetterDocs // screens, so the hook above never renders inside the BetterDocs panels. // Re-add the compatibility notice after that wipe (in_admin_header, priority // 999) so it shows on the panels like the review / license notices. add_action( 'in_admin_header', function () { $screen = function_exists( 'get_current_screen' ) ? get_current_screen() : null; if ( $screen && betterdocs()->is_betterdocs_screen( $screen->id ) ) { add_action( 'admin_notices', array( $this, 'compatibility_notices' ) ); } }, 999 ); // add_action( 'admin_init', [$this, 'notices'], 9 ); add_filter( 'admin_init', array( $this, 'save_admin_page' ), 99 ); add_action( 'admin_menu', array( $this, 'menus' ) ); // The badge's clear runs on `admin_init` — a hook that fires for every // admin request — and identifies the screen by its page slug, rather // than on `load-{$hook_suffix}` (ADR-065). `admin_init` fires *after* // `admin_menu`, measured on the rig, so the badge is still painted on // the request that opens the screen exactly as before. add_action( 'admin_init', array( $this, 'mark_mcp_seen' ) ); add_action( 'admin_menu', array( $this, 'reset_submenu' ) ); add_action( 'admin_head', array( $this, 'add_custom_classes_to_menu_items' ) ); add_action( 'admin_head', array( $this, 'mcp_badge_styles' ) ); add_filter( 'plugin_action_links_' . BETTERDOCS_PLUGIN_BASENAME, array( $this, 'insert_plugin_links' ) ); // $this->container->get( SetupWizard::class )->init(); add_action( 'admin_enqueue_scripts', array( $this, 'styles' ) ); add_action( 'admin_enqueue_scripts', array( $this, 'scripts' ) ); // add_action( 'betterdocs_listing_header', [ $this, 'header' ], 10, 1 ); add_action( 'admin_bar_menu', array( $this, 'toolbar_menu' ), 32 ); add_filter( 'admin_body_class', array( $this, 'body_classes' ) ); add_filter( 'parent_file', array( $type, 'highlight_admin_menu' ) ); add_filter( 'submenu_file', array( $type, 'highlight_admin_submenu' ), 10, 2 ); add_filter( 'betterdocs_admin_menu', array( $this, 'quick_setup_menu' ), 10, 1 ); /** * Remove Comments Column from List Table. */ add_filter( 'manage_docs_posts_columns', array( $this, 'set_custom_edit_action_columns' ) ); add_filter( 'manage_docs_posts_custom_column', array( $this, 'manage_custom_columns' ), 10, 2 ); /** * Add New Column */ add_filter( 'manage_users_columns', array( $this, 'add_users_total_docs_column' ), 10, 1 ); add_filter( 'manage_users_custom_column', array( $this, 'popular_users_docs_data' ), 10, 3 ); if ( is_plugin_active( 'betterdocs-pro/betterdocs-pro.php' ) ) { add_action( 'admin_footer-plugins.php', array( $this, 'disable_deactivation' ) ); } if ( $this->settings->get( 'enable_estimated_reading_time' ) ) { // Hook into unified metabox instead of creating separate metabox add_action( 'betterdocs_reading_time_tab_content', array( $this, 'render_estimated_time_markup' ) ); } self::$cache_bank = CacheBank::get_instance(); // Remove OLD notice from 1.0.0 (if other WPDeveloper plugin has notice) NoticeRemover::get_instance( '1.0.0' ); try { $this->notices(); } catch ( Exception $e ) { unset( $e ); } // Initialize Black Friday Pointer $this->init_black_friday_pointer(); // Register AJAX handler for pointer dismissal add_action( 'wp_ajax_betterdocs_dismiss_black_friday_pointer', array( $this, 'ajax_dismiss_black_friday_pointer' ) ); } public function order_terms_in_wp_terms_admin_table() { // order the terms correctly to be shown on the admin panel categories menu with betterdocs order add_action( 'rest_insert_doc_category', function ( $term, $request, $bool ) { $max_order = Helper::get_max_doc_category_order_from_term_meta() ?? 0; $next_order = $max_order + 1; update_term_meta( $term->term_id, 'doc_category_order', $next_order ); }, 10, 3 ); } public function disable_deactivation() { $tooltip_text = esc_html__( 'Deactivate BetterDocs Pro First', 'betterdocs' ); ?> __( 'Docs', 'betterdocs' ), ); $columns = array_merge( $columns, $new_column ); return $columns; } public function popular_users_docs_data( $output, $column_name, $user_id ) { if ( 'docs' == $column_name ) { $total_count = count_user_posts( $user_id, 'docs', true ); return ''; } return $output; } public function render_estimated_time_markup() { betterdocs()->views->get( 'admin/metabox/estimated-reading-box' ); } public function compatibility_notices() { if ( betterdocs()->is_pro_active() ) { $plugins = Helper::get_plugins(); $plugin_data = $plugins['betterdocs-pro/betterdocs-pro.php']; // Require the paired Pro release: the Analytics UI is version-coupled to // Pro's advanced modules, so an older Pro renders a broken/partial panel. if ( isset( $plugin_data['Version'] ) && version_compare( $plugin_data['Version'], '4.0.0', '>=' ) ) { return; } betterdocs()->views->get( 'admin/notices/compatibility', array( 'version' => $plugin_data['Version'] ) ); } } public function plugin_insights( $prevent_init = false ) { $this->insights = Insights::get_instance( BETTERDOCS_PLUGIN_FILE, array( 'opt_in' => true, 'goodbye_form' => true, 'item_id' => 'c7b16777b4f1b83f6083', ) ); $this->insights->set_notice_options( array( 'notice' => __( 'Want to help make BetterDocs even more awesome? You can get a 10% discount coupon for Premium extensions if you allow us to track the usage.', 'betterdocs' ), 'extra_notice' => __( 'We collect non-sensitive diagnostic data and plugin usage information. Your site URL, WordPress & PHP version, plugins & themes and email address to send you the discount coupon. This data lets us make sure this plugin always stays compatible with the most popular plugins and themes. No spam, I promise.', 'betterdocs' ), ) ); if ( ! $prevent_init ) { $this->insights->init(); } return $this->insights; } /** * Admin notices for Review and others. * * @return void * @throws Exception */ public function notices() { $notices = new Notices( array( 'id' => 'betterdocs', 'storage_key' => 'notices', 'lifetime' => 3, 'stylesheet_url' => $this->assets->asset_url( 'admin/css/notices.css' ), 'styles' => $this->assets->asset_url( 'admin/css/notices.css' ), 'priority' => 4, ) ); /** * Review Notice * * @var mixed $message */ $message = __( 'We hope you\'re enjoying BetterDocs! Could you please do us a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?', 'betterdocs' ); $_review_notice = array( 'thumbnail' => $this->assets->icon( 'betterdocs-logo.svg', true ), 'html' => '

' . $message . '

', 'links' => array( 'later' => array( 'link' => 'https://wordpress.org/plugins/betterdocs/#reviews', 'target' => '_blank', 'label' => __( 'Sure, you deserve it!', 'betterdocs' ), 'icon_class' => 'dashicons dashicons-external', ), 'allready' => array( 'label' => __( 'I already did', 'betterdocs' ), 'icon_class' => 'dashicons dashicons-smiley', 'attributes' => array( 'data-dismiss' => true, ), ), 'maybe_later' => array( 'label' => __( 'Maybe Later', 'betterdocs' ), 'icon_class' => 'dashicons dashicons-calendar-alt', 'attributes' => array( 'data-later' => true, 'class' => 'dismiss-btn', ), ), 'support' => array( 'link' => 'https://wpdeveloper.com/support', 'attributes' => array( 'target' => '_blank', ), 'label' => __( 'I need help', 'betterdocs' ), 'icon_class' => 'dashicons dashicons-sos', ), 'never_show_again' => array( 'label' => __( 'Never show again', 'betterdocs' ), 'icon_class' => 'dashicons dashicons-dismiss', 'attributes' => array( 'data-dismiss' => true, ), ), ), ); $notices->add( 'review', $_review_notice, array( 'start' => $notices->strtotime( '+10 days' ), 'recurrence' => 30, 'dismissible' => true, ) ); if ( $this->kbmigration->existing_plugins && ! in_array( $this->kbmigration->existing_plugins[0][0], $this->kbmigration->migrated_plugins ) ) { $plugin_name = '' . esc_html( $this->kbmigration->existing_plugins[0][1] ) . ''; $message = sprintf( /* translators: %s is the name of the existing knowledge base plugin. */ __( 'Already using %s? Power up your Knowledge Base by migrating all your docs and settings to BetterDocs with just 1 click.', 'betterdocs' ), esc_html( $plugin_name ) ); $migration_message = sprintf( '

%s

%s', $message, esc_url( admin_url( 'admin.php?page=betterdocs-settings&tab=tab-migration' ) ), esc_html__( 'Start Migration', 'betterdocs' ) ); $_migration_notice = array( 'thumbnail' => '', 'html' => $migration_message, 'links' => array( 'maybe_later' => array( 'label' => __( 'Maybe Later', 'betterdocs' ), 'icon_class' => 'dashicons dashicons-calendar-alt', 'attributes' => array( 'data-later' => true, 'class' => 'dismiss-btn', ), ), 'never_show_again' => array( 'label' => __( 'Never show again', 'betterdocs' ), 'icon_class' => 'dashicons dashicons-dismiss', 'attributes' => array( 'data-dismiss' => true, ), ), ), ); $notices->add( 'migration', $_migration_notice, array( 'start' => $notices->time(), 'recurrence' => false, 'dismissible' => true, ) ); } /** * * Opt-In Notice */ $allow_tracking = get_option( 'wpins_allow_tracking' ); if ( null != $this->insights && ! isset( $allow_tracking['betterdocs'] ) ) { $notices->add( 'opt_in', array( $this->insights, 'notice' ), array( 'classes' => 'updated put-dismiss-notice', 'start' => $notices->time(), 'refresh' => BETTERDOCS_VERSION, 'dismissible' => true, 'do_action' => 'wpdeveloper_notice_clicked_for_betterdocs', 'display_if' => ! function_exists( 'betterdocs_pro' ), 'screens' => array( 'dashboard' ), ) ); } $summer_campaign_message = '

🏖️ Summer Savings: Build AI-powered Knowledge Bases & FAQs to cut support tickets and improve user experience – now up to $100 OFF!

'; $_summer_campaign_notice = array( 'thumbnail' => $this->assets->icon( 'betterdocs-logo.svg', true ), 'html' => $summer_campaign_message, 'links' => array( 'support' => array( 'link' => 'https://betterdocs.co/summer2026-admin-notice', 'attributes' => array( 'target' => '_blank', 'class' => 'offer-button', ), 'label' => __( 'Upgrade To PRO Now', 'betterdocs' ), ), 'maybe_later' => array( 'label' => __( 'I’ll Grab It Later', 'betterdocs' ), 'attributes' => array( 'target' => '_blank', 'data-later' => true, 'class' => 'dismiss-btn', ), ), ), ); $notices->add( 'summer-campaign-26', $_summer_campaign_notice, array( 'start' => $notices->time(), 'recurrence' => false, 'dismissible' => true, 'refresh' => BETTERDOCS_VERSION, 'expire' => strtotime( '11:59:59pm June 25, 2026' ), 'display_if' => ! is_plugin_active( 'betterdocs-pro/betterdocs-pro.php' ), ) ); self::$cache_bank->create_account( $notices ); self::$cache_bank->calculate_deposits( $notices ); if ( method_exists( self::$cache_bank, 'clear_notices_in_' ) ) { self::$cache_bank->clear_notices_in_( array( 'toplevel_page_betterdocs-dashboard', 'admin_page_betterdocs-admin', 'betterdocs_page_betterdocs-admin', 'betterdocs_page_betterdocs-settings', 'betterdocs_page_betterdocs-faq', 'betterdocs_page_betterdocs-analytics', 'betterdocs_page_betterdocs-glossaries', 'betterdocs_page_betterdocs-ai-chatbot', 'betterdocs_page_betterdocs-api-docs', 'betterdocs_page_betterdocs-doc-categories', 'betterdocs_page_betterdocs-doc-tags', 'edit-doc_category', 'edit-doc_tag', ), $notices, true ); } } /** * Resolve the admin dark-mode preference. * * The mode switcher stores the choice in a client cookie (no DB write, shared * across every admin screen). Fall back to the legacy * `betterdocs_settings['dark_mode']` value for installs that set it before this * change and haven't toggled since. * * @return bool */ public function is_dark_mode() { if ( isset( $_COOKIE['betterdocs_admin_dark_mode'] ) ) { return '1' === $_COOKIE['betterdocs_admin_dark_mode']; // phpcs:ignore WordPress.Security.NonceVerification.Recommended } $saved = get_option( 'betterdocs_settings', array() ); return ! empty( $saved['dark_mode'] ); } /** * Whether the knowledge base is genuinely empty (no doc categories and no * non-trash docs). Localized to the admin so the All Docs panel can render a * skeleton shaped like the "No Category Found" empty card on first paint — * instead of a category/docs skeleton it would immediately replace — without * waiting for the REST fetch to reveal the count. * * @return bool */ public function kb_is_empty() { $cats = wp_count_terms( array( 'taxonomy' => 'doc_category', 'hide_empty' => false ) ); $cats = is_wp_error( $cats ) ? 0 : (int) $cats; if ( $cats > 0 ) { return false; } $counts = (array) wp_count_posts( 'docs' ); $total = 0; foreach ( array( 'publish', 'future', 'draft', 'pending', 'private' ) as $status ) { $total += isset( $counts[ $status ] ) ? (int) $counts[ $status ] : 0; } return 0 === $total; } public function body_classes( $classes ) { $dark_mode = $this->is_dark_mode(); $current_screen_id = get_current_screen() != null ? str_replace( 'betterdocs_page_', '', str_replace( 'toplevel_page_', '', str_replace( 'admin_page_', '', get_current_screen()->id ) ) ) : ''; /** * Filter the list of (prefix-stripped) screen ids that receive the * `betterdocs-admin` body class (and dark-mode class). Pro/add-ons can * register their own React admin pages, e.g. the Knowledge Base page. * * @param string[] $registered_screens Screen ids with the page prefix removed. */ $registered_screens = apply_filters( 'betterdocs_admin_screen_slugs', array( 'betterdocs-settings', 'betterdocs-admin', 'betterdocs-dashboard', 'betterdocs-analytics', 'betterdocs-glossaries', 'betterdocs-faq', 'betterdocs-doc-categories', 'betterdocs-doc-tags', 'edit-doc_category', 'edit-doc_tag', 'edit-knowledge_base', 'betterdocs-ai-chatbot', 'betterdocs-api-docs', // Without this the MCP screen never receives `betterdocs-admin`, and // the design tokens' dark-mode overrides — which are declared on // `.betterdocs-admin.betterdocs-dark-mode` — can never apply there: // the switcher in the header flips the cookie and the page stays // light. @since 4.9.0 'betterdocs-mcp', ) ); if ( in_array( $current_screen_id, $registered_screens ) ) { $classes .= ' betterdocs-admin '; } // Dark mode also applies on the Quick Setup wizard, whose self-scoped chrome // keys off `.betterdocs_page_betterdocs-setup.betterdocs-dark-mode`. $dark_screens = array_merge( $registered_screens, array( 'betterdocs-setup' ) ); if ( $dark_mode && in_array( $current_screen_id, $dark_screens, true ) ) { $classes .= ' betterdocs-dark-mode '; } return $classes; } /** * Remove Comments Column From List Table * * @param array $columns * * @return array * @since 1.0.0 */ public function set_custom_edit_action_columns( $columns ) { unset( $columns['comments'] ); $new_columns = array(); foreach ( $columns as $key => $value ) { if ( 'date' == $key ) { $new_columns['betterdocs_word_count'] = __( 'Word Count', 'betterdocs' ); // put the tags column before it $new_columns['betterdocs_reaction'] = __( 'Reactions', 'betterdocs' ); } $new_columns[ $key ] = $value; } return $new_columns; } public function manage_custom_columns( $column, $post_id ) { global $wpdb; switch ( $column ) { case 'betterdocs_word_count': $content_without_html_tags = trim( wp_strip_all_tags( get_post_field( 'post_content', $post_id ) ) ); preg_match_all( '/<[^>]*>|[\p{L}\p{M}]+/u', $content_without_html_tags, $matches ); $total_words = ! empty( $matches[0] ) ? count( $matches[0] ) : count( array() ); $word_count = $total_words; echo '' . esc_html( intval( $word_count ) ) . ''; break; case 'betterdocs_reaction': // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery,WordPress.DB.DirectDatabaseQuery.NoCaching -- per-post analytics aggregation rendered in admin list table; cache would mask live reactions. $analytics = $wpdb->get_results( $wpdb->prepare( "SELECT sum(impressions) as totalViews, sum(unique_visit) as totalUniqueViews, sum(happy + sad + normal) as totalReactions, sum(happy) as totalHappy, sum(normal) as totalNormal, sum(sad) as totalSad FROM {$wpdb->prefix}betterdocs_analytics WHERE post_id = %d", $post_id ) ); echo ''; break; } } /** * Enqueue Assets for Admin ( Styles ) * * @param string $hook * * @return void * @since 1.0.0 */ public function styles( $hook ) { $this->assets->enqueue( 'betterdocs-global', 'admin/css/global.css', array(), 'all' ); if ( ! betterdocs()->is_betterdocs_screen( $hook ) ) { return; } $this->assets->enqueue( 'betterdocs-select2', 'vendor/css/select2.min.css', array(), 'all' ); $this->assets->enqueue( 'betterdocs-daterangepicker', 'vendor/css/daterangepicker.css', array(), 'all' ); $this->assets->enqueue( 'betterdocs-old', 'admin/css/betterdocs.css', array(), 'all' ); /** * This scripts enqueued for Dashboard App. */ $this->assets->enqueue( 'betterdocs', 'admin/css/dashboard.css', array( 'betterdocs-old' ), '', BETTERDOCS_VERSION ); $this->assets->enqueue( 'betterdocs-icons', 'admin/btd-icon/style.css' ); } /** * Enqueue Assets for Admin ( Scripts ) * * @param string $hook * * @return void * @since 1.0.0 */ public function scripts( $hook ) { // Classic-UI screens that should offer a "Switch to BetterDocs UI" // button: All Docs, FAQ list, FAQ groups, Product FAQ groups, // Doc Categories, Doc Tags. Maps each to the React admin page to // return to; $switch_args carries extra query args (e.g. the FAQ // Builder tab) appended to the React page URL. $switch_page = ''; $switch_args = array(); if ( 'edit.php' === $hook && 'docs' === get_post_type() ) { $switch_page = 'betterdocs-admin'; } elseif ( 'edit.php' === $hook && 'betterdocs_faq' === get_post_type() ) { $switch_page = 'betterdocs-faq'; } elseif ( 'edit-tags.php' === $hook ) { $screen = function_exists( 'get_current_screen' ) ? get_current_screen() : null; $taxonomy = $screen && ! empty( $screen->taxonomy ) ? $screen->taxonomy : ( isset( $_GET['taxonomy'] ) ? sanitize_key( wp_unslash( $_GET['taxonomy'] ) ) : '' ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended if ( 'betterdocs_faq_category' === $taxonomy ) { $switch_page = 'betterdocs-faq'; } elseif ( 'betterdocs_product_faq_category' === $taxonomy ) { // Product FAQ groups live on the FAQ Builder's WooCommerce tab. $switch_page = 'betterdocs-faq'; $switch_args = array( 'faq_tab' => 'woocommerce' ); } elseif ( 'doc_category' === $taxonomy ) { $switch_page = 'betterdocs-doc-categories'; } elseif ( 'doc_tag' === $taxonomy ) { $switch_page = 'betterdocs-doc-tags'; } } /** * Allow Pro/add-ons to map their own classic-UI taxonomy screens to a * React admin page for the "Switch to BetterDocs UI" button — e.g. the * Knowledge Base taxonomy, which only exists when Pro is active. * * @param string $switch_page React page slug, or '' for no switcher. * @param string $hook Current admin page hook. */ $switch_page = apply_filters( 'betterdocs_classic_switch_page', $switch_page, $hook ); if ( $switch_page ) { $this->assets->enqueue( 'betterdocs-switcher', 'admin/js/switcher.js', array( 'jquery', ) ); $this->assets->localize( 'betterdocs-switcher', 'betterdocsSwitcher', array( 'menu_title' => __( 'Switch to BetterDocs UI', 'betterdocs' ), 'page' => $switch_page, 'url' => add_query_arg( array_merge( array( 'page' => $switch_page ), $switch_args ), admin_url( 'admin.php' ) ), 'site_address' => get_bloginfo( 'url' ), 'betterdocs_pro_plugin' => betterdocs()->is_pro_active(), 'betterdocs_pro_version' => betterdocs()->pro_version(), ) ); return; } wp_enqueue_script( 'wp-editor' ); // enqueue this for yoast related issue if ( ! betterdocs()->is_betterdocs_screen( $hook ) ) { return; } wp_enqueue_media(); // load early to fix problems with media upload issues on settings for WordPress 6.0.9 $this->assets->register( 'betterdocs-admin', 'admin/js/dashboard.js' ); $saved_settings = get_option( 'betterdocs_settings', false ); $dark_mode = $this->is_dark_mode(); $this->assets->localize( 'betterdocs-admin', 'betterdocs_admin', array( 'ajaxurl' => admin_url( 'admin-ajax.php' ), 'doc_cat_order_nonce' => wp_create_nonce( 'doc_cat_order_nonce' ), 'knowledge_base_order_nonce' => wp_create_nonce( 'knowledge_base_order_nonce' ), 'paged' => isset( $_GET['paged'] ) ? absint( wp_unslash( $_GET['paged'] ) ) : 0, // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- pagination read from URL. 'per_page_id' => 'edit_doc_category_per_page', 'menu_title' => __( 'Switch to BetterDocs UI', 'betterdocs' ), 'dark_mode' => $dark_mode, 'kb_is_empty' => $this->kb_is_empty(), 'text' => __( 'Copied!', 'betterdocs' ), 'test_report' => __( 'Test Report!', 'betterdocs' ), 'sending' => __( 'Sending...', 'betterdocs' ), 'dir_url' => BETTERDOCS_ABSURL, 'rest_url' => esc_url_raw( rest_url() ), 'free_version' => betterdocs()->version, 'generate_data_url' => get_rest_url( null, '/betterdocs/v1/create-sample-docs' ), 'ai_sample_docs' => array( 'enabled' => (bool) betterdocs()->settings->get( 'enable_ai_sample_docs', true ), 'rest_base' => esc_url_raw( get_rest_url( null, '/betterdocs/v1/sample-docs' ) ), ), 'nonce' => wp_create_nonce( 'wp_rest' ), 'sync_nonce' => wp_create_nonce( 'ai_chatbot_embed' ), 'count_all_docs' => array_sum( (array) wp_count_posts( 'docs' ) ), 'count_all_faq' => array_sum( (array) wp_count_posts( 'betterdocs_faq' ) ), 'faq_order' => get_option( 'betterdocs_faq_order', 'default' ), 'count_new_docs' => $this->get_not_synced_docs_count(), 'admin_url' => admin_url(), 'ia_preview' => betterdocs()->settings->get( 'ia_enable_preview', false ), 'multiple_kb' => betterdocs()->settings->get( 'multiple_kb' ), 'previewMode' => betterdocs()->settings->get( 'ia_enable_preview', false ), 'dashboard_mode' => get_option( 'dashboard_mode' ), 'betterdocs_pro_plugin' => betterdocs()->is_pro_active(), 'betterdocs_pro_version' => betterdocs()->pro_version(), 'analytics_older' => version_compare( betterdocs()->pro_version(), '3.3.4', '<=' ), 'betterdocs_ChatBot_plugin' => is_plugin_active( 'betterdocs-ai-chatbot/betterdocs-ai-chatbot.php' ), 'api_docs_teaser' => betterdocs()->show_api_docs_teaser(), 'is_woocommerce_active' => class_exists( 'WooCommerce' ), 'total_doc_category_terms' => wp_count_terms( 'doc_category' ), 'current_admin_language' => Helper::get_current_admin_language(), 'is_multilingual' => Helper::is_multilingual_active(), 'languages' => Helper::get_admin_languages(), /** * MCP page bootstrap. `abilities_api_available` decides whether the * page offers a connection at all: without the Abilities API there * is no tool catalog, so an AI client would connect and find * nothing. `enabled` is only the initial paint — the toggle owns * the value from then on. * * @since 4.9.0 */ 'mcp' => array( 'abilities_api_available' => function_exists( 'wp_register_ability' ), 'enabled' => (bool) betterdocs()->settings->get( 'enable_mcp', false ), 'rest' => 'betterdocs/v1', ), ) ); // If wp-date (which includes moment.js) is not registered, enqueue your custom moment.js if ( ! wp_script_is( 'wp-date', 'registered' ) ) { $this->assets->enqueue( 'moment', 'vendor/js/moment.min.js', array() ); } wp_enqueue_script( 'betterdocs-admin' ); /** * Duplicate Codes Need to Be Removed From Here Onwards */ // FAQ Builder Related Localization betterdocs()->assets->enqueue( 'betterdocs-admin-faq', 'admin/css/faq.css' ); betterdocs()->assets->enqueue( 'betterdocs-admin-faq', 'admin/js/faq.js' ); // Load the classic editor (TinyMCE + QuickTags) so the FAQ rich-text editor can mount via wp.editor.initialize(). if ( function_exists( 'wp_enqueue_editor' ) ) { wp_enqueue_editor(); } if ( function_exists( 'wp_enqueue_media' ) ) { wp_enqueue_media(); } // removing emoji support remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); // Get settings and remove unnecessary keys $betterdocs_settings = get_option( 'betterdocs_settings', false ); if ( is_array( $betterdocs_settings ) && ! current_user_can( 'edit_docs_settings' ) ) { foreach ( Settings::sensitive_api_key_fields() as $sensitive_key ) { unset( $betterdocs_settings[ $sensitive_key ] ); } } betterdocs()->assets->localize( 'betterdocs-admin-faq', 'betterdocsFaq', array( 'dir_url' => BETTERDOCS_ABSURL, 'rest_url' => esc_url_raw( rest_url() ), 'free_version' => betterdocs()->version, 'nonce' => wp_create_nonce( 'wp_rest' ), 'betterdocs_settings' => $betterdocs_settings, ) ); // Glossaries Related Localization betterdocs()->assets->enqueue( 'betterdocs-admin-glossaries', 'admin/css/faq.css' ); betterdocs()->assets->enqueue( 'betterdocs-admin-glossaries', 'admin/js/glossaries.js' ); betterdocs()->assets->localize( 'betterdocs-admin-glossaries', 'betterdocsGlossary', array( 'dir_url' => BETTERDOCS_ABSURL, 'rest_url' => esc_url_raw( rest_url() ), 'free_version' => betterdocs()->version, 'nonce' => wp_create_nonce( 'wp_rest' ), 'betterdocs_settings' => $betterdocs_settings, ) ); } /** * All admin pages header * * @return void * @since 1.0.0 */ public function header( $admin_tab_name ) { $quick_links = array( 'switch_view' => sprintf( '%s', add_query_arg( array( 'post_type' => 'docs', 'bdocs_view' => 'classic', ), 'edit.php' ), __( 'Switch to Classic UI', 'betterdocs' ) ), 'add_new_doc' => sprintf( '%s', add_query_arg( array( 'post_type' => 'docs' ), 'post-new.php' ), __( 'Add New Doc', 'betterdocs' ) ), ); $quick_links = apply_filters( 'betterdocs_quick_links', $quick_links ); betterdocs()->views->get( 'admin/header', array( 'quick_links' => $quick_links, 'active_tab' => $admin_tab_name, ) ); } /** * Register all the menus for BetterDocs * * @return void * @since 1.0.0 */ public function menus() { $default_args = array( 'page_title' => 'BetterDocs', 'menu_title' => 'BetterDocs', 'capability' => 'edit_docs', // Unified capability 'menu_slug' => $this->slug, 'callback' => array( $this, 'output' ), 'icon_url' => betterdocs()->assets->icon( 'betterdocs-icon-white.svg', true ), 'position' => 5, ); $_menu_position = 5; global $submenu; // Always register both UI endpoints $this->register_modern_ui_fallback(); // The one-time MCP discovery badge (ADR-063). Decided once, here, and // remembered for `mcp_badge_styles()`: the pill's markup and the pill's // stylesheet have to be printed on the same requests as each other. $this->mcp_badge = self::should_flag_mcp(); foreach ( $this->menu_list() as $key => $value ) { if ( 'betterdocs' === $key ) { $callable = 'add_menu_page'; $value = wp_parse_args( $value, $default_args ); call_user_func_array( $callable, $value ); } else { $is_core_page = strpos( $value['menu_slug'], '?' ) !== false; if ( $is_core_page ) { // Add classic UI directly $submenu[ $this->slug ][] = array( $value['menu_title'], $value['capability'], $value['menu_slug'], $value['page_title'], ); } else { // Add modern UI through WordPress API add_submenu_page( $this->slug, $value['page_title'], $value['menu_title'], $value['capability'], $value['menu_slug'], $value['callback'] ); } ++$_menu_position; } } $this->paint_mcp_badge(); } /** * Append the discovery badge to the registered menu titles. * * **After** registration, editing `$menu` / `$submenu` in place — the same * shape `add_custom_classes_to_menu_items()` uses — and never by passing a * decorated title to `add_menu_page()`. That distinction is not cosmetic: * core stores `sanitize_title( $menu_title )` as `$admin_page_hooks[ $slug ]` * (`wp-admin/includes/plugin.php:1397`) and builds every child page's hook * suffix from it (`get_plugin_page_hookname()`), so markup in the parent's * title renames `betterdocs_page_betterdocs-mcp` — and the MCP screen, whose * asset enqueue is keyed on that exact suffix, silently loads no React * bundle at all. Measured: the first visit came back 102,513 bytes with no * `dashboard.js`, against 489,272 bytes once the badge had cleared. * * Titles are only ever appended to, never rebuilt: the menu list is filtered * (`betterdocs_admin_menu`), so whatever a filter put in a title survives. * * @return void * @since 4.9.0 */ private function paint_mcp_badge() { if ( ! $this->mcp_badge ) { return; } global $menu, $submenu; if ( is_array( $menu ) ) { foreach ( $menu as &$item ) { if ( isset( $item[2] ) && $this->slug === $item[2] ) { $item[0] .= self::mcp_parent_bubble(); break; } } unset( $item ); } if ( isset( $submenu[ $this->slug ] ) && is_array( $submenu[ $this->slug ] ) ) { foreach ( $submenu[ $this->slug ] as &$sub_item ) { if ( isset( $sub_item[2] ) && 'betterdocs-mcp' === $sub_item[2] ) { $sub_item[0] .= self::mcp_submenu_pill(); break; } } unset( $sub_item ); } } /** * Whether the current user should see the one-time MCP discovery badge. * * True only for a user who can actually reach the screen and has never * opened it. The capability is the one the MCP menu item is already * registered with (`manage_options`) rather than a second, re-derived rule — * so the badge can never advertise a page its reader cannot open. * * @return bool * @since 4.9.0 */ public static function should_flag_mcp() { if ( ! current_user_can( 'manage_options' ) ) { return false; } $user_id = get_current_user_id(); if ( ! $user_id ) { return false; } // `get_user_meta( …, true )` answers '' for a key that is not there, and // the value written is always `time()` — so an empty string is the only // shape "never opened" takes. return '' === get_user_meta( $user_id, self::MCP_SEEN_META, true ); } /** * WordPress' own update-count bubble, for the BetterDocs parent menu item. * * Core's markup on purpose: the red bubble, its position and its dark-mode * colours are already in `wp-admin`'s stylesheet, so this needs no CSS of * ours and cannot drift from the Plugins/Updates bubbles beside it. * * @return string * @since 4.9.0 */ private static function mcp_parent_bubble() { return ' 1'; } /** * The green "New" pill for the MCP submenu item. * * Core has no submenu-badge markup, so this one is ours — styled by * `mcp_badge_styles()`. * * @return string * @since 4.9.0 */ private static function mcp_submenu_pill() { return ' ' . esc_html__( 'New', 'betterdocs' ) . ''; } /** * Whether this request is the MCP screen being opened by someone who can * open it. * * The whole of the clearing decision, in one static so it can be pinned by * a test. It reads the **page slug** rather than an admin hook suffix * because the suffix is derived state: core builds it from * `sanitize_title()` of the *parent* menu title (`get_plugin_page_hookname()`), * that title is filtered (`betterdocs_admin_menu`), and the parent slug is * spelled two ways in this class already. `?page=betterdocs-mcp` is the one * thing that identifies this screen on every install (ADR-065). * * The capability is `manage_options`, the same one the MCP menu item is * registered with and the same one {@see self::should_flag_mcp()} gates on: * nothing may be written for a user who cannot reach the page. * * @return bool * @since 4.9.0 */ public static function is_mcp_screen_request() { // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- read-only screen detection; see mark_mcp_seen(). $page = isset( $_GET['page'] ) ? sanitize_key( wp_unslash( $_GET['page'] ) ) : ''; if ( 'betterdocs-mcp' !== $page ) { return false; } return current_user_can( 'manage_options' ); } /** * Record that this user has now seen the MCP screen. * * Bound to `admin_init` — which fires for every admin request — and gated on * the page slug, rather than to `load-{$hook_suffix}` for the one suffix * `add_submenu_page()` happened to return. `admin_menu` has already run by * the time `admin_init` fires (measured), so the badge is still painted on * *this* request and is gone from the next admin page — that is expected and * correct. Do not add JavaScript to strip it mid-request. * * **No nonce, on purpose.** A nonce protects a state change an attacker * could make a logged-in administrator perform unknowingly. The only state * here is "this administrator has now been shown the MCP screen once", it is * written for the current user alone, it holds no attacker-chosen value, and * the worst a forged request can achieve is hiding a discovery badge from * the person it was drawn for. A nonce on a plain page view would also have * to survive the menu link, which carries none. * * @return void * @since 4.9.0 */ public function mark_mcp_seen() { if ( ! self::is_mcp_screen_request() ) { return; } $user_id = get_current_user_id(); if ( ! $user_id ) { return; } update_user_meta( $user_id, self::MCP_SEEN_META, time() ); } /** * The handful of declarations the "New" pill needs, inline, and only while * it is being shown. * * The menu is read from the WordPress Dashboard, and `styles()` above * early-returns on non-BetterDocs screens — so `admin/css/dashboard.css` is * not loaded where this pill is seen. Loading the whole BetterDocs admin * stylesheet globally, or shipping a stylesheet file for nine declarations, * both cost far more than printing them here. The accent is written out * rather than taken from `--base-color-700`: that token lives in * `dashboard.css`, which is exactly the file that is not loaded here. * * @return void * @since 4.9.0 */ public function mcp_badge_styles() { if ( ! $this->mcp_badge ) { return; } echo '' . "\n"; } private function register_modern_ui_fallback() { // Add the submenu with valid parent slug add_submenu_page( 'betterdocs', // Valid parent slug __( 'All Docs', 'betterdocs' ), '', // Empty menu title hides it 'edit_docs', 'betterdocs-admin', array( $this, 'output' ) ); // Hide the menu item from appearing in the admin sidebar global $submenu; if ( isset( $submenu['betterdocs'] ) ) { foreach ( $submenu['betterdocs'] as $key => $item ) { if ( 'betterdocs-admin' === $item[2] ) { unset( $submenu['betterdocs'][ $key ] ); break; } } } } /** * BetterDocs Admin Page Output * * @return void * @since 1.0.0 */ public function output() { if ( betterdocs()->is_pro_active() && version_compare( betterdocs()->pro_version(), '3.3.4', '<=' ) && get_current_screen()->id == 'betterdocs_page_betterdocs-analytics' ) { betterdocs_pro()->views->get( 'admin/analytics-pro' ); } else { betterdocs()->views->get( 'admin/main', array( 'admin_ui' => 'dnd', ) ); } } /** * Menu creator helper * * @param string $title * @param string $slug * @param string $cap * @param array $callback * * @return array * @since 2.5.0 */ private function normalize_menu( $title, $slug, $cap = 'edit_docs', $callback = null, $optional = array() ) { return Helper::normalize_menu( $title, $slug, $cap, $callback, $optional ); } /** * BetterDocs Menu List * * @return array * @since 1.0.0 */ private function menu_list() { $parent_slug = array(); $betterdocs_admin_pages = array( 'betterdocs' => array( 'menu_slug' => $this->slug, 'page_title' => 'BetterDocs', 'menu_title' => 'BetterDocs', 'capability' => 'edit_docs', 'callback' => array( $this, 'output' ), 'icon_url' => betterdocs()->assets->icon( 'betterdocs-icon-white.svg', true ), 'position' => 5, ), 'dashboard' => $this->normalize_menu( __( 'Dashboard', 'betterdocs' ), 'betterdocs-dashboard', 'edit_docs', array( $this, 'output', ) ), 'all_docs' => $this->normalize_menu( __( 'All Docs', 'betterdocs' ), $this->ui_slug(), 'edit_docs', array( $this, 'output' ), $parent_slug ), 'add_new' => $this->normalize_menu( __( 'Add New', 'betterdocs' ), 'post-new.php?post_type=docs' ), 'categories' => $this->normalize_menu( __( 'Categories', 'betterdocs' ), 'betterdocs-doc-categories', 'manage_doc_terms', array( $this, 'output' ), $parent_slug ), 'tags' => $this->normalize_menu( __( 'Tags', 'betterdocs' ), 'betterdocs-doc-tags', 'manage_doc_terms', array( $this, 'output' ), $parent_slug ), 'settings' => $this->normalize_menu( __( 'Settings', 'betterdocs' ), 'betterdocs-settings', 'edit_docs_settings', array( $this, 'output', ), $parent_slug ), 'mcp' => $this->normalize_menu( __( 'MCP', 'betterdocs' ), 'betterdocs-mcp', 'manage_options', array( $this, 'output', ), $parent_slug ), 'analytics' => $this->normalize_menu( __( 'Analytics', 'betterdocs' ), 'betterdocs-analytics', 'read_docs_analytics', array( $this, 'output', ), $parent_slug ), 'faq' => $this->normalize_menu( __( 'FAQ Builder', 'betterdocs' ), 'betterdocs-faq', 'read_faq_builder', array( $this, 'output', ), $parent_slug ), ); if ( betterdocs()->is_pro_active() && betterdocs()->settings->get( 'enable_glossaries' ) == true ) { $betterdocs_admin_pages['glossaries'] = $this->normalize_menu( __( 'Glossaries', 'betterdocs' ), 'betterdocs-glossaries', 'read_docs_analytics', array( $this, 'output', ), $parent_slug ); } // API Docs ships in Pro, which overwrites this same key in place — declaring // the slot here is what keeps the item in this position. Without Pro it // holds Free's locked teaser instead. if ( betterdocs()->show_api_docs_teaser() || betterdocs()->has_api_docs() ) { $betterdocs_admin_pages['api_docs'] = $this->normalize_menu( __( 'API Docs', 'betterdocs' ), 'betterdocs-api-docs', apply_filters( 'betterdocs_api_ref_capability', 'manage_options' ), array( $this, 'output', ), $parent_slug ); } if ( ! betterdocs()->is_chatbot_active() ) { $betterdocs_admin_pages['ai_chatbot'] = $this->normalize_menu( __( 'AI Chatbot', 'betterdocs' ), 'betterdocs-ai-chatbot', 'edit_docs_settings', array( $this, 'output', ), $parent_slug ); } return apply_filters( 'betterdocs_admin_menu', $betterdocs_admin_pages, array( $this, 'output' ), $parent_slug ); } public function add_custom_classes_to_menu_items() { global $menu, $submenu; $menu_items = array( 'betterdocs' => 'betterdocs', 'betterdocs_page_all_docs' => 'betterdocs-all-docs', 'betterdocs_page_add_new' => 'betterdocs-add-new', 'betterdocs-doc-categories' => 'betterdocs-categories', 'betterdocs-doc-tags' => 'betterdocs-tags', 'betterdocs-settings' => 'betterdocs-settings', 'betterdocs-mcp' => 'betterdocs-mcp', 'betterdocs-analytics' => 'betterdocs-analytics', 'betterdocs-faq' => 'betterdocs-faq', 'betterdocs-glossaries' => 'betterdocs-glossaries', 'betterdocs-ai-chatbot' => 'betterdocs-ai-chatbot', 'betterdocs-api-docs' => 'betterdocs-api-docs', 'edit-tags.php?taxonomy=knowledge_base&post_type=docs' => 'betterdocs-multiplekb', ); foreach ( $menu as &$item ) { if ( isset( $menu_items[ $item[2] ] ) ) { if ( ! isset( $item[4] ) ) { $item[4] = ''; } $item[4] .= '' . $menu_items[ $item[2] ]; } } foreach ( $submenu as &$submenu_items ) { foreach ( $submenu_items as &$sub_item ) { if ( isset( $menu_items[ $sub_item[2] ] ) ) { if ( ! isset( $sub_item[4] ) ) { $sub_item[4] = ''; } $sub_item[4] .= '' . $menu_items[ $sub_item[2] ]; } } } } public function quick_setup_menu( $menus ) { $betterdocs_settings = get_option( 'betterdocs_settings' ); if ( $betterdocs_settings ) { return $menus; } else { $menus['quick_setup'] = $this->normalize_menu( __( 'Quick Setup', 'betterdocs' ), 'betterdocs-setup', 'delete_users', array( $this->container->get( SetupWizard::class ), 'views', ) ); } return $menus; } public function insert_plugin_links( $links ) { $links[] = '' . __( 'Settings', 'betterdocs' ) . ''; if ( ! is_plugin_active( 'betterdocs-pro/betterdocs-pro.php' ) ) { $links[] = '' . __( 'Upgrade to Pro', 'betterdocs' ) . ''; } return $links; } public function toolbar_menu( $admin_bar ) { if ( ! is_admin() || ! is_admin_bar_showing() ) { return; } // Show only when the user is a member of this site, or they're a super admin. if ( ! is_user_member_of_blog() && ! is_super_admin() ) { return; } $docs_url = ''; $encyclopedia_url = ''; if ( $this->settings->get( 'builtin_doc_page' ) ) { $docs_url = get_post_type_archive_link( 'docs' ); } elseif ( intval( $docs_page = $this->settings->get( 'docs_page' ) ) ) { $docs_url = ! empty( $docs_page ) ? get_page_link( $docs_page ) : false; } if ( ! $docs_url ) { return; } $slug = $this->settings->get( 'encyclopedia_root_slug' ); global $wp_rewrite; if ( $wp_rewrite->using_index_permalinks() ) { $slug = $wp_rewrite->index . '/' . $slug; } $encyclopedia_url = home_url( $slug ); $admin_bar->add_node( array( 'parent' => 'site-name', 'id' => 'view-docs', 'title' => __( 'Visit Documentation', 'betterdocs' ), 'href' => $docs_url, ) ); $is_enable_encyclopedia = betterdocs()->settings->get( 'enable_encyclopedia' ); if ( $is_enable_encyclopedia && betterdocs()->is_pro_active() ) { $admin_bar->add_node( array( 'parent' => 'site-name', 'id' => 'view-encyclopedia', 'title' => __( 'Visit Encyclopedia', 'betterdocs' ), 'href' => $encyclopedia_url, ) ); } } /** * Save last visited admin ui * * @since 3.0.1 */ public function save_admin_page() { // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- read-only screen detection. $post_type = isset( $_GET['post_type'] ) ? sanitize_text_field( wp_unslash( $_GET['post_type'] ) ) : ''; // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- read-only screen detection. $bdocs_view = isset( $_GET['bdocs_view'] ) ? sanitize_text_field( wp_unslash( $_GET['bdocs_view'] ) ) : ''; // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- read-only screen detection. $page = isset( $_GET['page'] ) ? sanitize_text_field( wp_unslash( $_GET['page'] ) ) : ''; if ( 'docs' === $post_type && 'classic' === $bdocs_view ) { update_user_meta( get_current_user_id(), 'last_visited_docs_admin_page', 'classic_ui' ); } elseif ( 'betterdocs-admin' === $page ) { update_user_meta( get_current_user_id(), 'last_visited_docs_admin_page', 'modern_ui' ); } } /** * Return last visited admin ui slug * * @return string * @since 3.0.1 */ public function ui_slug() { $last_visited = get_user_meta( get_current_user_id(), 'last_visited_docs_admin_page', true ); $docs_exist = get_posts( array( 'post_type' => 'docs', 'post_status' => 'any', 'numberposts' => 1, ) ); return ( 'modern_ui' === $last_visited || empty( $docs_exist ) ) ? 'betterdocs-admin' : 'edit.php?post_type=docs&bdocs_view=classic'; } /** * Resets a duplicate submenu in WordPress if the parent main menu and the first submenu permalink are not the same. * * @return string * @since 3.0.1 */ public function reset_submenu() { global $submenu; $docs = get_posts( array( 'post_type' => 'docs' ) ); if ( count( $docs ) == 0 ) { return; } $last_visited = get_user_meta( get_current_user_id(), 'last_visited_docs_admin_page', true ); if ( 'classic_ui' === $last_visited && isset( $submenu['betterdocs-admin'] ) && in_array( 'betterdocs-admin', $submenu['betterdocs-admin'][0] ) ) { unset( $submenu['betterdocs-admin'][0] ); $submenu['betterdocs-admin'] = array_values( $submenu['betterdocs-admin'] ); } } /** * Initialize Black Friday Pointer * * @return void * @since 3.7.0 */ private function init_black_friday_pointer() { // Only initialize if conditions are met if ( NoticePointers::should_display_notice() ) { new NoticePointers(); } } /** * AJAX handler for dismissing Black Friday pointer * * @return void * @since 3.7.0 */ public function ajax_dismiss_black_friday_pointer() { // Verify nonce $nonce = isset( $_POST['nonce'] ) ? sanitize_text_field( wp_unslash( $_POST['nonce'] ) ) : ''; if ( ! wp_verify_nonce( $nonce, 'betterdocs_dismiss_pointer' ) ) { wp_send_json_error( array( 'message' => __( 'Invalid nonce', 'betterdocs' ) ) ); } // Check if user has permission if ( ! current_user_can( 'manage_options' ) && ! current_user_can( 'edit_docs' ) ) { wp_send_json_error( array( 'message' => __( 'Permission denied', 'betterdocs' ) ) ); } // Get the introduction key $introduction_key = isset( $_POST['introduction_key'] ) ? sanitize_text_field( wp_unslash( $_POST['introduction_key'] ) ) : ''; if ( empty( $introduction_key ) ) { wp_send_json_error( array( 'message' => __( 'Invalid introduction key', 'betterdocs' ) ) ); } // Set the introduction as viewed NoticePointers::set_introduction_viewed( $introduction_key ); // Clear the priority option so other plugins can set their priority delete_option( '_wpdeveloper_plugin_pointer_priority' ); wp_send_json_success( array( 'message' => __( 'Pointer dismissed successfully', 'betterdocs' ) ) ); } /** * Get count of docs that are not yet synced * Similar to Helper::get_not_synced_post_ids() in betterdocs-ai-chatbot plugin * * @return int * @since 3.7.0 */ private function get_not_synced_docs_count() { $new_post_ids = get_option( 'saved_docs_post_ids', array() ); $error_posts_data = get_option( 'betterdocs_ai_chatbot_error_posts', array() ); // Extract post IDs from error posts (handle both old and new formats) $error_post_ids = array(); if ( is_array( $error_posts_data ) && ! empty( $error_posts_data ) ) { foreach ( $error_posts_data as $key => $value ) { if ( is_numeric( $key ) && is_numeric( $value ) ) { // Old format: numeric key with post ID as value $error_post_ids[] = $value; } elseif ( is_numeric( $key ) && is_array( $value ) && isset( $value['post_id'] ) ) { // New format: post ID as key with structured data $error_post_ids[] = $key; } elseif ( is_numeric( $key ) ) { // New format: post ID as key $error_post_ids[] = $key; } } } // Merge both arrays and remove duplicates, then count return count( array_unique( array_merge( $new_post_ids, $error_post_ids ) ) ); } }