2008-05-21 07:56:04 +02:00
|
|
|
<?php
|
2008-09-27 12:06:18 +02:00
|
|
|
/**
|
|
|
|
* BackPress Scripts enqueue.
|
|
|
|
*
|
|
|
|
* These classes were refactored from the WordPress WP_Scripts and WordPress
|
|
|
|
* script enqueue API.
|
|
|
|
*
|
|
|
|
* @package BackPress
|
|
|
|
* @since r16
|
|
|
|
*/
|
2008-05-21 07:56:04 +02:00
|
|
|
|
2008-09-27 12:06:18 +02:00
|
|
|
/**
|
|
|
|
* BackPress Scripts enqueue class.
|
|
|
|
*
|
|
|
|
* @package BackPress
|
|
|
|
* @uses WP_Dependencies
|
|
|
|
* @since r16
|
|
|
|
*/
|
2008-05-21 07:56:04 +02:00
|
|
|
class WP_Scripts extends WP_Dependencies {
|
2014-05-19 08:17:14 +02:00
|
|
|
public $base_url; // Full URL with trailing slash
|
|
|
|
public $content_url;
|
|
|
|
public $default_version;
|
|
|
|
public $in_footer = array();
|
|
|
|
public $concat = '';
|
|
|
|
public $concat_version = '';
|
|
|
|
public $do_concat = false;
|
|
|
|
public $print_html = '';
|
|
|
|
public $print_code = '';
|
|
|
|
public $ext_handles = '';
|
|
|
|
public $ext_version = '';
|
|
|
|
public $default_dirs;
|
|
|
|
|
|
|
|
public function __construct() {
|
2012-06-26 07:33:19 +02:00
|
|
|
$this->init();
|
|
|
|
add_action( 'init', array( $this, 'init' ), 0 );
|
2012-02-08 16:29:24 +01:00
|
|
|
}
|
|
|
|
|
2015-05-29 23:37:24 +02:00
|
|
|
/**
|
|
|
|
* @access public
|
|
|
|
*/
|
2014-05-19 08:17:14 +02:00
|
|
|
public function init() {
|
2014-03-26 06:48:14 +01:00
|
|
|
/**
|
|
|
|
* Fires when the WP_Scripts instance is initialized.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*
|
|
|
|
* @param WP_Scripts &$this WP_Scripts instance, passed by reference.
|
|
|
|
*/
|
2008-05-21 07:56:04 +02:00
|
|
|
do_action_ref_array( 'wp_default_scripts', array(&$this) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-12-06 22:24:45 +01:00
|
|
|
* Prints scripts.
|
2008-05-21 07:56:04 +02:00
|
|
|
*
|
2011-12-14 00:45:31 +01:00
|
|
|
* Prints the scripts passed to it or the print queue. Also prints all necessary dependencies.
|
2008-05-21 07:56:04 +02:00
|
|
|
*
|
2014-12-06 22:24:45 +01:00
|
|
|
* @param mixed $handles Optional. Scripts to be printed. (void) prints queue, (string) prints
|
|
|
|
* that script, (array of strings) prints those scripts. Default false.
|
|
|
|
* @param int $group Optional. If scripts were queued in groups prints this group number.
|
|
|
|
* Default false.
|
|
|
|
* @return array Scripts that have been printed.
|
2008-05-21 07:56:04 +02:00
|
|
|
*/
|
2014-05-19 08:17:14 +02:00
|
|
|
public function print_scripts( $handles = false, $group = false ) {
|
2009-01-14 15:18:51 +01:00
|
|
|
return $this->do_items( $handles, $group );
|
2008-05-21 07:56:04 +02:00
|
|
|
}
|
|
|
|
|
2015-05-24 07:05:26 +02:00
|
|
|
/**
|
|
|
|
* @deprecated 3.3
|
|
|
|
* @see print_extra_script()
|
|
|
|
*
|
|
|
|
* @param string $handle
|
|
|
|
* @param bool $echo
|
2015-05-24 07:40:25 +02:00
|
|
|
* @return bool|string|void
|
2015-05-24 07:05:26 +02:00
|
|
|
*/
|
2014-05-19 08:17:14 +02:00
|
|
|
public function print_scripts_l10n( $handle, $echo = true ) {
|
2011-11-08 19:05:59 +01:00
|
|
|
_deprecated_function( __FUNCTION__, '3.3', 'print_extra_script()' );
|
|
|
|
return $this->print_extra_script( $handle, $echo );
|
2011-07-25 02:36:06 +02:00
|
|
|
}
|
|
|
|
|
2015-05-24 07:05:26 +02:00
|
|
|
/**
|
|
|
|
* @param string $handle
|
|
|
|
* @param bool $echo
|
2015-05-24 07:40:25 +02:00
|
|
|
* @return bool|string|void
|
2015-05-24 07:05:26 +02:00
|
|
|
*/
|
2015-01-16 02:11:23 +01:00
|
|
|
public function print_extra_script( $handle, $echo = true ) {
|
|
|
|
if ( !$output = $this->get_data( $handle, 'data' ) )
|
2011-11-08 19:05:59 +01:00
|
|
|
return;
|
2011-07-25 02:36:06 +02:00
|
|
|
|
2015-01-16 02:11:23 +01:00
|
|
|
if ( !$echo )
|
2011-07-25 02:36:06 +02:00
|
|
|
return $output;
|
|
|
|
|
2011-11-08 19:05:59 +01:00
|
|
|
echo "<script type='text/javascript'>\n"; // CDATA and type='text/javascript' is not needed for HTML 5
|
|
|
|
echo "/* <![CDATA[ */\n";
|
|
|
|
echo "$output\n";
|
2011-08-03 12:19:00 +02:00
|
|
|
echo "/* ]]> */\n";
|
|
|
|
echo "</script>\n";
|
2011-07-25 02:36:06 +02:00
|
|
|
|
|
|
|
return true;
|
2008-05-21 07:56:04 +02:00
|
|
|
}
|
|
|
|
|
2015-05-24 07:05:26 +02:00
|
|
|
/**
|
|
|
|
* @param string $handle Name of the item. Should be unique.
|
|
|
|
* @param int|bool $group
|
|
|
|
* @return bool True on success, false if not set.
|
|
|
|
*/
|
2014-05-19 08:17:14 +02:00
|
|
|
public function do_item( $handle, $group = false ) {
|
2008-05-21 07:56:04 +02:00
|
|
|
if ( !parent::do_item($handle) )
|
|
|
|
return false;
|
|
|
|
|
2009-01-14 15:18:51 +01:00
|
|
|
if ( 0 === $group && $this->groups[$handle] > 0 ) {
|
|
|
|
$this->in_footer[] = $handle;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( false === $group && in_array($handle, $this->in_footer, true) )
|
|
|
|
$this->in_footer = array_diff( $this->in_footer, (array) $handle );
|
|
|
|
|
2015-01-17 02:37:22 +01:00
|
|
|
$obj = $this->registered[$handle];
|
|
|
|
|
|
|
|
if ( null === $obj->ver ) {
|
2009-12-28 01:48:20 +01:00
|
|
|
$ver = '';
|
2015-01-17 02:37:22 +01:00
|
|
|
} else {
|
|
|
|
$ver = $obj->ver ? $obj->ver : $this->default_version;
|
|
|
|
}
|
2009-12-28 01:48:20 +01:00
|
|
|
|
2008-05-21 07:56:04 +02:00
|
|
|
if ( isset($this->args[$handle]) )
|
2009-12-28 01:56:41 +01:00
|
|
|
$ver = $ver ? $ver . '&' . $this->args[$handle] : $this->args[$handle];
|
2008-05-21 07:56:04 +02:00
|
|
|
|
2015-01-17 02:37:22 +01:00
|
|
|
$src = $obj->src;
|
|
|
|
$cond_before = $cond_after = '';
|
|
|
|
$conditional = isset( $obj->extra['conditional'] ) ? $obj->extra['conditional'] : '';
|
|
|
|
|
|
|
|
if ( $conditional ) {
|
|
|
|
$cond_before = "<!--[if {$conditional}]>\n";
|
|
|
|
$cond_after = "<![endif]-->\n";
|
|
|
|
}
|
2009-01-14 15:18:51 +01:00
|
|
|
|
|
|
|
if ( $this->do_concat ) {
|
2014-03-26 06:48:14 +01:00
|
|
|
/**
|
|
|
|
* Filter the script loader source.
|
|
|
|
*
|
|
|
|
* @since 2.2.0
|
|
|
|
*
|
|
|
|
* @param string $src Script loader source path.
|
|
|
|
* @param string $handle Script handle.
|
|
|
|
*/
|
2009-01-14 15:40:08 +01:00
|
|
|
$srce = apply_filters( 'script_loader_src', $src, $handle );
|
2015-01-17 02:37:22 +01:00
|
|
|
if ( $this->in_default_dir( $srce ) && ! $conditional ) {
|
2011-11-08 19:05:59 +01:00
|
|
|
$this->print_code .= $this->print_extra_script( $handle, false );
|
2009-01-26 13:59:10 +01:00
|
|
|
$this->concat .= "$handle,";
|
|
|
|
$this->concat_version .= "$handle$ver";
|
2009-01-14 15:18:51 +01:00
|
|
|
return true;
|
2009-01-26 13:59:10 +01:00
|
|
|
} else {
|
|
|
|
$this->ext_handles .= "$handle,";
|
|
|
|
$this->ext_version .= "$handle$ver";
|
2009-01-14 15:18:51 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-17 02:37:22 +01:00
|
|
|
$has_conditional_data = $conditional && $this->get_data( $handle, 'data' );
|
|
|
|
|
|
|
|
if ( $has_conditional_data ) {
|
|
|
|
echo $cond_before;
|
|
|
|
}
|
|
|
|
|
2011-11-08 19:05:59 +01:00
|
|
|
$this->print_extra_script( $handle );
|
2015-01-17 02:37:22 +01:00
|
|
|
|
|
|
|
if ( $has_conditional_data ) {
|
|
|
|
echo $cond_after;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! preg_match( '|^(https?:)?//|', $src ) && ! ( $this->content_url && 0 === strpos( $src, $this->content_url ) ) ) {
|
2008-05-21 07:56:04 +02:00
|
|
|
$src = $this->base_url . $src;
|
|
|
|
}
|
|
|
|
|
2015-01-17 02:37:22 +01:00
|
|
|
if ( ! empty( $ver ) )
|
|
|
|
$src = add_query_arg( 'ver', $ver, $src );
|
2011-11-08 19:05:59 +01:00
|
|
|
|
2014-03-26 06:48:14 +01:00
|
|
|
/** This filter is documented in wp-includes/class.wp-scripts.php */
|
2011-11-08 19:05:59 +01:00
|
|
|
$src = esc_url( apply_filters( 'script_loader_src', $src, $handle ) );
|
2008-05-21 07:56:04 +02:00
|
|
|
|
2013-09-17 00:12:09 +02:00
|
|
|
if ( ! $src )
|
|
|
|
return true;
|
|
|
|
|
2015-01-17 02:37:22 +01:00
|
|
|
$tag = "{$cond_before}<script type='text/javascript' src='$src'></script>\n{$cond_after}";
|
2014-11-20 06:18:25 +01:00
|
|
|
|
2015-05-24 07:05:26 +02:00
|
|
|
/**
|
2014-11-20 06:18:25 +01:00
|
|
|
* Filter the HTML script tag of an enqueued script.
|
|
|
|
*
|
|
|
|
* @since 4.1.0
|
|
|
|
*
|
|
|
|
* @param string $tag The `<script>` tag for the enqueued script.
|
|
|
|
* @param string $handle The script's registered handle.
|
|
|
|
* @param string $src The script's source URL.
|
|
|
|
*/
|
|
|
|
$tag = apply_filters( 'script_loader_tag', $tag, $handle, $src );
|
|
|
|
|
|
|
|
if ( $this->do_concat ) {
|
|
|
|
$this->print_html .= $tag;
|
|
|
|
} else {
|
|
|
|
echo $tag;
|
|
|
|
}
|
2008-05-21 07:56:04 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-05-24 07:05:26 +02:00
|
|
|
* Localizes a script, only if the script has already been added
|
2008-05-21 07:56:04 +02:00
|
|
|
*
|
2015-05-24 07:05:26 +02:00
|
|
|
* @param string $handle
|
|
|
|
* @param string $object_name
|
|
|
|
* @param array $l10n
|
|
|
|
* @return bool
|
2008-05-21 07:56:04 +02:00
|
|
|
*/
|
2014-05-19 08:17:14 +02:00
|
|
|
public function localize( $handle, $object_name, $l10n ) {
|
2013-07-10 07:38:17 +02:00
|
|
|
if ( $handle === 'jquery' )
|
|
|
|
$handle = 'jquery-core';
|
|
|
|
|
2011-11-08 19:05:59 +01:00
|
|
|
if ( is_array($l10n) && isset($l10n['l10n_print_after']) ) { // back compat, preserve the code in 'l10n_print_after' if present
|
|
|
|
$after = $l10n['l10n_print_after'];
|
|
|
|
unset($l10n['l10n_print_after']);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ( (array) $l10n as $key => $value ) {
|
|
|
|
if ( !is_scalar($value) )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
$l10n[$key] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8');
|
|
|
|
}
|
|
|
|
|
2014-10-28 19:35:19 +01:00
|
|
|
$script = "var $object_name = " . wp_json_encode( $l10n ) . ';';
|
2011-11-08 19:05:59 +01:00
|
|
|
|
|
|
|
if ( !empty($after) )
|
2012-02-06 19:52:57 +01:00
|
|
|
$script .= "\n$after;";
|
2011-11-08 19:05:59 +01:00
|
|
|
|
2011-07-28 20:24:00 +02:00
|
|
|
$data = $this->get_data( $handle, 'data' );
|
|
|
|
|
2011-11-08 19:05:59 +01:00
|
|
|
if ( !empty( $data ) )
|
2012-02-06 19:52:57 +01:00
|
|
|
$script = "$data\n$script";
|
2011-07-25 02:36:06 +02:00
|
|
|
|
2011-11-08 19:05:59 +01:00
|
|
|
return $this->add_data( $handle, 'data', $script );
|
2008-05-21 07:56:04 +02:00
|
|
|
}
|
|
|
|
|
2015-05-24 07:05:26 +02:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
2014-05-19 08:17:14 +02:00
|
|
|
public function set_group( $handle, $recursion, $group = false ) {
|
2011-08-03 03:54:29 +02:00
|
|
|
if ( $this->registered[$handle]->args === 1 )
|
|
|
|
$grp = 1;
|
|
|
|
else
|
|
|
|
$grp = (int) $this->get_data( $handle, 'group' );
|
2011-07-28 20:24:00 +02:00
|
|
|
|
2009-01-14 15:18:51 +01:00
|
|
|
if ( false !== $group && $grp > $group )
|
|
|
|
$grp = $group;
|
|
|
|
|
2009-04-22 23:01:36 +02:00
|
|
|
return parent::set_group( $handle, $recursion, $grp );
|
2009-01-14 15:18:51 +01:00
|
|
|
}
|
|
|
|
|
2015-05-24 07:05:26 +02:00
|
|
|
/**
|
|
|
|
* @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.
|
|
|
|
*/
|
2014-05-19 08:17:14 +02:00
|
|
|
public function all_deps( $handles, $recursion = false, $group = false ) {
|
2008-05-21 07:56:04 +02:00
|
|
|
$r = parent::all_deps( $handles, $recursion );
|
2014-03-26 06:48:14 +01:00
|
|
|
if ( ! $recursion ) {
|
|
|
|
/**
|
|
|
|
* Filter the list of script dependencies left to print.
|
|
|
|
*
|
|
|
|
* @since 2.3.0
|
|
|
|
*
|
|
|
|
* @param array $to_do An array of script dependencies.
|
|
|
|
*/
|
2008-05-21 07:56:04 +02:00
|
|
|
$this->to_do = apply_filters( 'print_scripts_array', $this->to_do );
|
2014-03-26 06:48:14 +01:00
|
|
|
}
|
2008-05-21 07:56:04 +02:00
|
|
|
return $r;
|
|
|
|
}
|
2009-01-14 15:18:51 +01:00
|
|
|
|
2015-05-24 07:05:26 +02:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
2014-05-19 08:17:14 +02:00
|
|
|
public function do_head_items() {
|
2009-01-14 15:18:51 +01:00
|
|
|
$this->do_items(false, 0);
|
|
|
|
return $this->done;
|
|
|
|
}
|
|
|
|
|
2015-05-24 07:05:26 +02:00
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
2014-05-19 08:17:14 +02:00
|
|
|
public function do_footer_items() {
|
2011-07-21 18:32:01 +02:00
|
|
|
$this->do_items(false, 1);
|
2009-01-14 15:18:51 +01:00
|
|
|
return $this->done;
|
|
|
|
}
|
|
|
|
|
2015-05-24 07:05:26 +02:00
|
|
|
/**
|
|
|
|
* @param string $src
|
|
|
|
* @return bool
|
|
|
|
*/
|
2014-06-30 00:23:15 +02:00
|
|
|
public function in_default_dir( $src ) {
|
|
|
|
if ( ! $this->default_dirs ) {
|
2009-01-14 15:18:51 +01:00
|
|
|
return true;
|
2014-06-30 00:23:15 +02:00
|
|
|
}
|
2009-01-14 15:18:51 +01:00
|
|
|
|
2014-06-30 00:23:15 +02:00
|
|
|
if ( 0 === strpos( $src, '/' . WPINC . '/js/l10n' ) ) {
|
2010-11-10 22:53:30 +01:00
|
|
|
return false;
|
2014-06-30 00:23:15 +02:00
|
|
|
}
|
2010-11-17 19:47:34 +01:00
|
|
|
|
2009-01-14 15:18:51 +01:00
|
|
|
foreach ( (array) $this->default_dirs as $test ) {
|
2014-06-30 00:23:15 +02:00
|
|
|
if ( 0 === strpos( $src, $test ) ) {
|
2009-01-14 15:18:51 +01:00
|
|
|
return true;
|
2014-06-30 00:23:15 +02:00
|
|
|
}
|
2009-01-14 15:18:51 +01:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2009-01-26 13:59:10 +01:00
|
|
|
|
2015-05-29 23:37:24 +02:00
|
|
|
/**
|
|
|
|
* @access public
|
|
|
|
*/
|
2014-05-19 08:17:14 +02:00
|
|
|
public function reset() {
|
2009-01-26 13:59:10 +01:00
|
|
|
$this->do_concat = false;
|
|
|
|
$this->print_code = '';
|
|
|
|
$this->concat = '';
|
|
|
|
$this->concat_version = '';
|
|
|
|
$this->print_html = '';
|
|
|
|
$this->ext_version = '';
|
|
|
|
$this->ext_handles = '';
|
|
|
|
}
|
2008-05-21 07:56:04 +02:00
|
|
|
}
|