149 lines
3.0 KiB
PHP
149 lines
3.0 KiB
PHP
<?php
|
|
namespace AIOSEO\Plugin\Common\Standalone;
|
|
|
|
// Exit if accessed directly.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
use AIOSEO\Plugin\Pro\Standalone as ProStandalone;
|
|
|
|
/**
|
|
* Registers the standalone components.
|
|
*
|
|
* @since 4.2.0
|
|
*/
|
|
class Standalone {
|
|
/**
|
|
* HeadlineAnalyzer class instance.
|
|
*
|
|
* @since 4.2.7
|
|
*
|
|
* @var HeadlineAnalyzer
|
|
*/
|
|
public $headlineAnalyzer = null;
|
|
|
|
/**
|
|
* FlyoutMenu class instance.
|
|
*
|
|
* @since 4.2.7
|
|
*
|
|
* @var FlyoutMenu
|
|
*/
|
|
public $flyoutMenu = null;
|
|
|
|
/**
|
|
* SeoPreview class instance.
|
|
*
|
|
* @since 4.2.8
|
|
*
|
|
* @var SeoPreview
|
|
*/
|
|
public $seoPreview = null;
|
|
|
|
/**
|
|
* SetupWizard class instance.
|
|
*
|
|
* @since 4.2.7
|
|
*
|
|
* @var SetupWizard
|
|
*/
|
|
public $setupWizard = null;
|
|
|
|
/**
|
|
* PrimaryTerm class instance.
|
|
*
|
|
* @since 4.3.6
|
|
*
|
|
* @var PrimaryTerm
|
|
*/
|
|
public $primaryTerm = null;
|
|
|
|
/**
|
|
* UserProfileTab class instance.
|
|
*
|
|
* @since 4.5.4
|
|
*
|
|
* @var UserProfileTab
|
|
*/
|
|
public $userProfileTab = null;
|
|
|
|
/**
|
|
* BuddyPress class instance.
|
|
*
|
|
* @since 4.7.6
|
|
*
|
|
* @var BuddyPress\BuddyPress
|
|
*/
|
|
public $buddyPress = null;
|
|
|
|
/**
|
|
* BbPress class instance.
|
|
*
|
|
* @since 4.8.1
|
|
*
|
|
* @var BbPress\BbPress
|
|
*/
|
|
public $bbPress = null;
|
|
|
|
/**
|
|
* List of page builder integration class instances.
|
|
*
|
|
* @since 4.2.7
|
|
*
|
|
* @var object[]
|
|
*/
|
|
public $pageBuilderIntegrations = [];
|
|
|
|
/**
|
|
* List of block class instances.
|
|
*
|
|
* @since 4.2.7
|
|
*
|
|
* @var object[]
|
|
*/
|
|
public $standaloneBlocks = [];
|
|
|
|
/**
|
|
* Class constructor.
|
|
*
|
|
* @since 4.2.0
|
|
*/
|
|
public function __construct() {
|
|
$this->headlineAnalyzer = new HeadlineAnalyzer();
|
|
$this->flyoutMenu = new FlyoutMenu();
|
|
$this->seoPreview = new SeoPreview();
|
|
$this->setupWizard = new SetupWizard();
|
|
$this->primaryTerm = aioseo()->pro ? new ProStandalone\PrimaryTerm() : new PrimaryTerm();
|
|
$this->userProfileTab = new UserProfileTab();
|
|
$this->buddyPress = aioseo()->pro ? new ProStandalone\BuddyPress\BuddyPress() : new BuddyPress\BuddyPress();
|
|
$this->bbPress = aioseo()->pro ? new ProStandalone\BbPress\BbPress() : new BbPress\BbPress();
|
|
|
|
aioseo()->pro ? new ProStandalone\DetailsColumn() : new DetailsColumn();
|
|
|
|
new AdminBarNoindexWarning();
|
|
new LimitModifiedDate();
|
|
new Notifications();
|
|
new PublishPanel();
|
|
new WpCode();
|
|
|
|
$this->pageBuilderIntegrations = [
|
|
'elementor' => new PageBuilders\Elementor(),
|
|
'divi' => new PageBuilders\Divi(),
|
|
'seedprod' => new PageBuilders\SeedProd(),
|
|
'wpbakery' => new PageBuilders\WPBakery(),
|
|
'avada' => new PageBuilders\Avada(),
|
|
'siteorigin' => new PageBuilders\SiteOrigin(),
|
|
'thrive' => new PageBuilders\ThriveArchitect(),
|
|
'bricks' => new PageBuilders\Bricks(),
|
|
'oxygen' => new PageBuilders\Oxygen()
|
|
];
|
|
|
|
$this->standaloneBlocks = [
|
|
'tocBlock' => new Blocks\TableOfContents(),
|
|
'faqBlock' => new Blocks\FaqPage(),
|
|
'keyPointsBlock' => new Blocks\KeyPoints(),
|
|
'aiAssistant' => new Blocks\AiAssistant()
|
|
];
|
|
}
|
|
} |