HEX
Server: Apache
System: Linux web04.cloudvoor.nl 5.15.0-1089-azure #98~20.04.1-Ubuntu SMP Fri May 2 20:18:39 UTC 2025 x86_64
User: web540 (1038)
PHP: 8.3.21
Disabled: exec,system,passthru,shell_exec,escapeshellarg,escapeshellcmd,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname,expect_popen,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare
Upload Files
File: /var/www/clients/client62/web540/web/wp-content/plugins/jetpack-boost-git/app/rest-api/REST_API.php
<?php

namespace Automattic\Jetpack_Boost\REST_API;

use Automattic\Jetpack_Boost\REST_API\Contracts\Endpoint;

class REST_API {

	/**
	 * @var Route[]
	 */
	protected $routes = array();

	/**
	 * @param Endpoint[] $routes
	 */
	public function __construct( $routes ) {
		foreach ( $routes as $route_class ) {
			$this->routes[] = new Route( $route_class );
		}
	}

	public function register_rest_routes() {
		foreach ( $this->routes as $route ) {
			$route->register_rest_route();
		}
	}

	/**
	 * @param Endpoint|Endpoint[]|string $endpoints
	 *
	 * @return void
	 */
	public static function register( $endpoints ) {
		// If endpoints are passed as a string,
		// (array) will convert it to an array.
		$rest_api = new REST_API( (array) $endpoints );
		add_action( 'rest_api_init', array( $rest_api, 'register_rest_routes' ) );
	}
}