Yoast\WP\SEO\Helpers

Crawl_Cleanup_Helper::__constructpublicYoast 1.0

Crawl Cleanup Basic integration constructor.

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

Хуков нет.

Возвращает

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

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

$Crawl_Cleanup_Helper = new Crawl_Cleanup_Helper();
$Crawl_Cleanup_Helper->__construct( $current_page_helper, $options_helper, $url_helper, $redirect_helper );
$current_page_helper(Current_Page_Helper) (обязательный)
The current page helper.
$options_helper(Options_Helper) (обязательный)
The option helper.
$url_helper(Url_Helper) (обязательный)
The URL helper.
$redirect_helper(Redirect_Helper) (обязательный)
The Redirect Helper.

Код Crawl_Cleanup_Helper::__construct() Yoast 27.3

public function __construct(
	Current_Page_Helper $current_page_helper,
	Options_Helper $options_helper,
	Url_Helper $url_helper,
	Redirect_Helper $redirect_helper
) {
	$this->current_page_helper = $current_page_helper;
	$this->options_helper      = $options_helper;
	$this->url_helper          = $url_helper;
	$this->redirect_helper     = $redirect_helper;
}