Yoast\WP\SEO\Integrations
Front_End_Integration::__construct() public Yoast 1.0
Front_End_Integration constructor.
{} Это метод класса: Front_End_Integration{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$Front_End_Integration = new Front_End_Integration(); $Front_End_Integration->__construct(;
- $context_memoizer(Meta_Tags_Context_Memoizer) (обязательный)
- The meta tags context memoizer.
- $service_container(Containerчислоerface) (обязательный)
- The DI container.
- $options(Options_Helper) (обязательный)
- The options helper.
- $helpers(Helpers_Surface) (обязательный)
- The helpers surface.
- $replace_vars(WPSEO_Replace_Vars) (обязательный)
- The replace vars helper.
Код Front_End_Integration::__construct() Front End Integration:: construct Yoast 15.6.2
public function __construct(
Meta_Tags_Context_Memoizer $context_memoizer,
ContainerInterface $service_container,
Options_Helper $options,
Helpers_Surface $helpers,
WPSEO_Replace_Vars $replace_vars
) {
$this->container = $service_container;
$this->context_memoizer = $context_memoizer;
$this->options = $options;
$this->helpers = $helpers;
$this->replace_vars = $replace_vars;
}