Server IP : 198.54.121.189 / Your IP : 216.73.216.224
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Upload Files :
Command :
Current File : /home/giriqfky/trustyourlawyer.com/wp-content/plugins/backwpup/src/Backups/API//Subscriber.php
<?php
declare(strict_types=1);
namespace WPMedia\BackWPup\Backups\API;
use WPMedia\BackWPup\EventManagement\SubscriberInterface;
class Subscriber implements SubscriberInterface {
/**
* An instance of the Rest class used for handling REST API interactions.
*
* @var Rest
*/
private Rest $rest;
/**
* Constructor for the Subscriber class.
*
* @param Rest $rest An instance of the Rest class used for handling REST API interactions.
*/
public function __construct( Rest $rest ) {
$this->rest = $rest;
}
/**
* Retrieves the list of events that this subscriber is interested in.
*
* This method is typically used to define the events and their corresponding
* callback methods that the subscriber will handle.
*
* @return array An associative array where the keys are event names and the values
* are the methods or callables to be executed when the event is triggered.
*/
public static function get_subscribed_events(): array {
return [
'rest_api_init' => 'register_routes',
];
}
/**
* Registers the routes for the API subscriber.
*
* This method is responsible for defining the API routes
* that the subscriber will handle.
*
* @return void
*/
public function register_routes(): void {
$this->rest->register_routes();
}
}
Name |
Size |
Last Modified |
Owner / Group |
Permissions |
Options |
.. | -- | July 10 2025 04:32:37 | giriqfky / giriqfky | 0755 | |
| | | | | |
.htaccess | 0.41 KB | July 10 2025 04:32:37 | giriqfky / giriqfky | 0644 | |
Rest.php | 10.038 KB | May 20 2025 11:41:24 | giriqfky / giriqfky | 0644 | |
Subscriber.php | 1.277 KB | May 20 2025 11:41:24 | giriqfky / giriqfky | 0644 | |