Code Duplication    Length = 15-16 lines in 2 locations

modules/post-by-email.php 1 location

@@ 131-145 (lines=15) @@
128
	<?php
129
	}
130
131
	function get_post_by_email_address() {
132
		$xml = new Jetpack_IXR_Client( array(
133
			'user_id' => get_current_user_id(),
134
		) );
135
		$xml->query( 'jetpack.getPostByEmailAddress' );
136
137
		if ( $xml->isError() )
138
			return NULL;
139
140
		$response = $xml->getResponse();
141
		if ( empty( $response ) )
142
			return NULL;
143
144
		return $response;
145
	}
146
147
	function create_post_by_email_address() {
148
		self::__process_ajax_proxy_request(

class.jetpack.php 1 location

@@ 1819-1834 (lines=16) @@
1816
	/**
1817
	 * Get the wpcom email of the current|specified connected user.
1818
	 */
1819
	public static function get_connected_user_email( $user_id = null ) {
1820
		if ( ! $user_id ) {
1821
			$user_id = get_current_user_id();
1822
		}
1823
1824
		$xml = new Jetpack_IXR_Client(
1825
			array(
1826
				'user_id' => $user_id,
1827
			)
1828
		);
1829
		$xml->query( 'wpcom.getUserEmail' );
1830
		if ( ! $xml->isError() ) {
1831
			return $xml->getResponse();
1832
		}
1833
		return false;
1834
	}
1835
1836
	/**
1837
	 * Get the wpcom email of the master user.