X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/af50974463450c98503e763a7836a50e260461a9..53f4633144ed68c8b8fb5861f992b5489894a940:/wp-includes/class.wp-scripts.php diff --git a/wp-includes/class.wp-scripts.php b/wp-includes/class.wp-scripts.php index fbb8b220..2cca26c6 100644 --- a/wp-includes/class.wp-scripts.php +++ b/wp-includes/class.wp-scripts.php @@ -35,6 +35,9 @@ class WP_Scripts extends WP_Dependencies { add_action( 'init', array( $this, 'init' ), 0 ); } + /** + * @access public + */ public function init() { /** * Fires when the WP_Scripts instance is initialized. @@ -61,12 +64,24 @@ class WP_Scripts extends WP_Dependencies { return $this->do_items( $handles, $group ); } - // Deprecated since 3.3, see print_extra_script() + /** + * @deprecated 3.3 + * @see print_extra_script() + * + * @param string $handle + * @param bool $echo + * @return bool|string|void + */ public function print_scripts_l10n( $handle, $echo = true ) { _deprecated_function( __FUNCTION__, '3.3', 'print_extra_script()' ); return $this->print_extra_script( $handle, $echo ); } + /** + * @param string $handle + * @param bool $echo + * @return bool|string|void + */ public function print_extra_script( $handle, $echo = true ) { if ( !$output = $this->get_data( $handle, 'data' ) ) return; @@ -83,6 +98,11 @@ class WP_Scripts extends WP_Dependencies { return true; } + /** + * @param string $handle Name of the item. Should be unique. + * @param int|bool $group + * @return bool True on success, false if not set. + */ public function do_item( $handle, $group = false ) { if ( !parent::do_item($handle) ) return false; @@ -95,15 +115,25 @@ class WP_Scripts extends WP_Dependencies { if ( false === $group && in_array($handle, $this->in_footer, true) ) $this->in_footer = array_diff( $this->in_footer, (array) $handle ); - if ( null === $this->registered[$handle]->ver ) + $obj = $this->registered[$handle]; + + if ( null === $obj->ver ) { $ver = ''; - else - $ver = $this->registered[$handle]->ver ? $this->registered[$handle]->ver : $this->default_version; + } else { + $ver = $obj->ver ? $obj->ver : $this->default_version; + } if ( isset($this->args[$handle]) ) $ver = $ver ? $ver . '&' . $this->args[$handle] : $this->args[$handle]; - $src = $this->registered[$handle]->src; + $src = $obj->src; + $cond_before = $cond_after = ''; + $conditional = isset( $obj->extra['conditional'] ) ? $obj->extra['conditional'] : ''; + + if ( $conditional ) { + $cond_before = "\n"; + } if ( $this->do_concat ) { /** @@ -115,7 +145,7 @@ class WP_Scripts extends WP_Dependencies { * @param string $handle Script handle. */ $srce = apply_filters( 'script_loader_src', $src, $handle ); - if ( $this->in_default_dir($srce) ) { + if ( $this->in_default_dir( $srce ) && ! $conditional ) { $this->print_code .= $this->print_extra_script( $handle, false ); $this->concat .= "$handle,"; $this->concat_version .= "$handle$ver"; @@ -126,13 +156,24 @@ class WP_Scripts extends WP_Dependencies { } } + $has_conditional_data = $conditional && $this->get_data( $handle, 'data' ); + + if ( $has_conditional_data ) { + echo $cond_before; + } + $this->print_extra_script( $handle ); - if ( !preg_match('|^(https?:)?//|', $src) && ! ( $this->content_url && 0 === strpos($src, $this->content_url) ) ) { + + if ( $has_conditional_data ) { + echo $cond_after; + } + + if ( ! preg_match( '|^(https?:)?//|', $src ) && ! ( $this->content_url && 0 === strpos( $src, $this->content_url ) ) ) { $src = $this->base_url . $src; } - if ( !empty($ver) ) - $src = add_query_arg('ver', $ver, $src); + if ( ! empty( $ver ) ) + $src = add_query_arg( 'ver', $ver, $src ); /** This filter is documented in wp-includes/class.wp-scripts.php */ $src = esc_url( apply_filters( 'script_loader_src', $src, $handle ) ); @@ -140,9 +181,9 @@ class WP_Scripts extends WP_Dependencies { if ( ! $src ) return true; - $tag = "\n"; + $tag = "{$cond_before}\n{$cond_after}"; - /** + /** * Filter the HTML script tag of an enqueued script. * * @since 4.1.0 @@ -163,9 +204,12 @@ class WP_Scripts extends WP_Dependencies { } /** - * Localizes a script + * Localizes a script, only if the script has already been added * - * Localizes only if the script has already been added + * @param string $handle + * @param string $object_name + * @param array $l10n + * @return bool */ public function localize( $handle, $object_name, $l10n ) { if ( $handle === 'jquery' ) @@ -196,8 +240,13 @@ class WP_Scripts extends WP_Dependencies { return $this->add_data( $handle, 'data', $script ); } + /** + * @param string $handle Name of the item. Should be unique. + * @param bool $recursion Internal flag that calling function was called recursively. + * @param mixed $group Group level. + * @return bool Not already in the group or a lower group + */ public function set_group( $handle, $recursion, $group = false ) { - if ( $this->registered[$handle]->args === 1 ) $grp = 1; else @@ -209,6 +258,12 @@ class WP_Scripts extends WP_Dependencies { return parent::set_group( $handle, $recursion, $grp ); } + /** + * @param mixed $handles Item handle and argument (string) or item handles and arguments (array of strings). + * @param bool $recursion Internal flag that function is calling itself. + * @param mixed $group Group level: (int) level, (false) no groups. + * @return bool True on success, false on failure. + */ public function all_deps( $handles, $recursion = false, $group = false ) { $r = parent::all_deps( $handles, $recursion ); if ( ! $recursion ) { @@ -224,16 +279,26 @@ class WP_Scripts extends WP_Dependencies { return $r; } + /** + * @return array + */ public function do_head_items() { $this->do_items(false, 0); return $this->done; } + /** + * @return array + */ public function do_footer_items() { $this->do_items(false, 1); return $this->done; } + /** + * @param string $src + * @return bool + */ public function in_default_dir( $src ) { if ( ! $this->default_dirs ) { return true; @@ -251,6 +316,9 @@ class WP_Scripts extends WP_Dependencies { return false; } + /** + * @access public + */ public function reset() { $this->do_concat = false; $this->print_code = '';