You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

147 lines
3.6 KiB
PHTML

<?php
/**
* The admin-specific functionality of the plugin.
*
* @since 1.0.0
* @package RankMath
* @subpackage RankMathPro\Admin
* @author MyThemeShop <admin@mythemeshop.com>
*/
namespace RankMathPro\Admin;
use RankMathPro\Updates;
use RankMathPro\Status\System_Status;
use RankMath\Helper;
use RankMath\Traits\Hooker;
use MyThemeShop\Helpers\Param;
use RankMathPro\Google\Adsense;
defined( 'ABSPATH' ) || exit;
/**
* Admin class.
*
* @codeCoverageIgnore
*/
class Admin {
use Hooker;
/**
* Stores object instances.
*
* @var array
*/
public $components = [];
/**
* Register hooks.
*/
public function __construct() {
$this->action( 'init', 'init_components' );
add_filter( 'rank_math/analytics/classic/pro_notice', '__return_empty_string' );
$this->filter( 'rank_math/settings/sitemap', 'special_seprator' );
$this->action( 'admin_enqueue_scripts', 'enqueue' );
$this->filter( 'wp_helpers_notifications_render', 'prevent_pro_notice', 10, 3 );
new Updates();
new System_Status();
}
/**
* Initialize the required components.
*/
public function init_components() {
$components = [
'bulk_actions' => 'RankMathPro\\Admin\\Bulk_Actions',
'post_filters' => 'RankMathPro\\Admin\\Post_Filters',
'media_filters' => 'RankMathPro\\Admin\\Media_Filters',
'quick_edit' => 'RankMathPro\\Admin\\Quick_Edit',
'trends_tool' => 'RankMathPro\\Admin\\Trends_Tool',
'setup_wizard' => 'RankMathPro\\Admin\\Setup_Wizard',
'links' => 'RankMathPro\\Admin\\Links',
'misc' => 'RankMathPro\\Admin\\Misc',
'csv_import' => 'RankMathPro\\Admin\\CSV_Import_Export\\CSV_Import_Export',
];
if ( Helper::is_amp_active() ) {
$components['amp'] = 'RankMathPro\\Admin\\Amp';
}
$components = apply_filters( 'rank_math/admin/pro_components', $components );
foreach ( $components as $name => $component ) {
$this->components[ $name ] = new $component();
}
}
/**
* Add Special seprator into sitemap option panel
*
* @param array $tabs Hold tabs for optional panel.
*
* @return array
*/
public function special_seprator( $tabs ) {
if ( Helper::is_module_active( 'news-sitemap' ) || Helper::is_module_active( 'video-sitemap' ) || Helper::is_module_active( 'local-seo' ) ) {
$tabs['special'] = [
'title' => esc_html__( 'Special Sitemaps:', 'rank-math-pro' ),
'type' => 'seprator',
];
}
return $tabs;
}
/**
* Load setup wizard.
*/
private function load_setup_wizard() {
if ( Helper::is_wizard() ) {
new Setup_Wizard();
}
}
/**
* Enqueue assets.
*
* @return void
*/
public function enqueue() {
if ( Param::get( 'page' ) !== 'rank-math-options-general' ) {
return;
}
wp_enqueue_style(
'rank-math-pro-general-options',
RANK_MATH_PRO_URL . 'assets/admin/css/general-options.css',
null,
rank_math_pro()->version
);
wp_enqueue_script( 'rank-math-pro-general-options', RANK_MATH_PRO_URL . 'assets/admin/js/general-options.js', [ 'wp-hooks' ], rank_math_pro()->version );
Helper::add_json( 'isAdsenseConnected', Adsense::is_adsense_connected() );
}
/**
* Make sure that our "Upgrade to Pro" admin notice is not showing when the
* Pro version is active.
*
* @param string $output Notice HTML output.
* @param string $message Notice message text.
* @param array $options Notice options.
*
* @return string
*/
public function prevent_pro_notice( $output, $message, $options ) {
if ( 'rank_math_pro_notice' !== $options['id'] ) {
return $output;
}
return '';
}
}