2022-06-16 14:01:47 +02:00
|
|
|
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
|
2022-12-15 17:41:53 +01:00
|
|
|
|
|
|
|
|
use Automattic\Jetpack\VideoPress\XMLRPC;
|
2019-11-15 23:26:29 +01:00
|
|
|
/**
|
|
|
|
|
* VideoPress playback module markup generator.
|
|
|
|
|
*
|
|
|
|
|
* @since 1.3
|
|
|
|
|
*/
|
|
|
|
|
class VideoPress_XMLRPC {
|
|
|
|
|
|
|
|
|
|
/**
|
2022-12-15 17:41:53 +01:00
|
|
|
* Initialize the XMLRPC and get back a singleton instance.
|
2019-11-15 23:26:29 +01:00
|
|
|
*
|
2022-12-15 17:41:53 +01:00
|
|
|
* @return XMLRPC
|
|
|
|
|
* @deprecated 11.2
|
|
|
|
|
* @see Automattic\Jetpack\VideoPress\XMLRPC::init
|
2019-11-15 23:26:29 +01:00
|
|
|
*/
|
|
|
|
|
public static function init() {
|
2022-12-15 17:41:53 +01:00
|
|
|
_deprecated_function( __METHOD__, 'jetpack-11.2', 'Automattic\Jetpack\VideoPress\XMLRPC' );
|
|
|
|
|
return XMLRPC::init();
|
2019-11-15 23:26:29 +01:00
|
|
|
}
|
|
|
|
|
}
|