HEX
Server: Apache
System: Linux webm009.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User: ateliug (129934)
PHP: 5.4.45
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/ateliug/www/wp-content/plugins/wordpress-seo/src/integrations/admin/brand-insights-page.php
<?php

namespace Yoast\WP\SEO\Integrations\Admin;

use Yoast\WP\SEO\Conditionals\Admin_Conditional;
use Yoast\WP\SEO\Helpers\Product_Helper;
use Yoast\WP\SEO\Integrations\Integration_Interface;

/**
 * Brand_Insights_Page class
 */
class Brand_Insights_Page implements Integration_Interface {

	/**
	 * The product helper.
	 *
	 * @var Product_Helper
	 */
	private $product_helper;

	/**
	 * Constructor.
	 *
	 * @param Product_Helper $product_helper The product helper.
	 */
	public function __construct(
		Product_Helper $product_helper
	) {
		$this->product_helper = $product_helper;
	}

	/**
	 * Returns the conditionals based in which this loadable should be active.
	 *
	 * @return array<string>
	 */
	public static function get_conditionals() {
		return [
			Admin_Conditional::class,
		];
	}

	/**
	 * Registers all hooks to WordPress.
	 *
	 * @return void
	 */
	public function register_hooks() {
		\add_filter( 'wpseo_submenu_pages', [ $this, 'add_submenu_page' ], 12 );
	}

	/**
	 * Adds the Brand Insights submenu page.
	 *
	 * @param string[] $submenu_pages The Yoast SEO submenu pages.
	 *
	 * @return string[] The filtered submenu pages.
	 */
	public function add_submenu_page( $submenu_pages ) {
		$page = $this->product_helper->is_premium() ? 'wpseo_brand_insights_premium' : 'wpseo_brand_insights';

		$submenu_pages[] = [
			'wpseo_dashboard',
			'',
			'Brand Insights <span class="yoast-badge yoast-ai-plus-badge"></span>',
			'edit_others_posts',
			$page,
			[ $this, 'show_brand_insights_page' ],
		];

		return $submenu_pages;
	}

	/**
	 * The Brand Insights page render function, noop.
	 *
	 * @return void
	 */
	public function show_brand_insights_page() {
		// Do nothing and let the redirect happen from the redirect integration.
	}
}