auto-update-notification-presenter.php
793 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
42
<?php
namespace Yoast\WP\SEO\Presenters\Admin;
use Yoast\WP\SEO\Presenters\Abstract_Presenter;
/**
* Class Auto_Update_Notification_Presenter.
*
* @deprecated 19.8
* @codeCoverageIgnore
*/
class Auto_Update_Notification_Presenter extends Abstract_Presenter {
/**
* Returns the notification as an HTML string.
*
* @deprecated 19.8
* @codeCoverageIgnore
*
* @return string The notification in an HTML string representation.
*/
public function present() {
\_deprecated_function( __METHOD__, 'Yoast SEO 19.8' );
return '';
}
/**
* Returns the message to show.
*
* @deprecated 19.8
* @codeCoverageIgnore
*
* @return string The message.
*/
protected function get_message() {
\_deprecated_function( __METHOD__, 'Yoast SEO 19.8' );
return '';
}
}