Yoast\WP\SEO\Presentations

Indexable_Presentation::set_helpers()publicYoast 1.0

Used by dependency injection container to inject the helpers.

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

Хуков нет.

Возвращает

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

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

$Indexable_Presentation = new Indexable_Presentation();
$Indexable_Presentation->set_helpers(;

Код Indexable_Presentation::set_helpers() Yoast 22.4

public function set_helpers(
	Image_Helper $image,
	Options_Helper $options,
	Current_Page_Helper $current_page,
	Url_Helper $url,
	User_Helper $user,
	Indexable_Helper $indexable,
	Permalink_Helper $permalink,
	Values_Helper $values
) {
	$this->image            = $image;
	$this->options          = $options;
	$this->current_page     = $current_page;
	$this->url              = $url;
	$this->user             = $user;
	$this->indexable_helper = $indexable;
	$this->permalink_helper = $permalink;
	$this->values_helper    = $values;
}