| @@ 1144-1158 (lines=15) @@ | ||
| 1141 | * @param Array $args arguments that need to have the source added. | |
| 1142 | * @return Array $amended arguments. | |
| 1143 | */ | |
| 1144 | 	public static function apply_activation_source_to_args( $args ) { | |
| 1145 | list( $activation_source_name, $activation_source_keyword ) = get_option( 'jetpack_activation_source' ); | |
| 1146 | ||
| 1147 | 		if ( $activation_source_name ) { | |
| 1148 | // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.urlencode_urlencode | |
| 1149 | $args['_as'] = urlencode( $activation_source_name ); | |
| 1150 | } | |
| 1151 | ||
| 1152 | 		if ( $activation_source_keyword ) { | |
| 1153 | // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.urlencode_urlencode | |
| 1154 | $args['_ak'] = urlencode( $activation_source_keyword ); | |
| 1155 | } | |
| 1156 | ||
| 1157 | return $args; | |
| 1158 | } | |
| 1159 | ||
| 1160 | /** | |
| 1161 | * Returns the callable that would be used to generate secrets. | |
| @@ 4876-4886 (lines=11) @@ | ||
| 4873 | return self::connection()->get_assumed_site_creation_date(); | |
| 4874 | } | |
| 4875 | ||
| 4876 | 	public static function apply_activation_source_to_args( &$args ) { | |
| 4877 | list( $activation_source_name, $activation_source_keyword ) = get_option( 'jetpack_activation_source' ); | |
| 4878 | ||
| 4879 | 		if ( $activation_source_name ) { | |
| 4880 | $args['_as'] = urlencode( $activation_source_name ); | |
| 4881 | } | |
| 4882 | ||
| 4883 | 		if ( $activation_source_keyword ) { | |
| 4884 | $args['_ak'] = urlencode( $activation_source_keyword ); | |
| 4885 | } | |
| 4886 | } | |
| 4887 | ||
| 4888 | 	function build_reconnect_url( $raw = false ) { | |
| 4889 | $url = wp_nonce_url( self::admin_url( 'action=reconnect' ), 'jetpack-reconnect' ); | |