Yoast\WP\SEO\Actions\Importing\Aioseo

Aioseo_Posts_Importing_Action::__construct()publicYoast 1.0

Class constructor.

Метод класса: Aioseo_Posts_Importing_Action{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$Aioseo_Posts_Importing_Action = new Aioseo_Posts_Importing_Action();
$Aioseo_Posts_Importing_Action->__construct(;

Код Aioseo_Posts_Importing_Action::__construct() Yoast 24.3

public function __construct(
	Indexable_Repository $indexable_repository,
	wpdb $wpdb,
	Import_Cursor_Helper $import_cursor,
	Indexable_Helper $indexable_helper,
	Indexable_To_Postmeta_Helper $indexable_to_postmeta,
	Options_Helper $options,
	Image_Helper $image,
	Sanitization_Helper $sanitization,
	Aioseo_Replacevar_Service $replacevar_handler,
	Aioseo_Robots_Provider_Service $robots_provider,
	Aioseo_Robots_Transformer_Service $robots_transformer,
	Aioseo_Social_Images_Provider_Service $social_images_provider
) {
	parent::__construct( $import_cursor, $options, $sanitization, $replacevar_handler, $robots_provider, $robots_transformer );

	$this->indexable_repository   = $indexable_repository;
	$this->wpdb                   = $wpdb;
	$this->image                  = $image;
	$this->indexable_helper       = $indexable_helper;
	$this->indexable_to_postmeta  = $indexable_to_postmeta;
	$this->social_images_provider = $social_images_provider;
}