Yoast\WP\SEO\Dashboard\User_Interface\Setup

Setup_Flow_Interceptor::__construct()publicYoast 1.0

The constructor.

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

Хуков нет.

Возвращает

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

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

$Setup_Flow_Interceptor = new Setup_Flow_Interceptor();
$Setup_Flow_Interceptor->__construct( $current_page_helper, $redirect_helper, $site_kit_configuration );
$current_page_helper(Current_Page_Helper) (обязательный)
The current page helper.
$redirect_helper(Redirect_Helper) (обязательный)
The redirect helper to abstract away the actual redirecting.
$site_kit_configuration(Site_Kit) (обязательный)
The Site Kit configuration object.

Код Setup_Flow_Interceptor::__construct() Yoast 25.1

public function __construct( Current_Page_Helper $current_page_helper, Redirect_Helper $redirect_helper, Site_Kit $site_kit_configuration ) {
	$this->current_page_helper    = $current_page_helper;
	$this->redirect_helper        = $redirect_helper;
	$this->site_kit_configuration = $site_kit_configuration;
}