2008-05-21 07:56:04 +02:00
|
|
|
<?php
|
2008-09-27 12:06:18 +02:00
|
|
|
/**
|
|
|
|
* BackPress script procedural API.
|
|
|
|
*
|
|
|
|
* @package BackPress
|
|
|
|
* @since r16
|
|
|
|
*/
|
2008-05-21 07:56:04 +02:00
|
|
|
|
|
|
|
/**
|
2008-09-27 12:06:18 +02:00
|
|
|
* Prints script tags in document head.
|
2008-05-21 07:56:04 +02:00
|
|
|
*
|
2008-09-27 12:06:18 +02:00
|
|
|
* Called by admin-header.php and by wp_head hook. Since it is called by wp_head
|
|
|
|
* on every page load, the function does not instantiate the WP_Scripts object
|
|
|
|
* unless script names are explicitly passed. Does make use of already
|
|
|
|
* instantiated $wp_scripts if present. Use provided wp_print_scripts hook to
|
|
|
|
* register/enqueue new scripts.
|
2008-05-21 07:56:04 +02:00
|
|
|
*
|
2008-09-27 12:06:18 +02:00
|
|
|
* @since r16
|
2009-02-15 12:04:42 +01:00
|
|
|
* @see WP_Dependencies::print_scripts()
|
2008-05-21 07:56:04 +02:00
|
|
|
*/
|
|
|
|
function wp_print_scripts( $handles = false ) {
|
|
|
|
do_action( 'wp_print_scripts' );
|
|
|
|
if ( '' === $handles ) // for wp_head
|
|
|
|
$handles = false;
|
|
|
|
|
|
|
|
global $wp_scripts;
|
2011-08-17 23:02:43 +02:00
|
|
|
if ( ! is_a( $wp_scripts, 'WP_Scripts' ) ) {
|
|
|
|
if ( ! did_action( 'init' ) )
|
|
|
|
_doing_it_wrong( __FUNCTION__, sprintf( __( 'Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks.' ),
|
2013-02-02 03:42:09 +01:00
|
|
|
'<code>wp_enqueue_scripts</code>', '<code>admin_enqueue_scripts</code>', '<code>login_enqueue_scripts</code>' ), '3.3' );
|
2011-08-17 23:02:43 +02:00
|
|
|
|
2008-05-21 07:56:04 +02:00
|
|
|
if ( !$handles )
|
2011-07-25 02:36:06 +02:00
|
|
|
return array(); // No need to instantiate if nothing is there.
|
2008-05-21 07:56:04 +02:00
|
|
|
else
|
|
|
|
$wp_scripts = new WP_Scripts();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $wp_scripts->do_items( $handles );
|
|
|
|
}
|
|
|
|
|
2008-10-18 22:46:30 +02:00
|
|
|
/**
|
2011-07-25 02:36:06 +02:00
|
|
|
* Register new Javascript file.
|
2008-10-18 22:46:30 +02:00
|
|
|
*
|
|
|
|
* @since r16
|
2009-12-28 01:48:20 +01:00
|
|
|
* @param string $handle Script name
|
|
|
|
* @param string $src Script url
|
|
|
|
* @param array $deps (optional) Array of script names on which this script depends
|
2012-01-05 21:50:54 +01:00
|
|
|
* @param string|bool $ver (optional) Script version (used for cache busting), set to null to disable
|
2010-09-07 13:21:11 +02:00
|
|
|
* @param bool $in_footer (optional) Whether to enqueue the script before </head> or before </body>
|
2009-12-28 01:48:20 +01:00
|
|
|
* @return null
|
2008-10-18 22:46:30 +02:00
|
|
|
*/
|
2009-01-15 20:50:23 +01:00
|
|
|
function wp_register_script( $handle, $src, $deps = array(), $ver = false, $in_footer = false ) {
|
2008-05-21 07:56:04 +02:00
|
|
|
global $wp_scripts;
|
2011-08-17 23:02:43 +02:00
|
|
|
if ( ! is_a( $wp_scripts, 'WP_Scripts' ) ) {
|
|
|
|
if ( ! did_action( 'init' ) )
|
|
|
|
_doing_it_wrong( __FUNCTION__, sprintf( __( 'Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks.' ),
|
2013-02-02 03:42:09 +01:00
|
|
|
'<code>wp_enqueue_scripts</code>', '<code>admin_enqueue_scripts</code>', '<code>login_enqueue_scripts</code>' ), '3.3' );
|
2011-08-17 23:02:43 +02:00
|
|
|
$wp_scripts = new WP_Scripts();
|
|
|
|
}
|
2008-05-21 07:56:04 +02:00
|
|
|
|
|
|
|
$wp_scripts->add( $handle, $src, $deps, $ver );
|
2009-01-15 20:50:23 +01:00
|
|
|
if ( $in_footer )
|
|
|
|
$wp_scripts->add_data( $handle, 'group', 1 );
|
2008-05-21 07:56:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-11-08 19:05:59 +01:00
|
|
|
* Wrapper for $wp_scripts->localize().
|
2008-05-21 07:56:04 +02:00
|
|
|
*
|
2013-03-11 10:39:55 +01:00
|
|
|
* Used to localize a script.
|
2011-07-25 02:36:06 +02:00
|
|
|
* Works only if the script has already been added.
|
2011-11-08 19:05:59 +01:00
|
|
|
* Accepts an associative array $l10n and creates JS object:
|
|
|
|
* "$object_name" = {
|
2011-07-25 02:36:06 +02:00
|
|
|
* key: value,
|
|
|
|
* key: value,
|
|
|
|
* ...
|
|
|
|
* }
|
2011-11-08 19:05:59 +01:00
|
|
|
* See http://core.trac.wordpress.org/ticket/11520 for more information.
|
2011-10-24 21:13:23 +02:00
|
|
|
*
|
2011-07-31 11:11:24 +02:00
|
|
|
* @since r16
|
2011-11-08 19:05:59 +01:00
|
|
|
*
|
|
|
|
* @param string $handle The script handle that was registered or used in script-loader
|
|
|
|
* @param string $object_name Name for the created JS object. This is passed directly so it should be qualified JS variable /[a-zA-Z0-9_]+/
|
2011-12-01 05:51:35 +01:00
|
|
|
* @param array $l10n Associative PHP array containing the translated strings. HTML entities will be converted and the array will be JSON encoded.
|
2011-11-08 19:05:59 +01:00
|
|
|
* @return bool Whether the localization was added successfully.
|
|
|
|
*/
|
2011-12-01 05:51:35 +01:00
|
|
|
function wp_localize_script( $handle, $object_name, $l10n ) {
|
2011-11-08 19:05:59 +01:00
|
|
|
global $wp_scripts;
|
|
|
|
if ( ! is_a( $wp_scripts, 'WP_Scripts' ) ) {
|
|
|
|
if ( ! did_action( 'init' ) )
|
|
|
|
_doing_it_wrong( __FUNCTION__, sprintf( __( 'Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks.' ),
|
2013-02-02 03:42:09 +01:00
|
|
|
'<code>wp_enqueue_scripts</code>', '<code>admin_enqueue_scripts</code>', '<code>login_enqueue_scripts</code>' ), '3.3' );
|
2011-11-08 19:05:59 +01:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-12-01 05:51:35 +01:00
|
|
|
return $wp_scripts->localize( $handle, $object_name, $l10n );
|
|
|
|
}
|
2011-11-08 19:05:59 +01:00
|
|
|
|
2008-10-18 22:46:30 +02:00
|
|
|
/**
|
|
|
|
* Remove a registered script.
|
|
|
|
*
|
|
|
|
* @since r16
|
|
|
|
* @see WP_Scripts::remove() For parameter information.
|
|
|
|
*/
|
2008-05-21 07:56:04 +02:00
|
|
|
function wp_deregister_script( $handle ) {
|
|
|
|
global $wp_scripts;
|
2011-08-17 23:02:43 +02:00
|
|
|
if ( ! is_a( $wp_scripts, 'WP_Scripts' ) ) {
|
|
|
|
if ( ! did_action( 'init' ) )
|
|
|
|
_doing_it_wrong( __FUNCTION__, sprintf( __( 'Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks.' ),
|
2013-02-02 03:42:09 +01:00
|
|
|
'<code>wp_enqueue_scripts</code>', '<code>admin_enqueue_scripts</code>', '<code>login_enqueue_scripts</code>' ), '3.3' );
|
2011-08-17 23:02:43 +02:00
|
|
|
$wp_scripts = new WP_Scripts();
|
|
|
|
}
|
2008-05-21 07:56:04 +02:00
|
|
|
|
2013-02-02 04:01:20 +01:00
|
|
|
// Do not allow accidental or negligent deregistering of critical scripts in the admin. Show minimal remorse if the correct hook is used.
|
|
|
|
if ( is_admin() && 'admin_enqueue_scripts' !== current_filter() ) {
|
|
|
|
$no = array(
|
|
|
|
'jquery', 'jquery-core', 'jquery-migrate', 'jquery-ui-core', 'jquery-ui-accordion',
|
|
|
|
'jquery-ui-autocomplete', 'jquery-ui-button', 'jquery-ui-datepicker', 'jquery-ui-dialog',
|
|
|
|
'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-menu', 'jquery-ui-mouse',
|
|
|
|
'jquery-ui-position', 'jquery-ui-progressbar', 'jquery-ui-resizable', 'jquery-ui-selectable',
|
|
|
|
'jquery-ui-slider', 'jquery-ui-sortable', 'jquery-ui-spinner', 'jquery-ui-tabs',
|
|
|
|
'jquery-ui-tooltip', 'jquery-ui-widget',
|
2013-02-08 06:11:27 +01:00
|
|
|
'underscore', 'backbone',
|
2013-02-02 04:01:20 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
if ( in_array( $handle, $no ) ) {
|
2013-02-02 04:42:10 +01:00
|
|
|
$message = sprintf( __( 'Do not deregister the %1$s script in the administration area. To target the frontend theme, use the %2$s hook.' ),
|
2013-02-02 04:01:20 +01:00
|
|
|
"<code>$handle</code>", '<code>wp_enqueue_scripts</code>' );
|
|
|
|
_doing_it_wrong( __FUNCTION__, $message, '3.6' );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-21 07:56:04 +02:00
|
|
|
$wp_scripts->remove( $handle );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-10-18 22:46:30 +02:00
|
|
|
* Enqueues script.
|
2008-05-21 07:56:04 +02:00
|
|
|
*
|
|
|
|
* Registers the script if src provided (does NOT overwrite) and enqueues.
|
|
|
|
*
|
2008-10-18 22:46:30 +02:00
|
|
|
* @since r16
|
2009-12-28 01:48:20 +01:00
|
|
|
* @see wp_register_script() For parameter information.
|
|
|
|
*/
|
2009-01-15 20:50:23 +01:00
|
|
|
function wp_enqueue_script( $handle, $src = false, $deps = array(), $ver = false, $in_footer = false ) {
|
2008-05-21 07:56:04 +02:00
|
|
|
global $wp_scripts;
|
2011-08-17 23:02:43 +02:00
|
|
|
if ( ! is_a( $wp_scripts, 'WP_Scripts' ) ) {
|
|
|
|
if ( ! did_action( 'init' ) )
|
|
|
|
_doing_it_wrong( __FUNCTION__, sprintf( __( 'Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks.' ),
|
2013-02-02 03:42:09 +01:00
|
|
|
'<code>wp_enqueue_scripts</code>', '<code>admin_enqueue_scripts</code>', '<code>login_enqueue_scripts</code>' ), '3.3' );
|
2011-08-17 23:02:43 +02:00
|
|
|
$wp_scripts = new WP_Scripts();
|
|
|
|
}
|
2008-05-21 07:56:04 +02:00
|
|
|
|
|
|
|
if ( $src ) {
|
|
|
|
$_handle = explode('?', $handle);
|
|
|
|
$wp_scripts->add( $_handle[0], $src, $deps, $ver );
|
2009-01-15 20:50:23 +01:00
|
|
|
if ( $in_footer )
|
|
|
|
$wp_scripts->add_data( $_handle[0], 'group', 1 );
|
2008-05-21 07:56:04 +02:00
|
|
|
}
|
|
|
|
$wp_scripts->enqueue( $handle );
|
|
|
|
}
|
2009-02-15 12:04:42 +01:00
|
|
|
|
2010-09-09 06:42:47 +02:00
|
|
|
/**
|
|
|
|
* Remove an enqueued script.
|
|
|
|
*
|
|
|
|
* @since WP 3.1
|
|
|
|
* @see WP_Scripts::dequeue() For parameter information.
|
|
|
|
*/
|
|
|
|
function wp_dequeue_script( $handle ) {
|
|
|
|
global $wp_scripts;
|
2011-08-17 23:02:43 +02:00
|
|
|
if ( ! is_a( $wp_scripts, 'WP_Scripts' ) ) {
|
|
|
|
if ( ! did_action( 'init' ) )
|
|
|
|
_doing_it_wrong( __FUNCTION__, sprintf( __( 'Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks.' ),
|
2013-02-02 03:42:09 +01:00
|
|
|
'<code>wp_enqueue_scripts</code>', '<code>admin_enqueue_scripts</code>', '<code>login_enqueue_scripts</code>' ), '3.3' );
|
2011-08-17 23:02:43 +02:00
|
|
|
$wp_scripts = new WP_Scripts();
|
|
|
|
}
|
2010-09-09 06:42:47 +02:00
|
|
|
|
|
|
|
$wp_scripts->dequeue( $handle );
|
|
|
|
}
|
|
|
|
|
2009-02-15 12:04:42 +01:00
|
|
|
/**
|
|
|
|
* Check whether script has been added to WordPress Scripts.
|
|
|
|
*
|
2012-08-30 20:57:57 +02:00
|
|
|
* By default, checks if the script has been enqueued. You can also
|
|
|
|
* pass 'registered' to $list, to see if the script is registered,
|
|
|
|
* and you can check processing statuses with 'to_do' and 'done'.
|
2009-02-15 12:04:42 +01:00
|
|
|
*
|
|
|
|
* @since WP unknown; BP unknown
|
|
|
|
*
|
2012-08-30 20:57:57 +02:00
|
|
|
* @param string $handle Name of the script.
|
|
|
|
* @param string $list Optional. Defaults to 'enqueued'. Values are
|
|
|
|
* 'registered', 'enqueued' (or 'queue'), 'to_do', and 'done'.
|
|
|
|
* @return bool Whether script is in the list.
|
2009-02-15 12:04:42 +01:00
|
|
|
*/
|
2012-08-30 20:57:57 +02:00
|
|
|
function wp_script_is( $handle, $list = 'enqueued' ) {
|
2009-02-15 12:04:42 +01:00
|
|
|
global $wp_scripts;
|
2011-08-17 23:02:43 +02:00
|
|
|
if ( ! is_a( $wp_scripts, 'WP_Scripts' ) ) {
|
|
|
|
if ( ! did_action( 'init' ) )
|
|
|
|
_doing_it_wrong( __FUNCTION__, sprintf( __( 'Scripts and styles should not be registered or enqueued until the %1$s, %2$s, or %3$s hooks.' ),
|
2013-02-02 03:42:09 +01:00
|
|
|
'<code>wp_enqueue_scripts</code>', '<code>admin_enqueue_scripts</code>', '<code>login_enqueue_scripts</code>' ), '3.3' );
|
2011-08-17 23:02:43 +02:00
|
|
|
$wp_scripts = new WP_Scripts();
|
|
|
|
}
|
2009-02-15 12:04:42 +01:00
|
|
|
|
2012-08-30 20:57:57 +02:00
|
|
|
return (bool) $wp_scripts->query( $handle, $list );
|
2009-02-15 12:04:42 +01:00
|
|
|
}
|