RESTCSSSubscriber.php
1.03 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
namespace WP_Rocket\Engine\CriticalPath;
use WP_Rocket\Event_Management\Subscriber_Interface;
/**
* Class RESTCSSSubscriber
*
* @package WP_Rocket\Engine\CriticalPath
*/
class RESTCSSSubscriber implements Subscriber_Interface {
/**
* REST manager that has generate and delete methods.
*
* @var RESTWPInterface
*/
private $rest_manager;
/**
* RESTCSSSubscriber constructor.
*
* @param RESTWPInterface $rest_manager REST manager instance.
*/
public function __construct( RESTWPInterface $rest_manager ) {
$this->rest_manager = $rest_manager;
}
/**
* Return an array of events that this subscriber wants to listen to.
*
* @since 3.6
*
* @return array
*/
public static function get_subscribed_events() {
return [
'rest_api_init' => [ 'register_routes' ],
];
}
/**
* Registers generate/delete routes in the API.
*
* @since 3.6
*
* @return void
*/
public function register_routes() {
$this->rest_manager->register_generate_route();
$this->rest_manager->register_delete_route();
}
}