class-onpage-email-presenter.php
735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/**
* @package WPSEO\Admin
*/
/**
* @deprecated
*
* This class is the presenter for the email. Based on the given parameters and data it will parse the email message
* that will be send
*/
class WPSEO_OnPage_Email_Presenter {
/**
* @deprecated 3.0.7
*/
public function __construct() {
_deprecated_constructor( 'WPSEO_OnPage_Email_Presenter', 'WPSEO 3.0.7' );
}
/**
* @deprecated 3.0.7
*/
public function get_subject() {
_deprecated_function( 'WPSEO_OnPage_Email_Presenter', 'WPSEO 3.0.7' );
return array(
'0' => '',
'1' => '',
);
}
/**
* @deprecated 3.0.7
*/
public function get_message() {
_deprecated_function( 'WPSEO_OnPage_Email_Presenter', 'WPSEO 3.0.7' );
return '';
}
}