@@ 883-891 (lines=9) @@ | ||
880 | * @deprecated since 7.7.0 |
|
881 | * @see Automattic\Jetpack\Connection\Manager::initialize_rest_api_registration_connector() |
|
882 | */ |
|
883 | public function initialize_rest_api_registration_connector() { |
|
884 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::initialize_rest_api_registration_connector' ); |
|
885 | ||
886 | if ( ! $this->connection_manager ) { |
|
887 | $this->connection_manager = new Connection_Manager(); |
|
888 | } |
|
889 | ||
890 | $this->connection_manager->initialize_rest_api_registration_connector(); |
|
891 | } |
|
892 | ||
893 | /** |
|
894 | * This is ported over from the manage module, which has been deprecated and baked in here. |
|
@@ 1003-1011 (lines=9) @@ | ||
1000 | * @param array $methods A list of registered WordPress XMLRPC methods. |
|
1001 | * @return array Filtered $methods |
|
1002 | */ |
|
1003 | public function remove_non_jetpack_xmlrpc_methods( $methods ) { |
|
1004 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::remove_non_jetpack_xmlrpc_methods' ); |
|
1005 | ||
1006 | if ( ! $this->connection_manager ) { |
|
1007 | $this->connection_manager = new Connection_Manager(); |
|
1008 | } |
|
1009 | ||
1010 | return $this->connection_manager->remove_non_jetpack_xmlrpc_methods( $methods ); |
|
1011 | } |
|
1012 | ||
1013 | /** |
|
1014 | * Since a lot of hosts use a hammer approach to "protecting" WordPress sites, |
|
@@ 1023-1031 (lines=9) @@ | ||
1020 | * @deprecated since 7.7.0 |
|
1021 | * @see Automattic\Jetpack\Connection\Manager::alternate_xmlrpc() |
|
1022 | */ |
|
1023 | public function alternate_xmlrpc() { |
|
1024 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::alternate_xmlrpc' ); |
|
1025 | ||
1026 | if ( ! $this->connection_manager ) { |
|
1027 | $this->connection_manager = new Connection_Manager(); |
|
1028 | } |
|
1029 | ||
1030 | $this->connection_manager->alternate_xmlrpc(); |
|
1031 | } |
|
1032 | ||
1033 | /** |
|
1034 | * The callback for the JITM ajax requests. |
|
@@ 1131-1139 (lines=9) @@ | ||
1128 | * @deprecated since 7.7.0 |
|
1129 | * @see Automattic\Jetpack\Connection\Manager::require_jetpack_authentication() |
|
1130 | */ |
|
1131 | public function require_jetpack_authentication() { |
|
1132 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::require_jetpack_authentication' ); |
|
1133 | ||
1134 | if ( ! $this->connection_manager ) { |
|
1135 | $this->connection_manager = new Connection_Manager(); |
|
1136 | } |
|
1137 | ||
1138 | $this->connection_manager->require_jetpack_authentication(); |
|
1139 | } |
|
1140 | ||
1141 | /** |
|
1142 | * Load language files |
|
@@ 5713-5721 (lines=9) @@ | ||
5710 | * @param int $timestamp Timestamp of the request. |
|
5711 | * @param string $nonce Nonce string. |
|
5712 | */ |
|
5713 | public function add_nonce( $timestamp, $nonce ) { |
|
5714 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::add_nonce' ); |
|
5715 | ||
5716 | if ( ! $this->connection_manager ) { |
|
5717 | $this->connection_manager = new Connection_Manager(); |
|
5718 | } |
|
5719 | ||
5720 | return $this->connection_manager->add_nonce( $timestamp, $nonce ); |
|
5721 | } |
|
5722 | ||
5723 | /** |
|
5724 | * In some setups, $HTTP_RAW_POST_DATA can be emptied during some IXR_Server paths since it is passed by reference to various methods. |
|
@@ 5733-5741 (lines=9) @@ | ||
5730 | * @param array $methods XMLRPC methods. |
|
5731 | * @return array XMLRPC methods, with the $HTTP_RAW_POST_DATA one. |
|
5732 | */ |
|
5733 | public function xmlrpc_methods( $methods ) { |
|
5734 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::xmlrpc_methods' ); |
|
5735 | ||
5736 | if ( ! $this->connection_manager ) { |
|
5737 | $this->connection_manager = new Connection_Manager(); |
|
5738 | } |
|
5739 | ||
5740 | return $this->connection_manager->xmlrpc_methods( $methods ); |
|
5741 | } |
|
5742 | ||
5743 | /** |
|
5744 | * Register additional public XMLRPC methods. |
|
@@ 5752-5760 (lines=9) @@ | ||
5749 | * @param array $methods Public XMLRPC methods. |
|
5750 | * @return array Public XMLRPC methods, with the getOptions one. |
|
5751 | */ |
|
5752 | public function public_xmlrpc_methods( $methods ) { |
|
5753 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::public_xmlrpc_methods' ); |
|
5754 | ||
5755 | if ( ! $this->connection_manager ) { |
|
5756 | $this->connection_manager = new Connection_Manager(); |
|
5757 | } |
|
5758 | ||
5759 | return $this->connection_manager->public_xmlrpc_methods( $methods ); |
|
5760 | } |
|
5761 | ||
5762 | /** |
|
5763 | * Handles a getOptions XMLRPC method call. |
|
@@ 5771-5779 (lines=9) @@ | ||
5768 | * @param array $args method call arguments. |
|
5769 | * @return array an amended XMLRPC server options array. |
|
5770 | */ |
|
5771 | public function jetpack_getOptions( $args ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid |
|
5772 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::jetpack_getOptions' ); |
|
5773 | ||
5774 | if ( ! $this->connection_manager ) { |
|
5775 | $this->connection_manager = new Connection_Manager(); |
|
5776 | } |
|
5777 | ||
5778 | return $this->connection_manager->jetpack_getOptions( $args ); |
|
5779 | } |
|
5780 | ||
5781 | /** |
|
5782 | * Adds Jetpack-specific options to the output of the XMLRPC options method. |
|
@@ 5790-5798 (lines=9) @@ | ||
5787 | * @param array $options Standard Core options. |
|
5788 | * @return array Amended options. |
|
5789 | */ |
|
5790 | public function xmlrpc_options( $options ) { |
|
5791 | _deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::xmlrpc_options' ); |
|
5792 | ||
5793 | if ( ! $this->connection_manager ) { |
|
5794 | $this->connection_manager = new Connection_Manager(); |
|
5795 | } |
|
5796 | ||
5797 | return $this->connection_manager->xmlrpc_options( $options ); |
|
5798 | } |
|
5799 | ||
5800 | /** |
|
5801 | * Cleans nonces that were saved when calling ::add_nonce. |