HEX
Server: Apache/2.4.65 (Debian)
System: Linux web6 5.10.0-36-amd64 #1 SMP Debian 5.10.244-1 (2025-09-29) x86_64
User: innocamp (1028)
PHP: 7.4.33
Disabled: 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: /home/fps/public_html/wp-content/plugins/jetpack/sal/class.json-api-platform-jetpack.php
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
/**
 * WPORG_Platform class that extends SAL_Platform, returning a Jetpack_Site with a $blog_id and $token
 *
 * @package automattic/jetpack
 */

require_once __DIR__ . '/class.json-api-platform.php';

/**
 * Base class for WPORG_Platform, which extends SAL_Platform
 */
class WPORG_Platform extends SAL_Platform {

	/**
	 * Given a Jetpack blog ID, this function returns a Jetpack_Site instance
	 *
	 * @param int $blog_id A Jetpack blog ID.
	 * @return Jetpack_Site A Jetpack_Site instance including all relevant details needed to define a Jetpack site.
	 **/
	public function get_site( $blog_id ) {
		require_once __DIR__ . '/class.json-api-site-jetpack.php';
		return new Jetpack_Site( $blog_id, $this );
	}
}

/**
 * Given a token instance (with blog and user id related information), this function returns a new WPORG_Platform instance
 *
 * @param SAL_Token $token A token instance.
 * @see class.json-api-token.php
 * @return WPORG_Platform A WPORG_Platform instance including all relevant details needed to define a Jetpack site, as well as a token instance.
 **/
function wpcom_get_sal_platform( $token ) {
	return new WPORG_Platform( $token );
}