Code Duplication    Length = 5-5 lines in 2 locations

class.jetpack-gutenberg.php 1 location

@@ 499-503 (lines=5) @@
496
497
		// Enqueue styles.
498
		$style_relative_path = self::get_blocks_directory() . $type . '/view' . ( is_rtl() ? '.rtl' : '' ) . '.css';
499
		if ( self::block_has_asset( $style_relative_path ) ) {
500
			$style_version = self::get_asset_version( $style_relative_path );
501
			$view_style    = plugins_url( $style_relative_path, JETPACK__PLUGIN_FILE );
502
			wp_enqueue_style( 'jetpack-block-' . $type, $view_style, array(), $style_version );
503
		}
504
505
	}
506

modules/search/class.jetpack-search.php 1 location

@@ 276-280 (lines=5) @@
273
			}
274
275
			$style_relative_path = '_inc/build/instant-search/instant-search.min.css';
276
			if ( file_exists( JETPACK__PLUGIN_DIR . $script_relative_path ) ) {
277
				$style_version = self::get_asset_version( $style_relative_path );
278
				$style_path    = plugins_url( $style_relative_path, JETPACK__PLUGIN_FILE );
279
				wp_enqueue_style( 'jetpack-instant-search', $style_path, array(), $style_version );
280
			}
281
		}
282
	}
283