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)
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; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
5.2.0 | Introduced. |