Code Duplication    Length = 9-9 lines in 9 locations

class.jetpack.php 9 locations

@@ 1137-1145 (lines=9) @@
1134
	 * @deprecated since 7.7.0
1135
	 * @see Automattic\Jetpack\Connection\Manager::require_jetpack_authentication()
1136
	 */
1137
	public function require_jetpack_authentication() {
1138
		_deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::require_jetpack_authentication' );
1139
1140
		if ( ! $this->connection_manager ) {
1141
			$this->connection_manager = new Connection_Manager();
1142
		}
1143
1144
		$this->connection_manager->require_jetpack_authentication();
1145
	}
1146
1147
	/**
1148
	 * Load language files
@@ 884-892 (lines=9) @@
881
	 * @deprecated since 7.7.0
882
	 * @see Automattic\Jetpack\Connection\Manager::initialize_rest_api_registration_connector()
883
	 */
884
	public function initialize_rest_api_registration_connector() {
885
		_deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::initialize_rest_api_registration_connector' );
886
887
		if ( ! $this->connection_manager ) {
888
			$this->connection_manager = new Connection_Manager();
889
		}
890
891
		$this->connection_manager->initialize_rest_api_registration_connector();
892
	}
893
894
	/**
895
	 * This is ported over from the manage module, which has been deprecated and baked in here.
@@ 5702-5710 (lines=9) @@
5699
	 * @param int    $timestamp Timestamp of the request.
5700
	 * @param string $nonce     Nonce string.
5701
	 */
5702
	public function add_nonce( $timestamp, $nonce ) {
5703
		_deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::add_nonce' );
5704
5705
		if ( ! $this->connection_manager ) {
5706
			$this->connection_manager = new Connection_Manager();
5707
		}
5708
5709
		return $this->connection_manager->add_nonce( $timestamp, $nonce );
5710
	}
5711
5712
	/**
5713
	 * In some setups, $HTTP_RAW_POST_DATA can be emptied during some IXR_Server paths since it is passed by reference to various methods.
@@ 5722-5730 (lines=9) @@
5719
	 * @param array $methods XMLRPC methods.
5720
	 * @return array XMLRPC methods, with the $HTTP_RAW_POST_DATA one.
5721
	 */
5722
	public function xmlrpc_methods( $methods ) {
5723
		_deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::xmlrpc_methods' );
5724
5725
		if ( ! $this->connection_manager ) {
5726
			$this->connection_manager = new Connection_Manager();
5727
		}
5728
5729
		return $this->connection_manager->xmlrpc_methods( $methods );
5730
	}
5731
5732
	/**
5733
	 * Register additional public XMLRPC methods.
@@ 5741-5749 (lines=9) @@
5738
	 * @param array $methods Public XMLRPC methods.
5739
	 * @return array Public XMLRPC methods, with the getOptions one.
5740
	 */
5741
	public function public_xmlrpc_methods( $methods ) {
5742
		_deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::public_xmlrpc_methods' );
5743
5744
		if ( ! $this->connection_manager ) {
5745
			$this->connection_manager = new Connection_Manager();
5746
		}
5747
5748
		return $this->connection_manager->public_xmlrpc_methods( $methods );
5749
	}
5750
5751
	/**
5752
	 * Handles a getOptions XMLRPC method call.
@@ 5760-5768 (lines=9) @@
5757
	 * @param array $args method call arguments.
5758
	 * @return array an amended XMLRPC server options array.
5759
	 */
5760
	public function jetpack_getOptions( $args ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid
5761
		_deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::jetpack_getOptions' );
5762
5763
		if ( ! $this->connection_manager ) {
5764
			$this->connection_manager = new Connection_Manager();
5765
		}
5766
5767
		return $this->connection_manager->jetpack_getOptions( $args );
5768
	}
5769
5770
	/**
5771
	 * Adds Jetpack-specific options to the output of the XMLRPC options method.
@@ 5779-5787 (lines=9) @@
5776
	 * @param array $options Standard Core options.
5777
	 * @return array Amended options.
5778
	 */
5779
	public function xmlrpc_options( $options ) {
5780
		_deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::xmlrpc_options' );
5781
5782
		if ( ! $this->connection_manager ) {
5783
			$this->connection_manager = new Connection_Manager();
5784
		}
5785
5786
		return $this->connection_manager->xmlrpc_options( $options );
5787
	}
5788
5789
	/**
5790
	 * Cleans nonces that were saved when calling ::add_nonce.
@@ 1014-1022 (lines=9) @@
1011
	 * @param array $methods A list of registered WordPress XMLRPC methods.
1012
	 * @return array Filtered $methods
1013
	 */
1014
	public function remove_non_jetpack_xmlrpc_methods( $methods ) {
1015
		_deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::remove_non_jetpack_xmlrpc_methods' );
1016
1017
		if ( ! $this->connection_manager ) {
1018
			$this->connection_manager = new Connection_Manager();
1019
		}
1020
1021
		return $this->connection_manager->remove_non_jetpack_xmlrpc_methods( $methods );
1022
	}
1023
1024
	/**
1025
	 * Since a lot of hosts use a hammer approach to "protecting" WordPress sites,
@@ 1034-1042 (lines=9) @@
1031
	 * @deprecated since 7.7.0
1032
	 * @see Automattic\Jetpack\Connection\Manager::alternate_xmlrpc()
1033
	 */
1034
	public function alternate_xmlrpc() {
1035
		_deprecated_function( __METHOD__, 'jetpack-7.7', 'Automattic\\Jetpack\\Connection\\Manager::alternate_xmlrpc' );
1036
1037
		if ( ! $this->connection_manager ) {
1038
			$this->connection_manager = new Connection_Manager();
1039
		}
1040
1041
		$this->connection_manager->alternate_xmlrpc();
1042
	}
1043
1044
	/**
1045
	 * The callback for the JITM ajax requests.