Code Duplication    Length = 2-8 lines in 4 locations

class.jetpack-idc.php 1 location

@@ 286-293 (lines=8) @@
283
			)
284
		);
285
286
		if ( ! wp_style_is( 'jetpack-dops-style' ) ) {
287
			wp_register_style(
288
				'jetpack-dops-style',
289
				plugins_url( '_inc/build/admin.css', JETPACK__PLUGIN_FILE ),
290
				array(),
291
				JETPACK__VERSION
292
			);
293
		}
294
295
		wp_enqueue_style(
296
			'jetpack-idc-css',

class.jetpack-network.php 1 location

@@ 309-311 (lines=3) @@
306
		require_once JETPACK__PLUGIN_DIR . '_inc/genericons.php';
307
		jetpack_register_genericons();
308
309
		if ( ! wp_style_is( 'jetpack-icons', 'registered' ) ) {
310
			wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION );
311
		}
312
313
		add_action( 'admin_enqueue_scripts', array( $this, 'admin_menu_css' ) );
314
	}

class.jetpack.php 2 locations

@@ 3929-3936 (lines=8) @@
3926
	function admin_banner_styles() {
3927
		$min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
3928
3929
		if ( ! wp_style_is( 'jetpack-dops-style' ) ) {
3930
			wp_register_style(
3931
				'jetpack-dops-style',
3932
				plugins_url( '_inc/build/admin.css', JETPACK__PLUGIN_FILE ),
3933
				array(),
3934
				JETPACK__VERSION
3935
			);
3936
		}
3937
3938
		wp_enqueue_style(
3939
			'jetpack',
@@ 1155-1156 (lines=2) @@
1152
		require_once JETPACK__PLUGIN_DIR . '_inc/social-logos.php';
1153
		jetpack_register_social_logos();
1154
1155
		if ( ! wp_style_is( 'jetpack-icons', 'registered' ) ) {
1156
			wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION );
1157
		}
1158
	}
1159