Code Duplication    Length = 11-15 lines in 2 locations

class.jetpack.php 1 location

@@ 4938-4948 (lines=11) @@
4935
		return self::connection()->get_assumed_site_creation_date();
4936
	}
4937
4938
	public static function apply_activation_source_to_args( &$args ) {
4939
		list( $activation_source_name, $activation_source_keyword ) = get_option( 'jetpack_activation_source' );
4940
4941
		if ( $activation_source_name ) {
4942
			$args['_as'] = urlencode( $activation_source_name );
4943
		}
4944
4945
		if ( $activation_source_keyword ) {
4946
			$args['_ak'] = urlencode( $activation_source_keyword );
4947
		}
4948
	}
4949
4950
	function build_reconnect_url( $raw = false ) {
4951
		$url = wp_nonce_url( self::admin_url( 'action=reconnect' ), 'jetpack-reconnect' );

packages/connection/src/class-manager.php 1 location

@@ 1181-1195 (lines=15) @@
1178
	 * @param Array $args arguments that need to have the source added.
1179
	 * @return Array $amended arguments.
1180
	 */
1181
	public static function apply_activation_source_to_args( $args ) {
1182
		list( $activation_source_name, $activation_source_keyword ) = get_option( 'jetpack_activation_source' );
1183
1184
		if ( $activation_source_name ) {
1185
			// phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.urlencode_urlencode
1186
			$args['_as'] = urlencode( $activation_source_name );
1187
		}
1188
1189
		if ( $activation_source_keyword ) {
1190
			// phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.urlencode_urlencode
1191
			$args['_ak'] = urlencode( $activation_source_keyword );
1192
		}
1193
1194
		return $args;
1195
	}
1196
1197
	/**
1198
	 * Returns the callable that would be used to generate secrets.