- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
112 lines
2.3 KiB
PHP
Executable File
112 lines
2.3 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* The SEO Analyzer module - admin side functionality.
|
|
*
|
|
* @since 0.9.0
|
|
* @package RankMath
|
|
* @subpackage RankMath\SEO_Analysis
|
|
* @author Rank Math <support@rankmath.com>
|
|
*/
|
|
|
|
namespace RankMath\SEO_Analysis;
|
|
|
|
use RankMath\Module\Base;
|
|
use RankMath\Admin\Page;
|
|
use RankMath\Helper;
|
|
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 = __DIR__;
|
|
$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();
|
|
Helper::add_json( 'results', $this->analyzer->get_results_from_storage() );
|
|
Helper::add_json( 'analyzeSubpage', $this->analyzer->analyse_subpage );
|
|
Helper::add_json( 'analyzeUrl', $this->analyzer->analyse_url );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Register admin page.
|
|
*/
|
|
public function register_admin_page() {
|
|
$uri = untrailingslashit( plugin_dir_url( __FILE__ ) );
|
|
|
|
$this->page = new Page(
|
|
'rank-math-seo-analysis',
|
|
// Translators: placeholder is the new Rank Math label.
|
|
esc_html__( 'SEO Analyzer', 'rank-math' ),
|
|
[
|
|
'position' => 60,
|
|
'parent' => 'rank-math',
|
|
'capability' => 'rank_math_site_analysis',
|
|
'classes' => [ 'rank-math-page' ],
|
|
'render' => $this->directory . '/views/main.php',
|
|
'assets' => [
|
|
'styles' => [
|
|
'wp-components' => '',
|
|
'rank-math-common' => '',
|
|
'rank-math-seo-analysis' => $uri . '/assets/css/seo-analysis.css',
|
|
],
|
|
'scripts' => [
|
|
'wp-element' => '',
|
|
'rank-math-components' => '',
|
|
'rank-math-seo-analysis' => $uri . '/assets/js/seo-analysis.js',
|
|
],
|
|
'json' => [
|
|
'connectUrl' => Helper::get_connect_url(),
|
|
'isSiteConnected' => Helper::is_site_connected(),
|
|
],
|
|
],
|
|
]
|
|
);
|
|
}
|
|
}
|