Yoast\WP\SEO\Helpers

Indexing_Helper::__constructpublicYoast 1.0

Indexing_Helper constructor.

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

Хуков нет.

Возвращает

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

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

$Indexing_Helper = new Indexing_Helper();
$Indexing_Helper->__construct( $options_helper, $date_helper, $notification_center );
$options_helper(Options_Helper) (обязательный)
The options helper.
$date_helper(Date_Helper) (обязательный)
The date helper.
$notification_center(Yoast_Notification_Center) (обязательный)
The notification center.

Код Indexing_Helper::__construct() Yoast 26.9

public function __construct(
	Options_Helper $options_helper,
	Date_Helper $date_helper,
	Yoast_Notification_Center $notification_center
) {
	$this->options_helper      = $options_helper;
	$this->date_helper         = $date_helper;
	$this->notification_center = $notification_center;
}