'Yoast SEO', 'version' => '14.0', 'basename' => 'wordpress-seo/wp-seo.php', 'slug' => 'yoast-seo' ], [ 'name' => 'Yoast SEO Premium', 'version' => '14.0', 'basename' => 'wordpress-seo-premium/wp-seo-premium.php', 'slug' => 'yoast-seo-premium' ], ]; /** * The post action name. * * @since 4.0.0 * * @var string */ public $postActionName = 'aioseo_import_post_meta_yoast_seo'; /** * The user action name. * * @since 4.1.4 * * @var string */ public $userActionName = 'aioseo_import_user_meta_yoast_seo'; /** * The post action name. * * @since 4.0.0 * * @param ImportExport $importer The main importer class. */ public function __construct( $importer ) { $this->helpers = new Helpers(); $this->postMeta = new PostMeta(); $this->userMeta = new UserMeta(); add_action( $this->postActionName, [ $this->postMeta, 'importPostMeta' ] ); add_action( $this->userActionName, [ $this->userMeta, 'importUserMeta' ] ); $plugins = $this->plugins; foreach ( $plugins as $key => $plugin ) { $plugins[ $key ]['class'] = $this; } $importer->addPlugins( $plugins ); } /** * Imports the settings. * * @since 4.0.0 * * @return void */ protected function importSettings() { new GeneralSettings(); new SearchAppearance(); new SocialMeta(); $this->userMeta->scheduleImport(); } }