Yoast\WP\SEO\Integrations\Admin
Background_Indexing_Integration::__construct() public Yoast 1.0
Shutdown_Indexing_Integration constructor.
{} Это метод класса: Background_Indexing_Integration{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$Background_Indexing_Integration = new Background_Indexing_Integration(); $Background_Indexing_Integration->__construct(;
- $post_indexation(Indexable_Post_Indexation_Action) (обязательный)
- The post indexing action.
- $term_indexation(Indexable_Term_Indexation_Action) (обязательный)
- The term indexing action.
- $post_type_archive_indexation(Indexable_Post_Type_Archive_Indexation_Action) (обязательный)
- The post type archive indexing action.
- $general_indexation(Indexable_General_Indexation_Action) (обязательный)
- The general indexing action.
- $complete_indexation_action(Indexable_Indexing_Complete_Action) (обязательный)
- The complete indexing action.
- $post_link_indexing_action(Post_Link_Indexing_Action) (обязательный)
- The post indexing action.
- $term_link_indexing_action(Term_Link_Indexing_Action) (обязательный)
- The term indexing action.
- $indexing_helper(Indexing_Helper) (обязательный)
- The indexing helper.
Код Background_Indexing_Integration::__construct() Background Indexing Integration:: construct Yoast 15.6.2
public function __construct(
Indexable_Post_Indexation_Action $post_indexation,
Indexable_Term_Indexation_Action $term_indexation,
Indexable_Post_Type_Archive_Indexation_Action $post_type_archive_indexation,
Indexable_General_Indexation_Action $general_indexation,
Indexable_Indexing_Complete_Action $complete_indexation_action,
Post_Link_Indexing_Action $post_link_indexing_action,
Term_Link_Indexing_Action $term_link_indexing_action,
Indexing_Helper $indexing_helper
) {
$this->post_indexation = $post_indexation;
$this->term_indexation = $term_indexation;
$this->post_type_archive_indexation = $post_type_archive_indexation;
$this->general_indexation = $general_indexation;
$this->complete_indexation_action = $complete_indexation_action;
$this->post_link_indexing_action = $post_link_indexing_action;
$this->term_link_indexing_action = $term_link_indexing_action;
$this->indexing_helper = $indexing_helper;
}