Code Duplication    Length = 3-13 lines in 3 locations

_inc/lib/admin-pages/class.jetpack-admin-page.php 1 location

@@ 46-58 (lines=13) @@
43
	}
44
45
	function admin_head() {
46
		if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) ) {
47
			/**
48
			 * Fires in the <head> of a particular Jetpack configuation page.
49
			 *
50
			 * The dynamic portion of the hook name, `$_GET['configure']`,
51
			 * refers to the slug of module, such as 'stats', 'sso', etc.
52
			 * A complete hook for the latter would be
53
			 * 'jetpack_module_configuation_head_sso'.
54
			 *
55
			 * @since 3.0.0
56
			 */
57
			do_action( 'jetpack_module_configuration_head_' . $_GET['configure'] );
58
		}
59
	}
60
61
	// Render the page with a common top and bottom part, and page specific content

class.jetpack.php 2 locations

@@ 3091-3093 (lines=3) @@
3088
	}
3089
3090
	function admin_head() {
3091
		if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) )
3092
			/** This action is documented in class.jetpack-admin-page.php */
3093
			do_action( 'jetpack_module_configuration_head_' . $_GET['configure'] );
3094
	}
3095
3096
	function admin_banner_styles() {
@@ 3511-3519 (lines=9) @@
3508
			add_action( 'jetpack_notices', array( $this, 'admin_notices' ) );
3509
		}
3510
3511
		if ( isset( $_GET['configure'] ) && Jetpack::is_module( $_GET['configure'] ) && current_user_can( 'manage_options' ) ) {
3512
			/**
3513
			 * Fires when a module configuration page is loaded.
3514
			 * The dynamic part of the hook is the configure parameter from the URL.
3515
			 *
3516
			 * @since 1.1.0
3517
			 */
3518
			do_action( 'jetpack_module_configuration_load_' . $_GET['configure'] );
3519
		}
3520
3521
		add_filter( 'jetpack_short_module_description', 'wptexturize' );
3522
	}