112 lines
2.7 KiB
PHP
112 lines
2.7 KiB
PHP
<?php
|
|
namespace AIOSEO\Plugin\Lite\Admin;
|
|
|
|
// Exit if accessed directly.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
use AIOSEO\Plugin\Common\Admin as CommonAdmin;
|
|
|
|
/**
|
|
* Abstract class that Pro and Lite both extend.
|
|
*
|
|
* @since 4.0.0
|
|
*/
|
|
class Admin extends CommonAdmin\Admin {
|
|
/**
|
|
* Connect class instance.
|
|
*
|
|
* @since 4.2.7
|
|
*
|
|
* @var Connect
|
|
*/
|
|
public $connect = null;
|
|
|
|
/**
|
|
* Class constructor.
|
|
*
|
|
* @since 4.0.0
|
|
*/
|
|
public function __construct() {
|
|
if ( ! wp_doing_cron() ) {
|
|
parent::__construct();
|
|
}
|
|
|
|
$this->connect = new Connect();
|
|
}
|
|
|
|
/**
|
|
* Actually adds the menu items to the admin bar.
|
|
*
|
|
* @since 4.0.0
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function addAdminBarMenuItems() {
|
|
// Add an upsell to Pro.
|
|
if ( current_user_can( $this->getPageRequiredCapability( '' ) ) ) {
|
|
$this->adminBarMenuItems['aioseo-pro-upgrade'] = [
|
|
'parent' => 'aioseo-main',
|
|
'title' => '<span class="aioseo-menu-highlight lite">' . __( 'Upgrade to Pro', 'all-in-one-seo-pack' ) . '</span>',
|
|
'id' => 'aioseo-pro-upgrade',
|
|
'href' => admin_url( 'admin.php?page=aioseo-tools&aioseo-redirect-upgrade-admin-bar=1' ),
|
|
'meta' => [ 'target' => '_blank' ],
|
|
];
|
|
}
|
|
|
|
parent::addAdminBarMenuItems();
|
|
}
|
|
|
|
/**
|
|
* Add the menu inside of WordPress.
|
|
*
|
|
* @since 4.0.0
|
|
*
|
|
* @return void
|
|
*/
|
|
public function addMenu() {
|
|
parent::addMenu();
|
|
|
|
$capability = $this->getPageRequiredCapability( '' );
|
|
|
|
// We use the global submenu, because we are adding an external link here.
|
|
if ( current_user_can( $capability ) ) {
|
|
global $submenu;
|
|
$submenu[ $this->pageSlug ][] = [
|
|
'<span class="aioseo-menu-highlight lite">' . esc_html__( 'Upgrade to Pro', 'all-in-one-seo-pack' ) . '</span>',
|
|
$capability,
|
|
admin_url( 'admin.php?page=aioseo-tools&aioseo-redirect-upgrade=1' )
|
|
];
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Check the query args to see if we need to redirect to an external URL.
|
|
*
|
|
* @since 4.2.3
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function checkForRedirects() {
|
|
$mappedUrls = [
|
|
// Added to resolve an issue with the open_basedir in the IIS.
|
|
|
|
'aioseo-redirect-upgrade' => apply_filters(
|
|
'aioseo_upgrade_link',
|
|
aioseo()->helpers->utmUrl( AIOSEO_MARKETING_URL . 'lite-upgrade/', 'admin-menu', null, false )
|
|
),
|
|
'aioseo-redirect-upgrade-admin-bar' => apply_filters(
|
|
'aioseo_upgrade_link',
|
|
aioseo()->helpers->utmUrl( AIOSEO_MARKETING_URL . 'lite-upgrade/', 'admin-bar', null, false )
|
|
)
|
|
];
|
|
|
|
foreach ( $mappedUrls as $queryArg => $redirectUrl ) {
|
|
if ( isset( $_GET[ $queryArg ] ) ) { // phpcs:ignore HM.Security.NonceVerification.Recommended, WordPress.Security.NonceVerification.Recommended
|
|
wp_redirect( $redirectUrl ); // phpcs:ignore WordPress.Security.SafeRedirect.wp_redirect_wp_redirect
|
|
exit;
|
|
}
|
|
}
|
|
}
|
|
} |