WP_Recovery_Mode_Email_Service::__construct() WordPress Method

This method initializes the class and registers all necessary hooks. It also loads the plugin's text domain for localization purposes.

WP_Recovery_Mode_Email_Service::__construct( WP_Recovery_Mode_Link_Service $link_service ) #

WP_Recovery_Mode_Email_Service constructor.


Parameters

$link_service

(WP_Recovery_Mode_Link_Service)(Required)


Top ↑

Source

File: wp-includes/class-wp-recovery-mode-email-service.php

	public function __construct( WP_Recovery_Mode_Link_Service $link_service ) {
		$this->link_service = $link_service;
	}


Top ↑

Changelog

Changelog
VersionDescription
5.2.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.