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
|
2008-05-21 07:56:04 +02:00
|
|
|
* @see WP_Scripts::print_scripts()
|
|
|
|
*/
|
|
|
|
function wp_print_scripts( $handles = false ) {
|
|
|
|
do_action( 'wp_print_scripts' );
|
|
|
|
if ( '' === $handles ) // for wp_head
|
|
|
|
$handles = false;
|
|
|
|
|
|
|
|
global $wp_scripts;
|
|
|
|
if ( !is_a($wp_scripts, 'WP_Scripts') ) {
|
|
|
|
if ( !$handles )
|
|
|
|
return array(); // No need to instantiate if nothing's there.
|
|
|
|
else
|
|
|
|
$wp_scripts = new WP_Scripts();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $wp_scripts->do_items( $handles );
|
|
|
|
}
|
|
|
|
|
2008-10-18 22:46:30 +02:00
|
|
|
/**
|
|
|
|
* Register new JavaScript file.
|
|
|
|
*
|
|
|
|
* @since r16
|
|
|
|
* @see WP_Scripts::add() For parameter information.
|
|
|
|
*/
|
2008-05-21 07:56:04 +02:00
|
|
|
function wp_register_script( $handle, $src, $deps = array(), $ver = false ) {
|
|
|
|
global $wp_scripts;
|
|
|
|
if ( !is_a($wp_scripts, 'WP_Scripts') )
|
|
|
|
$wp_scripts = new WP_Scripts();
|
|
|
|
|
|
|
|
$wp_scripts->add( $handle, $src, $deps, $ver );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-10-18 22:46:30 +02:00
|
|
|
* Localizes a script.
|
2008-05-21 07:56:04 +02:00
|
|
|
*
|
2008-10-18 22:46:30 +02:00
|
|
|
* Localizes only if script has already been added.
|
2008-05-21 07:56:04 +02:00
|
|
|
*
|
2008-10-18 22:46:30 +02:00
|
|
|
* @since r16
|
2008-05-21 07:56:04 +02:00
|
|
|
* @see WP_Script::localize()
|
|
|
|
*/
|
|
|
|
function wp_localize_script( $handle, $object_name, $l10n ) {
|
|
|
|
global $wp_scripts;
|
|
|
|
if ( !is_a($wp_scripts, 'WP_Scripts') )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return $wp_scripts->localize( $handle, $object_name, $l10n );
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
if ( !is_a($wp_scripts, 'WP_Scripts') )
|
|
|
|
$wp_scripts = new WP_Scripts();
|
|
|
|
|
|
|
|
$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
|
2008-05-21 07:56:04 +02:00
|
|
|
* @see WP_Script::add(), WP_Script::enqueue()
|
|
|
|
*/
|
|
|
|
function wp_enqueue_script( $handle, $src = false, $deps = array(), $ver = false ) {
|
|
|
|
global $wp_scripts;
|
|
|
|
if ( !is_a($wp_scripts, 'WP_Scripts') )
|
|
|
|
$wp_scripts = new WP_Scripts();
|
|
|
|
|
|
|
|
if ( $src ) {
|
|
|
|
$_handle = explode('?', $handle);
|
|
|
|
$wp_scripts->add( $_handle[0], $src, $deps, $ver );
|
|
|
|
}
|
|
|
|
$wp_scripts->enqueue( $handle );
|
|
|
|
}
|