*/
namespace RankMath\SEO_Analysis;
use RankMath\Module\Base;
use RankMath\Admin\Page;
use RankMath\KB;
defined( 'ABSPATH' ) || exit;
/**
 * Admin class.
 */
class Admin extends Base {
	/**
	 * Module ID.
	 *
	 * @var string
	 */
	public $id = '';
	/**
	 * Module directory.
	 *
	 * @var string
	 */
	public $directory = '';
	/**
	 * Module page.
	 *
	 * @var object
	 */
	public $page;
	/**
	 * SEO Analyzer object.
	 *
	 * @var object
	 */
	public $analyzer;
	/**
	 * The Constructor.
	 */
	public function __construct() {
		$directory = dirname( __FILE__ );
		$this->config(
			[
				'id'        => 'seo-analysis',
				'directory' => $directory,
			]
		);
		parent::__construct();
		if ( ( defined( 'DOING_AJAX' ) && DOING_AJAX ) || $this->page->is_current_page() ) {
			include_once 'seo-analysis-tests.php';
			$this->analyzer = new SEO_Analyzer();
		}
		$this->action( 'rank_math/analyzer/results_header', 'add_print_button', 15, 0 );
	}
	/**
	 * Register admin page.
	 */
	public function register_admin_page() {
		$uri = untrailingslashit( plugin_dir_url( __FILE__ ) );
		$new_label = '';
		if ( ! get_option( 'rank_math_viewed_seo_analyer', false ) && strtotime( '28 December 2022' ) > get_option( 'rank_math_install_date' ) ) {
			$new_label = '' . esc_html__( 'New!', 'rank-math' ) . '';
		}
		$this->page = new Page(
			'rank-math-seo-analysis',
			// Translators: placeholder is the new Rank Math label.
			sprintf( esc_html__( 'SEO Analyzer %s', 'rank-math' ), $new_label ),
			[
				'position'   => 60,
				'parent'     => 'rank-math',
				'capability' => 'rank_math_site_analysis',
				'classes'    => [ 'rank-math-page' ],
				'render'     => $this->directory . '/views/main.php',
				'assets'     => [
					'styles'  => [
						'rank-math-common'       => '',
						'rank-math-seo-analysis' => $uri . '/assets/css/seo-analysis.css',
					],
					'scripts' => [
						'circle-progress'        => $uri . '/assets/js/circle-progress.min.js',
						'rank-math-seo-analysis' => $uri . '/assets/js/seo-analysis.js',
					],
				],
			]
		);
	}
	/**
	 * Add print button.
	 */
	public function add_print_button() {
		?>
		
			
			
			PRO