Code Duplication    Length = 2-8 lines in 4 locations

class.jetpack-idc.php 1 location

@@ 270-277 (lines=8) @@
267
			)
268
		);
269
270
		if ( ! wp_style_is( 'jetpack-dops-style' ) ) {
271
			wp_register_style(
272
				'jetpack-dops-style',
273
				plugins_url( '_inc/build/admin.dops-style.css', JETPACK__PLUGIN_FILE ),
274
				array(),
275
				JETPACK__VERSION
276
			);
277
		}
278
279
		wp_enqueue_style(
280
			'jetpack-idc-css',

class.jetpack-network.php 1 location

@@ 282-284 (lines=3) @@
279
		require_once( JETPACK__PLUGIN_DIR . '_inc/genericons.php' );
280
		jetpack_register_genericons();
281
282
		if ( ! wp_style_is( 'jetpack-icons', 'registered' ) ) {
283
			wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION );
284
		}
285
286
		add_action( 'admin_enqueue_scripts', array( $this, 'admin_menu_css' ) );
287
	}

class.jetpack.php 2 locations

@@ 849-850 (lines=2) @@
846
		require_once( JETPACK__PLUGIN_DIR . '_inc/social-logos.php' );
847
		jetpack_register_social_logos();
848
849
		if ( ! wp_style_is( 'jetpack-icons', 'registered' ) )
850
			wp_register_style( 'jetpack-icons', plugins_url( 'css/jetpack-icons.min.css', JETPACK__PLUGIN_FILE ), false, JETPACK__VERSION );
851
	}
852
853
	/**
@@ 3507-3514 (lines=8) @@
3504
	function admin_banner_styles() {
3505
		$min = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
3506
3507
		if ( ! wp_style_is( 'jetpack-dops-style' ) ) {
3508
			wp_register_style(
3509
				'jetpack-dops-style',
3510
				plugins_url( '_inc/build/admin.dops-style.css', JETPACK__PLUGIN_FILE ),
3511
				array(),
3512
				JETPACK__VERSION
3513
			);
3514
		}
3515
3516
		wp_enqueue_style(
3517
			'jetpack',