2006-05-22 19:16:05 +02:00
|
|
|
<?php
|
2008-08-30 21:51:29 +02:00
|
|
|
/**
|
|
|
|
* WordPress scripts and styles default loader.
|
|
|
|
*
|
|
|
|
* Most of the functionality that existed here was moved to
|
|
|
|
* {@link http://backpress.automattic.com/ BackPress}. WordPress themes and
|
|
|
|
* plugins will only be concerned about the filters and actions set in this
|
|
|
|
* file.
|
2009-03-18 03:43:45 +01:00
|
|
|
*
|
2009-02-23 09:47:49 +01:00
|
|
|
* Several constants are used to manage the loading, concatenating and compression of scripts and CSS:
|
2010-02-17 21:25:51 +01:00
|
|
|
* define('SCRIPT_DEBUG', true); loads the development (non-minified) versions of all scripts and CSS, and disables compression and concatenation,
|
2009-11-20 18:44:46 +01:00
|
|
|
* define('CONCATENATE_SCRIPTS', false); disables compression and concatenation of scripts and CSS,
|
2009-02-23 09:47:49 +01:00
|
|
|
* define('COMPRESS_SCRIPTS', false); disables compression of scripts,
|
|
|
|
* define('COMPRESS_CSS', false); disables compression of CSS,
|
|
|
|
* define('ENFORCE_GZIP', true); forces gzip for compression (default is deflate).
|
2009-03-18 03:43:45 +01:00
|
|
|
*
|
2009-02-23 09:47:49 +01:00
|
|
|
* The globals $concatenate_scripts, $compress_scripts and $compress_css can be set by plugins
|
|
|
|
* to temporarily override the above settings. Also a compression test is run once and the result is saved
|
|
|
|
* as option 'can_compress_scripts' (0/1). The test will run again if that option is deleted.
|
2009-03-18 03:43:45 +01:00
|
|
|
*
|
2008-08-30 21:51:29 +02:00
|
|
|
* @package WordPress
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** BackPress: WordPress Dependencies Class */
|
2008-05-21 07:56:04 +02:00
|
|
|
require( ABSPATH . WPINC . '/class.wp-dependencies.php' );
|
2008-08-30 21:51:29 +02:00
|
|
|
|
|
|
|
/** BackPress: WordPress Scripts Class */
|
2008-05-21 07:56:04 +02:00
|
|
|
require( ABSPATH . WPINC . '/class.wp-scripts.php' );
|
2008-08-30 21:51:29 +02:00
|
|
|
|
|
|
|
/** BackPress: WordPress Scripts Functions */
|
2008-05-21 07:56:04 +02:00
|
|
|
require( ABSPATH . WPINC . '/functions.wp-scripts.php' );
|
2008-08-30 21:51:29 +02:00
|
|
|
|
|
|
|
/** BackPress: WordPress Styles Class */
|
2008-05-21 07:56:04 +02:00
|
|
|
require( ABSPATH . WPINC . '/class.wp-styles.php' );
|
2008-08-30 21:51:29 +02:00
|
|
|
|
|
|
|
/** BackPress: WordPress Styles Functions */
|
2008-05-21 07:56:04 +02:00
|
|
|
require( ABSPATH . WPINC . '/functions.wp-styles.php' );
|
|
|
|
|
2008-08-30 21:51:29 +02:00
|
|
|
/**
|
2011-04-28 17:24:49 +02:00
|
|
|
* Set up WordPress scripts to load by default for Administration Screen.
|
2008-08-30 21:51:29 +02:00
|
|
|
*
|
|
|
|
* Localizes a few of the scripts.
|
2009-02-23 09:47:49 +01:00
|
|
|
* $scripts->add_data( 'script-handle', 'group', 1 ); queues the script for the footer
|
2008-08-30 21:51:29 +02:00
|
|
|
*
|
2008-08-30 23:23:43 +02:00
|
|
|
* @since 2.6.0
|
2008-08-30 21:51:29 +02:00
|
|
|
*
|
|
|
|
* @param object $scripts WP_Scripts object.
|
|
|
|
*/
|
2008-05-22 01:24:23 +02:00
|
|
|
function wp_default_scripts( &$scripts ) {
|
2009-01-14 15:18:51 +01:00
|
|
|
|
|
|
|
if ( !$guessurl = site_url() )
|
2008-06-24 19:36:21 +02:00
|
|
|
$guessurl = wp_guess_url();
|
2008-10-05 06:43:52 +02:00
|
|
|
|
2008-06-24 19:36:21 +02:00
|
|
|
$scripts->base_url = $guessurl;
|
2009-01-16 06:45:44 +01:00
|
|
|
$scripts->content_url = defined('WP_CONTENT_URL')? WP_CONTENT_URL : '';
|
2008-05-21 07:56:04 +02:00
|
|
|
$scripts->default_version = get_bloginfo( 'version' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->default_dirs = array('/wp-admin/js/', '/wp-includes/js/');
|
|
|
|
|
2009-01-02 16:08:58 +01:00
|
|
|
$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '.dev' : '';
|
2008-05-21 07:56:04 +02:00
|
|
|
|
2010-11-10 22:53:30 +01:00
|
|
|
// Always ensure that we have the convertEntities function
|
|
|
|
$scripts->add( 'l10n', "/wp-includes/js/l10n$suffix.js", false, '20101110' );
|
|
|
|
$scripts->enqueue( 'l10n' );
|
2010-11-17 19:47:34 +01:00
|
|
|
|
2010-11-10 22:53:30 +01:00
|
|
|
$scripts->add( 'utils', "/wp-admin/js/utils$suffix.js", false, '20101110' );
|
2009-01-14 15:18:51 +01:00
|
|
|
|
2011-05-29 04:04:52 +02:00
|
|
|
$scripts->add( 'common', "/wp-admin/js/common$suffix.js", array('jquery', 'hoverIntent', 'utils'), '20110528' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'common', 'group', 1 );
|
2009-01-12 14:43:17 +01:00
|
|
|
$scripts->localize( 'common', 'commonL10n', array(
|
2009-07-21 05:11:12 +02:00
|
|
|
'warnDelete' => __("You are about to permanently delete the selected items.\n 'Cancel' to stop, 'OK' to delete."),
|
2009-01-12 14:43:17 +01:00
|
|
|
'l10n_print_after' => 'try{convertEntities(commonL10n);}catch(e){};'
|
|
|
|
) );
|
2008-05-21 07:56:04 +02:00
|
|
|
|
2009-01-02 16:08:58 +01:00
|
|
|
$scripts->add( 'sack', "/wp-includes/js/tw-sack$suffix.js", false, '1.6.1' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'sack', 'group', 1 );
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-05-12 09:41:46 +02:00
|
|
|
$scripts->add( 'quicktags', "/wp-includes/js/quicktags$suffix.js", false, '20110502' );
|
2010-10-15 15:43:34 +02:00
|
|
|
$scripts->add_data( 'quicktags', 'group', 1 );
|
2008-05-21 07:56:04 +02:00
|
|
|
$scripts->localize( 'quicktags', 'quicktagsL10n', array(
|
|
|
|
'quickLinks' => __('(Quick Links)'),
|
|
|
|
'wordLookup' => __('Enter a word to look up:'),
|
2009-05-05 21:43:53 +02:00
|
|
|
'dictionaryLookup' => esc_attr(__('Dictionary lookup')),
|
|
|
|
'lookup' => esc_attr(__('lookup')),
|
|
|
|
'closeAllOpenTags' => esc_attr(__('Close all open tags')),
|
|
|
|
'closeTags' => esc_attr(__('close tags')),
|
2008-05-21 07:56:04 +02:00
|
|
|
'enterURL' => __('Enter the URL'),
|
|
|
|
'enterImageURL' => __('Enter the URL of the image'),
|
2008-12-09 03:50:28 +01:00
|
|
|
'enterImageDescription' => __('Enter a description of the image'),
|
2011-05-02 10:10:23 +02:00
|
|
|
'fullscreen' => __('fullscreen'),
|
|
|
|
'toggleFullscreen' => esc_attr( __('Toggle fullscreen mode') ),
|
2008-12-09 03:50:28 +01:00
|
|
|
'l10n_print_after' => 'try{convertEntities(quicktagsL10n);}catch(e){};'
|
2008-05-21 07:56:04 +02:00
|
|
|
) );
|
2007-06-14 04:25:30 +02:00
|
|
|
|
2009-01-02 16:08:58 +01:00
|
|
|
$scripts->add( 'colorpicker', "/wp-includes/js/colorpicker$suffix.js", array('prototype'), '3517m' );
|
2007-06-14 04:25:30 +02:00
|
|
|
|
2011-04-10 20:36:05 +02:00
|
|
|
$scripts->add( 'editor', "/wp-admin/js/editor$suffix.js", array('utils','jquery'), '20110411' );
|
2011-04-25 03:01:34 +02:00
|
|
|
$scripts->add_data( 'editor', 'group', 1 );
|
2011-05-02 10:10:23 +02:00
|
|
|
|
2011-05-30 21:22:09 +02:00
|
|
|
$scripts->add( 'wp-fullscreen', "/wp-admin/js/wp-fullscreen$suffix.js", array('jquery'), '20110530' );
|
2011-04-25 03:01:34 +02:00
|
|
|
$scripts->add_data( 'wp-fullscreen', 'group', 1 );
|
2008-03-02 21:17:30 +01:00
|
|
|
|
2009-12-27 23:30:58 +01:00
|
|
|
$scripts->add( 'prototype', '/wp-includes/js/prototype.js', false, '1.6.1');
|
2007-06-14 04:25:30 +02:00
|
|
|
|
2009-11-19 11:24:14 +01:00
|
|
|
$scripts->add( 'wp-ajax-response', "/wp-includes/js/wp-ajax-response$suffix.js", array('jquery'), '20091119' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'wp-ajax-response', 'group', 1 );
|
2008-05-21 07:56:04 +02:00
|
|
|
$scripts->localize( 'wp-ajax-response', 'wpAjax', array(
|
|
|
|
'noPerm' => __('You do not have permission to do that.'),
|
2008-12-09 03:50:28 +01:00
|
|
|
'broken' => __('An unidentified error has occurred.'),
|
|
|
|
'l10n_print_after' => 'try{convertEntities(wpAjax);}catch(e){};'
|
2008-05-21 07:56:04 +02:00
|
|
|
) );
|
2008-02-29 10:51:36 +01:00
|
|
|
|
2011-05-25 03:04:12 +02:00
|
|
|
$scripts->add( 'autosave', "/wp-includes/js/autosave$suffix.js", array('schedule', 'wp-ajax-response'), '20110524' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'autosave', 'group', 1 );
|
2007-06-14 04:25:30 +02:00
|
|
|
|
2011-05-21 16:38:56 +02:00
|
|
|
$scripts->add( 'wp-lists', "/wp-includes/js/wp-lists$suffix.js", array('wp-ajax-response'), '20110521' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'wp-lists', 'group', 1 );
|
2007-10-10 00:49:42 +02:00
|
|
|
|
2009-12-27 23:30:58 +01:00
|
|
|
$scripts->add( 'scriptaculous-root', '/wp-includes/js/scriptaculous/wp-scriptaculous.js', array('prototype'), '1.8.3');
|
|
|
|
$scripts->add( 'scriptaculous-builder', '/wp-includes/js/scriptaculous/builder.js', array('scriptaculous-root'), '1.8.3');
|
|
|
|
$scripts->add( 'scriptaculous-dragdrop', '/wp-includes/js/scriptaculous/dragdrop.js', array('scriptaculous-builder', 'scriptaculous-effects'), '1.8.3');
|
|
|
|
$scripts->add( 'scriptaculous-effects', '/wp-includes/js/scriptaculous/effects.js', array('scriptaculous-root'), '1.8.3');
|
|
|
|
$scripts->add( 'scriptaculous-slider', '/wp-includes/js/scriptaculous/slider.js', array('scriptaculous-effects'), '1.8.3');
|
|
|
|
$scripts->add( 'scriptaculous-sound', '/wp-includes/js/scriptaculous/sound.js', array( 'scriptaculous-root' ), '1.8.3' );
|
|
|
|
$scripts->add( 'scriptaculous-controls', '/wp-includes/js/scriptaculous/controls.js', array('scriptaculous-root'), '1.8.3');
|
|
|
|
$scripts->add( 'scriptaculous', '', array('scriptaculous-dragdrop', 'scriptaculous-slider', 'scriptaculous-controls'), '1.8.3');
|
2008-05-21 07:56:04 +02:00
|
|
|
|
2009-07-25 12:58:05 +02:00
|
|
|
// not used in core, replaced by Jcrop.js
|
2008-05-21 07:56:04 +02:00
|
|
|
$scripts->add( 'cropper', '/wp-includes/js/crop/cropper.js', array('scriptaculous-dragdrop'), '20070118');
|
|
|
|
|
2011-05-13 00:00:31 +02:00
|
|
|
$scripts->add( 'jquery', '/wp-includes/js/jquery/jquery.js', false, '1.6.1');
|
2009-01-14 15:18:51 +01:00
|
|
|
|
2011-05-13 07:44:42 +02:00
|
|
|
$scripts->add( 'jquery-ui-core', '/wp-includes/js/jquery/ui.core.js', array('jquery'), '1.8.12' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'jquery-ui-core', 'group', 1 );
|
|
|
|
|
2011-05-13 07:44:42 +02:00
|
|
|
$scripts->add( 'jquery-ui-position', '/wp-includes/js/jquery/ui.position.js', array('jquery-ui-core'), '1.8.12' );
|
2010-10-04 18:19:18 +02:00
|
|
|
$scripts->add_data( 'jquery-ui-position', 'group', 1 );
|
|
|
|
|
2011-05-13 07:44:42 +02:00
|
|
|
$scripts->add( 'jquery-ui-widget', '/wp-includes/js/jquery/ui.widget.js', array('jquery-ui-core'), '1.8.12' );
|
2010-10-04 18:19:18 +02:00
|
|
|
$scripts->add_data( 'jquery-ui-widget', 'group', 1 );
|
|
|
|
|
2011-05-13 07:44:42 +02:00
|
|
|
$scripts->add( 'jquery-ui-mouse', '/wp-includes/js/jquery/ui.mouse.js', array('jquery-ui-widget'), '1.8.12' );
|
2010-10-04 18:19:18 +02:00
|
|
|
$scripts->add_data( 'jquery-ui-mouse', 'group', 1 );
|
|
|
|
|
2011-05-13 07:44:42 +02:00
|
|
|
$scripts->add( 'jquery-ui-button', '/wp-includes/js/jquery/ui.button.js', array('jquery-ui-core', 'jquery-ui-widget'), '1.8.12' );
|
2010-10-04 18:19:18 +02:00
|
|
|
$scripts->add_data( 'jquery-ui-button', 'group', 1 );
|
|
|
|
|
2011-05-13 07:44:42 +02:00
|
|
|
$scripts->add( 'jquery-ui-tabs', '/wp-includes/js/jquery/ui.tabs.js', array('jquery-ui-core', 'jquery-ui-widget'), '1.8.12' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'jquery-ui-tabs', 'group', 1 );
|
|
|
|
|
2011-05-13 07:44:42 +02:00
|
|
|
$scripts->add( 'jquery-ui-sortable', '/wp-includes/js/jquery/ui.sortable.js', array('jquery-ui-core', 'jquery-ui-mouse'), '1.8.12' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'jquery-ui-sortable', 'group', 1 );
|
|
|
|
|
2011-05-13 07:44:42 +02:00
|
|
|
$scripts->add( 'jquery-ui-draggable', '/wp-includes/js/jquery/ui.draggable.js', array('jquery-ui-core', 'jquery-ui-mouse'), '1.8.12' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'jquery-ui-draggable', 'group', 1 );
|
|
|
|
|
2011-05-13 07:44:42 +02:00
|
|
|
$scripts->add( 'jquery-ui-droppable', '/wp-includes/js/jquery/ui.droppable.js', array('jquery-ui-core', 'jquery-ui-mouse', 'jquery-ui-draggable'), '1.8.12' );
|
2009-05-24 17:46:09 +02:00
|
|
|
$scripts->add_data( 'jquery-ui-droppable', 'group', 1 );
|
|
|
|
|
2011-05-13 07:44:42 +02:00
|
|
|
$scripts->add( 'jquery-ui-selectable', '/wp-includes/js/jquery/ui.selectable.js', array('jquery-ui-core', 'jquery-ui-mouse'), '1.8.12' );
|
2009-05-24 17:46:09 +02:00
|
|
|
$scripts->add_data( 'jquery-ui-selectable', 'group', 1 );
|
|
|
|
|
2011-05-13 07:44:42 +02:00
|
|
|
$scripts->add( 'jquery-ui-resizable', '/wp-includes/js/jquery/ui.resizable.js', array('jquery-ui-core', 'jquery-ui-mouse'), '1.8.12' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'jquery-ui-resizable', 'group', 1 );
|
|
|
|
|
2011-05-13 07:44:42 +02:00
|
|
|
$scripts->add( 'jquery-ui-dialog', '/wp-includes/js/jquery/ui.dialog.js', array('jquery-ui-resizable', 'jquery-ui-draggable', 'jquery-ui-button', 'jquery-ui-position'), '1.8.12' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'jquery-ui-dialog', 'group', 1 );
|
|
|
|
|
2009-07-25 12:58:05 +02:00
|
|
|
// deprecated, not used in core, most functionality is included in jQuery 1.3
|
2011-05-17 16:22:50 +02:00
|
|
|
$scripts->add( 'jquery-form', "/wp-includes/js/jquery/jquery.form$suffix.js", array('jquery'), '2.73');
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'jquery-form', 'group', 1 );
|
|
|
|
|
2009-01-02 16:08:58 +01:00
|
|
|
$scripts->add( 'jquery-color', "/wp-includes/js/jquery/jquery.color$suffix.js", array('jquery'), '2.0-4561m');
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'jquery-color', 'group', 1 );
|
|
|
|
|
2011-01-13 09:04:58 +01:00
|
|
|
$scripts->add( 'suggest', "/wp-includes/js/jquery/suggest$suffix.js", array('jquery'), '1.1-20110113');
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'suggest', 'group', 1 );
|
|
|
|
|
2009-01-02 16:08:58 +01:00
|
|
|
$scripts->add( 'schedule', '/wp-includes/js/jquery/jquery.schedule.js', array('jquery'), '20m');
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'schedule', 'group', 1 );
|
|
|
|
|
2010-08-11 23:54:51 +02:00
|
|
|
$scripts->add( 'jquery-query', "/wp-includes/js/jquery/jquery.query.js", array('jquery'), '2.1.7' );
|
|
|
|
$scripts->add_data( 'jquery-query', 'group', 1 );
|
|
|
|
|
2010-10-27 22:17:00 +02:00
|
|
|
$scripts->add( 'jquery-serialize-object', "/wp-includes/js/jquery/jquery.serialize-object.js", array('jquery'), '0.2' );
|
|
|
|
$scripts->add_data( 'jquery-serialize-object', 'group', 1 );
|
|
|
|
|
2009-01-02 16:08:58 +01:00
|
|
|
$scripts->add( 'jquery-hotkeys', "/wp-includes/js/jquery/jquery.hotkeys$suffix.js", array('jquery'), '0.0.2m' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'jquery-hotkeys', 'group', 1 );
|
|
|
|
|
2009-01-02 16:08:58 +01:00
|
|
|
$scripts->add( 'jquery-table-hotkeys', "/wp-includes/js/jquery/jquery.table-hotkeys$suffix.js", array('jquery', 'jquery-hotkeys'), '20090102' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'jquery-table-hotkeys', 'group', 1 );
|
|
|
|
|
2011-05-29 04:04:52 +02:00
|
|
|
$scripts->add( 'thickbox', "/wp-includes/js/thickbox/thickbox.js", array('jquery'), '3.1-20110528');
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'thickbox', 'group', 1 );
|
2009-11-25 12:08:39 +01:00
|
|
|
$scripts->localize( 'thickbox', 'thickboxL10n', array(
|
|
|
|
'next' => __('Next >'),
|
|
|
|
'prev' => __('< Prev'),
|
|
|
|
'image' => __('Image'),
|
|
|
|
'of' => __('of'),
|
|
|
|
'close' => __('Close'),
|
2010-01-09 02:17:45 +01:00
|
|
|
'noiframes' => __('This feature requires inline frames. You have iframes disabled or your browser does not support them.'),
|
2011-04-06 02:42:07 +02:00
|
|
|
'loadingAnimation' => includes_url('js/thickbox/loadingAnimation.gif'),
|
|
|
|
'closeImage' => includes_url('js/thickbox/tb-close.png'),
|
2009-11-25 12:08:39 +01:00
|
|
|
'l10n_print_after' => 'try{convertEntities(thickboxL10n);}catch(e){};'
|
|
|
|
) );
|
2010-01-15 23:11:12 +01:00
|
|
|
|
2011-01-13 09:04:58 +01:00
|
|
|
$scripts->add( 'jcrop', "/wp-includes/js/jcrop/jquery.Jcrop$suffix.js", array('jquery'), '0.9.8-20110113');
|
2009-04-20 20:18:39 +02:00
|
|
|
|
2009-12-23 17:44:46 +01:00
|
|
|
$scripts->add( 'swfobject', "/wp-includes/js/swfobject.js", false, '2.2');
|
2009-05-17 14:29:58 +02:00
|
|
|
|
2011-01-13 09:04:58 +01:00
|
|
|
$scripts->add( 'swfupload', '/wp-includes/js/swfupload/swfupload.js', false, '2201-20110113');
|
2011-05-30 04:23:45 +02:00
|
|
|
$scripts->add( 'swfupload-swfobject', '/wp-includes/js/swfupload/plugins/swfupload.swfobject.js', array('swfupload', 'swfobject'), '2201a');
|
2009-05-17 14:29:58 +02:00
|
|
|
$scripts->add( 'swfupload-queue', '/wp-includes/js/swfupload/plugins/swfupload.queue.js', array('swfupload'), '2201');
|
|
|
|
$scripts->add( 'swfupload-speed', '/wp-includes/js/swfupload/plugins/swfupload.speed.js', array('swfupload'), '2201');
|
|
|
|
|
2009-01-02 16:08:58 +01:00
|
|
|
if ( defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ) {
|
2009-05-17 14:29:58 +02:00
|
|
|
// queue all SWFUpload scripts that are used by default
|
|
|
|
$scripts->add( 'swfupload-all', false, array('swfupload', 'swfupload-swfobject', 'swfupload-queue'), '2201');
|
2009-01-02 16:08:58 +01:00
|
|
|
} else {
|
2011-05-30 04:23:45 +02:00
|
|
|
$scripts->add( 'swfupload-all', '/wp-includes/js/swfupload/swfupload-all.js', array(), '2201a');
|
2009-01-02 16:08:58 +01:00
|
|
|
}
|
2009-01-10 10:29:39 +01:00
|
|
|
|
2011-05-25 03:04:12 +02:00
|
|
|
$scripts->add( 'swfupload-handlers', "/wp-includes/js/swfupload/handlers$suffix.js", array('swfupload-all', 'jquery'), '2201-20110524');
|
2009-08-21 14:03:02 +02:00
|
|
|
$max_upload_size = ( (int) ( $max_up = @ini_get('upload_max_filesize') ) < (int) ( $max_post = @ini_get('post_max_size') ) ) ? $max_up : $max_post;
|
|
|
|
if ( empty($max_upload_size) )
|
|
|
|
$max_upload_size = __('not configured');
|
2009-01-10 10:29:39 +01:00
|
|
|
// these error messages came from the sample swfupload js, they might need changing.
|
|
|
|
$scripts->localize( 'swfupload-handlers', 'swfuploadL10n', array(
|
|
|
|
'queue_limit_exceeded' => __('You have attempted to queue too many files.'),
|
2010-05-16 01:57:32 +02:00
|
|
|
'file_exceeds_size_limit' => __('This file exceeds the maximum upload size for this site.'),
|
2009-01-10 10:29:39 +01:00
|
|
|
'zero_byte_file' => __('This file is empty. Please try another.'),
|
|
|
|
'invalid_filetype' => __('This file type is not allowed. Please try another.'),
|
|
|
|
'default_error' => __('An error occurred in the upload. Please try again later.'),
|
|
|
|
'missing_upload_url' => __('There was a configuration error. Please contact the server administrator.'),
|
|
|
|
'upload_limit_exceeded' => __('You may only upload 1 file.'),
|
|
|
|
'http_error' => __('HTTP error.'),
|
|
|
|
'upload_failed' => __('Upload failed.'),
|
|
|
|
'io_error' => __('IO error.'),
|
|
|
|
'security_error' => __('Security error.'),
|
2010-02-26 20:12:27 +01:00
|
|
|
'file_cancelled' => __('File canceled.'),
|
2009-01-10 10:29:39 +01:00
|
|
|
'upload_stopped' => __('Upload stopped.'),
|
|
|
|
'dismiss' => __('Dismiss'),
|
|
|
|
'crunching' => __('Crunching…'),
|
2009-10-30 08:09:55 +01:00
|
|
|
'deleted' => __('moved to the trash.'),
|
2010-11-20 12:56:59 +01:00
|
|
|
'error_uploading' => __('“%s” has failed to upload due to an error'),
|
2010-05-23 12:59:52 +02:00
|
|
|
'l10n_print_after' => 'try{convertEntities(swfuploadL10n);}catch(e){};',
|
2009-01-10 10:29:39 +01:00
|
|
|
) );
|
2009-01-14 15:18:51 +01:00
|
|
|
|
2009-01-02 16:08:58 +01:00
|
|
|
$scripts->add( 'comment-reply', "/wp-includes/js/comment-reply$suffix.js", false, '20090102');
|
2008-09-11 21:25:50 +02:00
|
|
|
|
2011-04-22 00:21:27 +02:00
|
|
|
$scripts->add( 'json2', "/wp-includes/js/json2$suffix.js", false, '2011-02-23');
|
2009-09-11 00:07:33 +02:00
|
|
|
|
2011-05-15 20:03:51 +02:00
|
|
|
$scripts->add( 'imgareaselect', "/wp-includes/js/imgareaselect/jquery.imgareaselect$suffix.js", array('jquery'), '0.9.6-20110515' );
|
2009-09-11 00:07:33 +02:00
|
|
|
$scripts->add_data( 'imgareaselect', 'group', 1 );
|
|
|
|
|
2010-10-27 08:57:10 +02:00
|
|
|
$scripts->add( 'password-strength-meter', "/wp-admin/js/password-strength-meter$suffix.js", array('jquery'), '20101027' );
|
|
|
|
$scripts->add_data( 'password-strength-meter', 'group', 1 );
|
|
|
|
$scripts->localize( 'password-strength-meter', 'pwsL10n', array(
|
|
|
|
'empty' => __('Strength indicator'),
|
|
|
|
'short' => __('Very weak'),
|
|
|
|
'bad' => __('Weak'),
|
|
|
|
/* translators: password strength */
|
|
|
|
'good' => _x('Medium', 'password strength'),
|
|
|
|
'strong' => __('Strong'),
|
|
|
|
'mismatch' => __('Mismatch'),
|
|
|
|
'l10n_print_after' => 'try{convertEntities(pwsL10n);}catch(e){};'
|
|
|
|
) );
|
|
|
|
|
2011-05-25 03:04:12 +02:00
|
|
|
$scripts->add( 'user-profile', "/wp-admin/js/user-profile$suffix.js", array( 'jquery', 'password-strength-meter' ), '20110524' );
|
2010-11-17 19:47:34 +01:00
|
|
|
$scripts->add_data( 'user-profile', 'group', 1 );
|
2010-10-29 09:25:58 +02:00
|
|
|
|
2011-02-01 02:42:09 +01:00
|
|
|
$scripts->add( 'admin-bar', "/wp-includes/js/admin-bar$suffix.js", false, '20110131' );
|
2010-11-17 19:47:34 +01:00
|
|
|
$scripts->add_data( 'admin-bar', 'group', 1 );
|
2010-11-18 08:59:05 +01:00
|
|
|
|
2011-05-29 04:04:52 +02:00
|
|
|
$scripts->add( 'wplink', "/wp-includes/js/tinymce/plugins/wplink/js/wplink$suffix.js", array( 'jquery', 'wpdialogs' ), '20110528' );
|
2011-04-23 04:12:56 +02:00
|
|
|
$scripts->add_data( 'wplink', 'group', 1 );
|
2010-11-18 07:22:13 +01:00
|
|
|
$scripts->localize( 'wplink', 'wpLinkL10n', array(
|
2011-04-23 04:12:56 +02:00
|
|
|
'title' => __('Insert/edit link'),
|
2010-11-20 20:27:12 +01:00
|
|
|
'update' => __('Update'),
|
2010-12-23 16:22:05 +01:00
|
|
|
'save' => __('Add Link'),
|
2010-12-06 17:28:06 +01:00
|
|
|
'noTitle' => __('(no title)'),
|
2010-11-18 07:22:13 +01:00
|
|
|
'noMatchesFound' => __('No matches found.'),
|
2010-11-20 12:56:59 +01:00
|
|
|
'l10n_print_after' => 'try{convertEntities(wpLinkL10n);}catch(e){};',
|
2010-11-18 07:22:13 +01:00
|
|
|
) );
|
2010-11-18 08:59:05 +01:00
|
|
|
|
2011-05-29 04:04:52 +02:00
|
|
|
$scripts->add( 'wpdialogs', "/wp-includes/js/tinymce/plugins/wpdialogs/js/wpdialog$suffix.js", array( 'jquery-ui-dialog' ), '20110528' );
|
2011-04-23 04:12:56 +02:00
|
|
|
$scripts->add_data( 'wpdialogs', 'group', 1 );
|
|
|
|
|
|
|
|
$scripts->add( 'wpdialogs-popup', "/wp-includes/js/tinymce/plugins/wpdialogs/js/popup$suffix.js", array( 'wpdialogs' ), '20110421' );
|
|
|
|
$scripts->add_data( 'wpdialogs-popup', 'group', 1 );
|
2010-11-17 19:47:34 +01:00
|
|
|
|
2008-05-21 07:56:04 +02:00
|
|
|
if ( is_admin() ) {
|
2009-01-02 16:08:58 +01:00
|
|
|
$scripts->add( 'ajaxcat', "/wp-admin/js/cat$suffix.js", array( 'wp-lists' ), '20090102' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'ajaxcat', 'group', 1 );
|
2008-05-21 07:56:04 +02:00
|
|
|
$scripts->localize( 'ajaxcat', 'catL10n', array(
|
2009-05-05 21:43:53 +02:00
|
|
|
'add' => esc_attr(__('Add')),
|
2008-12-09 03:50:28 +01:00
|
|
|
'how' => __('Separate multiple categories with commas.'),
|
|
|
|
'l10n_print_after' => 'try{convertEntities(catL10n);}catch(e){};'
|
2008-03-20 01:33:59 +01:00
|
|
|
) );
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2009-12-02 00:51:04 +01:00
|
|
|
$scripts->add( 'admin-categories', "/wp-admin/js/categories$suffix.js", array('wp-lists'), '20091201' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'admin-categories', 'group', 1 );
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-04-30 04:15:08 +02:00
|
|
|
$scripts->add( 'admin-tags', "/wp-admin/js/tags$suffix.js", array('jquery', 'wp-ajax-response'), '20110429' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'admin-tags', 'group', 1 );
|
2009-07-01 10:12:39 +02:00
|
|
|
$scripts->localize( 'admin-tags', 'tagsl10n', array(
|
|
|
|
'noPerm' => __('You do not have permission to do that.'),
|
|
|
|
'broken' => __('An unidentified error has occurred.'),
|
|
|
|
'l10n_print_after' => 'try{convertEntities(tagsl10n);}catch(e){};'
|
|
|
|
));
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-04-30 04:15:08 +02:00
|
|
|
$scripts->add( 'admin-custom-fields', "/wp-admin/js/custom-fields$suffix.js", array('wp-lists'), '20110429' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'admin-custom-fields', 'group', 1 );
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-05-28 04:30:04 +02:00
|
|
|
$scripts->add( 'admin-comments', "/wp-admin/js/edit-comments$suffix.js", array('wp-lists', 'jquery-ui-resizable', 'quicktags', 'jquery-query'), '20110527' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'admin-comments', 'group', 1 );
|
2008-05-21 07:56:04 +02:00
|
|
|
$scripts->localize( 'admin-comments', 'adminCommentsL10n', array(
|
2008-09-01 07:28:41 +02:00
|
|
|
'hotkeys_highlight_first' => isset($_GET['hotkeys_highlight_first']),
|
2011-05-07 06:56:00 +02:00
|
|
|
'hotkeys_highlight_last' => isset($_GET['hotkeys_highlight_last']),
|
|
|
|
'replyApprove' => __( 'Approve and Reply' ),
|
|
|
|
'reply' => __( 'Reply' )
|
2008-05-21 07:56:04 +02:00
|
|
|
) );
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-05-25 03:04:12 +02:00
|
|
|
$scripts->add( 'xfn', "/wp-admin/js/xfn$suffix.js", array('jquery'), '20110524' );
|
2010-04-04 05:53:14 +02:00
|
|
|
$scripts->add_data( 'xfn', 'group', 1 );
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-05-25 03:04:12 +02:00
|
|
|
$scripts->add( 'postbox', "/wp-admin/js/postbox$suffix.js", array('jquery-ui-sortable'), '20110524' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'postbox', 'group', 1 );
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-05-25 03:04:12 +02:00
|
|
|
$scripts->add( 'post', "/wp-admin/js/post$suffix.js", array('suggest', 'wp-lists', 'postbox'), '20110524' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'post', 'group', 1 );
|
2008-05-21 07:56:04 +02:00
|
|
|
$scripts->localize( 'post', 'postL10n', array(
|
|
|
|
'tagsUsed' => __('Tags used on this post:'),
|
2009-05-05 21:43:53 +02:00
|
|
|
'add' => esc_attr(__('Add')),
|
2010-11-29 17:54:06 +01:00
|
|
|
'addTag' => esc_attr(__('Add new Tag')),
|
2008-05-21 07:56:04 +02:00
|
|
|
'separate' => __('Separate tags with commas'),
|
2009-10-13 12:02:42 +02:00
|
|
|
'ok' => __('OK'),
|
2008-05-21 07:56:04 +02:00
|
|
|
'cancel' => __('Cancel'),
|
|
|
|
'edit' => __('Edit'),
|
2008-10-29 20:22:56 +01:00
|
|
|
'publishOn' => __('Publish on:'),
|
|
|
|
'publishOnFuture' => __('Schedule for:'),
|
|
|
|
'publishOnPast' => __('Published on:'),
|
2008-10-17 11:44:22 +02:00
|
|
|
'showcomm' => __('Show more comments'),
|
2008-10-29 20:22:56 +01:00
|
|
|
'endcomm' => __('No more comments found.'),
|
|
|
|
'publish' => __('Publish'),
|
|
|
|
'schedule' => __('Schedule'),
|
2010-11-09 01:52:02 +01:00
|
|
|
'update' => __('Update'),
|
2008-11-03 08:06:36 +01:00
|
|
|
'savePending' => __('Save as Pending'),
|
2008-11-12 19:36:48 +01:00
|
|
|
'saveDraft' => __('Save Draft'),
|
|
|
|
'private' => __('Private'),
|
|
|
|
'public' => __('Public'),
|
2008-11-12 20:31:39 +01:00
|
|
|
'publicSticky' => __('Public, Sticky'),
|
|
|
|
'password' => __('Password Protected'),
|
2008-11-12 19:36:48 +01:00
|
|
|
'privatelyPublished' => __('Privately Published'),
|
2008-12-09 03:50:28 +01:00
|
|
|
'published' => __('Published'),
|
|
|
|
'l10n_print_after' => 'try{convertEntities(postL10n);}catch(e){};'
|
2008-05-21 07:56:04 +02:00
|
|
|
) );
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-05-25 03:04:12 +02:00
|
|
|
$scripts->add( 'link', "/wp-admin/js/link$suffix.js", array('wp-lists', 'postbox'), '20110524' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'link', 'group', 1 );
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-04-30 04:15:08 +02:00
|
|
|
$scripts->add( 'comment', "/wp-admin/js/comment$suffix.js", array('jquery'), '20110429' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'comment', 'group', 1 );
|
2008-05-21 07:56:04 +02:00
|
|
|
$scripts->localize( 'comment', 'commentL10n', array(
|
|
|
|
'cancel' => __('Cancel'),
|
|
|
|
'edit' => __('Edit'),
|
2008-12-09 03:50:28 +01:00
|
|
|
'submittedOn' => __('Submitted on:'),
|
|
|
|
'l10n_print_after' => 'try{convertEntities(commentL10n);}catch(e){};'
|
2008-05-21 07:56:04 +02:00
|
|
|
) );
|
2009-01-29 08:00:00 +01:00
|
|
|
|
2011-04-15 06:20:12 +02:00
|
|
|
$scripts->add( 'admin-gallery', "/wp-admin/js/gallery$suffix.js", array( 'jquery-ui-sortable' ), '20110414' );
|
2009-01-02 16:08:58 +01:00
|
|
|
|
2011-04-26 00:49:22 +02:00
|
|
|
$scripts->add( 'media-upload', "/wp-admin/js/media-upload$suffix.js", array( 'thickbox' ), '20110425' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'media-upload', 'group', 1 );
|
2008-12-09 19:03:31 +01:00
|
|
|
|
2011-06-01 18:29:10 +02:00
|
|
|
$scripts->add( 'admin-widgets', "/wp-admin/js/widgets$suffix.js", array( 'jquery-ui-sortable', 'jquery-ui-draggable', 'jquery-ui-droppable' ), '20110601' );
|
2009-04-11 16:37:24 +02:00
|
|
|
$scripts->add_data( 'admin-widgets', 'group', 1 );
|
2008-05-21 07:56:04 +02:00
|
|
|
|
2011-05-16 08:17:44 +02:00
|
|
|
$scripts->add( 'word-count', "/wp-admin/js/word-count$suffix.js", array( 'jquery' ), '20110515' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'word-count', 'group', 1 );
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2011-01-18 18:32:35 +01:00
|
|
|
$scripts->add( 'theme', "/wp-admin/js/theme$suffix.js", array( 'thickbox' ), '20110118' );
|
2010-09-24 20:50:31 +02:00
|
|
|
$scripts->add_data( 'theme', 'group', 1 );
|
|
|
|
|
2010-04-07 15:52:12 +02:00
|
|
|
$scripts->add( 'theme-preview', "/wp-admin/js/theme-preview$suffix.js", array( 'thickbox', 'jquery' ), '20100407' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'theme-preview', 'group', 1 );
|
2008-10-05 06:43:52 +02:00
|
|
|
|
2011-05-25 03:04:12 +02:00
|
|
|
$scripts->add( 'inline-edit-post', "/wp-admin/js/inline-edit-post$suffix.js", array( 'jquery', 'suggest' ), '20110524' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'inline-edit-post', 'group', 1 );
|
2008-10-05 06:43:52 +02:00
|
|
|
$scripts->localize( 'inline-edit-post', 'inlineEditL10n', array(
|
2008-11-30 04:51:45 +01:00
|
|
|
'error' => __('Error while saving the changes.'),
|
|
|
|
'ntdeltitle' => __('Remove From Bulk Edit'),
|
2008-12-09 03:50:28 +01:00
|
|
|
'notitle' => __('(no title)'),
|
|
|
|
'l10n_print_after' => 'try{convertEntities(inlineEditL10n);}catch(e){};'
|
2008-09-21 21:45:45 +02:00
|
|
|
) );
|
2008-08-04 23:01:09 +02:00
|
|
|
|
2011-05-13 00:00:31 +02:00
|
|
|
$scripts->add( 'inline-edit-tax', "/wp-admin/js/inline-edit-tax$suffix.js", array( 'jquery' ), '20110512' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'inline-edit-tax', 'group', 1 );
|
2008-10-05 06:43:52 +02:00
|
|
|
$scripts->localize( 'inline-edit-tax', 'inlineEditL10n', array(
|
2008-12-09 03:50:28 +01:00
|
|
|
'error' => __('Error while saving the changes.'),
|
|
|
|
'l10n_print_after' => 'try{convertEntities(inlineEditL10n);}catch(e){};'
|
2008-10-05 06:43:52 +02:00
|
|
|
) );
|
|
|
|
|
2011-01-13 09:04:58 +01:00
|
|
|
$scripts->add( 'plugin-install', "/wp-admin/js/plugin-install$suffix.js", array( 'jquery', 'thickbox' ), '20110113' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'plugin-install', 'group', 1 );
|
2008-08-04 23:01:09 +02:00
|
|
|
$scripts->localize( 'plugin-install', 'plugininstallL10n', array(
|
2008-12-09 03:50:28 +01:00
|
|
|
'plugin_information' => __('Plugin Information:'),
|
2010-04-03 01:27:23 +02:00
|
|
|
'ays' => __('Are you sure you want to install this plugin?'),
|
2008-12-09 03:50:28 +01:00
|
|
|
'l10n_print_after' => 'try{convertEntities(plugininstallL10n);}catch(e){};'
|
2008-08-04 23:01:09 +02:00
|
|
|
) );
|
2008-08-09 07:36:14 +02:00
|
|
|
|
2008-08-28 19:42:21 +02:00
|
|
|
$scripts->add( 'farbtastic', '/wp-admin/js/farbtastic.js', array('jquery'), '1.2' );
|
2008-10-05 06:43:52 +02:00
|
|
|
|
2011-05-24 18:49:01 +02:00
|
|
|
$scripts->add( 'dashboard', "/wp-admin/js/dashboard$suffix.js", array( 'jquery', 'admin-comments', 'postbox' ), '20110524' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'dashboard', 'group', 1 );
|
2008-10-14 07:10:16 +02:00
|
|
|
|
2009-01-02 16:08:58 +01:00
|
|
|
$scripts->add( 'hoverIntent', "/wp-includes/js/hoverIntent$suffix.js", array('jquery'), '20090102' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'hoverIntent', 'group', 1 );
|
|
|
|
|
2009-12-23 10:15:13 +01:00
|
|
|
$scripts->add( 'list-revisions', "/wp-includes/js/wp-list-revisions$suffix.js", null, '20091223' );
|
|
|
|
|
2010-10-22 21:23:00 +02:00
|
|
|
$scripts->add( 'media', "/wp-admin/js/media$suffix.js", array( 'jquery-ui-draggable' ), '20101022' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$scripts->add_data( 'media', 'group', 1 );
|
2009-03-18 03:43:45 +01:00
|
|
|
|
2011-05-25 03:04:12 +02:00
|
|
|
$scripts->add( 'image-edit', "/wp-admin/js/image-edit$suffix.js", array('jquery', 'json2', 'imgareaselect'), '20110524' );
|
2009-09-11 00:07:33 +02:00
|
|
|
$scripts->add_data( 'image-edit', 'group', 1 );
|
2009-10-08 00:18:09 +02:00
|
|
|
|
2010-05-19 00:08:49 +02:00
|
|
|
$scripts->add( 'set-post-thumbnail', "/wp-admin/js/set-post-thumbnail$suffix.js", array( 'jquery' ), '20100518' );
|
2009-10-08 00:18:09 +02:00
|
|
|
$scripts->add_data( 'set-post-thumbnail', 'group', 1 );
|
|
|
|
$scripts->localize( 'set-post-thumbnail', 'setPostThumbnailL10n', array(
|
2010-04-02 08:12:49 +02:00
|
|
|
'setThumbnail' => __( 'Use as featured image' ),
|
2009-10-08 00:18:09 +02:00
|
|
|
'saving' => __( 'Saving...' ),
|
2009-12-10 08:37:41 +01:00
|
|
|
'error' => __( 'Could not set that as the thumbnail image. Try a different attachment.' ),
|
2010-11-20 12:56:59 +01:00
|
|
|
'done' => __( 'Done' ),
|
|
|
|
'l10n_print_after' => 'try{convertEntities(setPostThumbnailL10n);}catch(e){};'
|
2009-10-08 00:18:09 +02:00
|
|
|
) );
|
|
|
|
|
2010-06-11 07:19:36 +02:00
|
|
|
// Navigation Menus
|
2011-05-25 03:04:12 +02:00
|
|
|
$scripts->add( 'nav-menu', "/wp-admin/js/nav-menu$suffix.js", array('jquery-ui-sortable'), '20110524' );
|
2010-03-17 17:13:16 +01:00
|
|
|
$scripts->localize( 'nav-menu', 'navMenuL10n', array(
|
2010-04-28 22:44:08 +02:00
|
|
|
'noResultsFound' => _x('No results found.', 'search results'),
|
2010-04-27 03:05:58 +02:00
|
|
|
'warnDeleteMenu' => __( "You are about to permanently delete this menu. \n 'Cancel' to stop, 'OK' to delete." ),
|
2010-05-19 11:56:02 +02:00
|
|
|
'saveAlert' => __('The changes you made will be lost if you navigate away from this page.'),
|
2010-11-20 12:56:59 +01:00
|
|
|
'l10n_print_after' => 'try{convertEntities(navMenuL10n);}catch(e){};'
|
2010-02-24 19:52:54 +01:00
|
|
|
) );
|
2010-03-21 07:06:18 +01:00
|
|
|
|
2011-05-12 05:33:27 +02:00
|
|
|
$scripts->add( 'custom-background', "/wp-admin/js/custom-background$suffix.js", array('farbtastic'), '20110511' );
|
2010-03-21 07:06:18 +01:00
|
|
|
$scripts->add_data( 'custom-background', 'group', 1 );
|
2006-05-22 19:16:05 +02:00
|
|
|
}
|
|
|
|
}
|
2007-10-09 23:04:26 +02:00
|
|
|
|
2008-08-30 21:51:29 +02:00
|
|
|
/**
|
|
|
|
* Assign default styles to $styles object.
|
|
|
|
*
|
|
|
|
* Nothing is returned, because the $styles parameter is passed by reference.
|
|
|
|
* Meaning that whatever object is passed will be updated without having to
|
|
|
|
* reassign the variable that was passed back to the same value. This saves
|
|
|
|
* memory.
|
|
|
|
*
|
|
|
|
* Adding default styles is not the only task, it also assigns the base_url
|
|
|
|
* property, the default version, and text direction for the object.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
*
|
|
|
|
* @param object $styles
|
|
|
|
*/
|
2008-05-22 01:24:23 +02:00
|
|
|
function wp_default_styles( &$styles ) {
|
2008-08-30 21:51:29 +02:00
|
|
|
// This checks to see if site_url() returns something and if it does not
|
|
|
|
// then it assigns $guess_url to wp_guess_url(). Strange format, but it works.
|
|
|
|
if ( ! $guessurl = site_url() )
|
2008-06-24 19:36:21 +02:00
|
|
|
$guessurl = wp_guess_url();
|
2009-01-14 15:18:51 +01:00
|
|
|
|
2008-06-24 19:36:21 +02:00
|
|
|
$styles->base_url = $guessurl;
|
2009-01-16 06:45:44 +01:00
|
|
|
$styles->content_url = defined('WP_CONTENT_URL')? WP_CONTENT_URL : '';
|
2008-05-22 01:24:23 +02:00
|
|
|
$styles->default_version = get_bloginfo( 'version' );
|
2010-05-03 07:49:19 +02:00
|
|
|
$styles->text_direction = function_exists( 'is_rtl' ) && is_rtl() ? 'rtl' : 'ltr';
|
2009-01-14 15:18:51 +01:00
|
|
|
$styles->default_dirs = array('/wp-admin/');
|
2008-05-22 01:24:23 +02:00
|
|
|
|
2010-02-17 21:25:51 +01:00
|
|
|
$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '.dev' : '';
|
2009-08-20 23:12:33 +02:00
|
|
|
|
2010-12-26 07:31:46 +01:00
|
|
|
$rtl_styles = array( 'wp-admin', 'global', 'colors', 'colors-fresh', 'colors-classic', 'dashboard', 'ie', 'install', 'login', 'media', 'theme-editor', 'upload', 'widgets', 'press-this', 'plugin-install', 'nav-menu', 'farbtastic', 'admin-bar', 'wplink', 'theme-install' );
|
2010-02-24 00:46:07 +01:00
|
|
|
// Any rtl stylesheets that don't have a .dev version for ltr
|
|
|
|
$no_suffix = array( 'farbtastic' );
|
2008-05-22 01:24:23 +02:00
|
|
|
|
2011-05-19 17:34:37 +02:00
|
|
|
$styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css", array(), '20110519' );
|
2008-05-22 01:24:23 +02:00
|
|
|
|
2011-05-19 04:23:02 +02:00
|
|
|
$styles->add( 'ie', "/wp-admin/css/ie$suffix.css", array(), '20110518' );
|
2008-12-27 13:18:38 +01:00
|
|
|
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
|
2008-05-22 01:24:23 +02:00
|
|
|
|
2010-04-24 19:22:34 +02:00
|
|
|
// all colors stylesheets need to have the same query strings (cache manifest compat)
|
2011-05-28 21:29:32 +02:00
|
|
|
$colors_version = '20110528';
|
2010-04-24 19:22:34 +02:00
|
|
|
|
2009-05-14 15:34:26 +02:00
|
|
|
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
|
2009-05-20 23:52:37 +02:00
|
|
|
$styles->add( 'colors', true, array(), $colors_version );
|
2009-09-14 16:03:32 +02:00
|
|
|
|
2009-06-04 10:21:17 +02:00
|
|
|
// do not refer to these directly, the right one is queued by the above "meta" colors handle
|
2010-04-03 13:37:24 +02:00
|
|
|
$styles->add( 'colors-fresh', "/wp-admin/css/colors-fresh$suffix.css", array(), $colors_version );
|
|
|
|
$styles->add( 'colors-classic', "/wp-admin/css/colors-classic$suffix.css", array(), $colors_version );
|
2008-05-22 01:24:23 +02:00
|
|
|
|
2011-06-01 15:52:49 +02:00
|
|
|
$styles->add( 'ms', "/wp-admin/css/ms$suffix.css", array(), '20110601' );
|
2011-05-12 03:32:36 +02:00
|
|
|
$styles->add( 'global', "/wp-admin/css/global$suffix.css", array(), '20110511g' );
|
2011-05-19 18:12:13 +02:00
|
|
|
$styles->add( 'media', "/wp-admin/css/media$suffix.css", array(), '20110519' );
|
2011-06-01 18:29:10 +02:00
|
|
|
$styles->add( 'widgets', "/wp-admin/css/widgets$suffix.css", array(), '20110601' );
|
2011-05-12 05:33:27 +02:00
|
|
|
$styles->add( 'dashboard', "/wp-admin/css/dashboard$suffix.css", array(), '20110511c' );
|
2011-05-06 21:00:53 +02:00
|
|
|
$styles->add( 'install', "/wp-admin/css/install$suffix.css", array(), '20110506' ); // Readme as well
|
|
|
|
$styles->add( 'theme-editor', "/wp-admin/css/theme-editor$suffix.css", array(), '20110506' );
|
|
|
|
$styles->add( 'press-this', "/wp-admin/css/press-this$suffix.css", array(), '20110506' );
|
2009-05-16 04:50:23 +02:00
|
|
|
$styles->add( 'thickbox', '/wp-includes/js/thickbox/thickbox.css', array(), '20090514' );
|
2011-01-22 04:25:29 +01:00
|
|
|
$styles->add( 'login', "/wp-admin/css/login$suffix.css", array(), '20110121' );
|
2010-12-30 17:04:07 +01:00
|
|
|
$styles->add( 'plugin-install', "/wp-admin/css/plugin-install$suffix.css", array(), '20101230' );
|
2011-05-06 21:00:53 +02:00
|
|
|
$styles->add( 'theme-install', "/wp-admin/css/theme-install$suffix.css", array(), '20110506' );
|
2010-11-11 17:34:22 +01:00
|
|
|
$styles->add( 'farbtastic', '/wp-admin/css/farbtastic.css', array(), '1.3u' );
|
2009-04-20 21:34:27 +02:00
|
|
|
$styles->add( 'jcrop', '/wp-includes/js/jcrop/jquery.Jcrop.css', array(), '0.9.8' );
|
2009-09-11 00:07:33 +02:00
|
|
|
$styles->add( 'imgareaselect', '/wp-includes/js/imgareaselect/imgareaselect.css', array(), '0.9.1' );
|
2011-05-14 21:57:24 +02:00
|
|
|
$styles->add( 'nav-menu', "/wp-admin/css/nav-menu$suffix.css", array(), '20110514' );
|
2011-06-01 18:59:25 +02:00
|
|
|
$styles->add( 'admin-bar', "/wp-includes/css/admin-bar$suffix.css", array(), '20110601' );
|
2010-12-24 21:40:08 +01:00
|
|
|
$styles->add( 'wp-jquery-ui-dialog', "/wp-includes/css/jquery-ui-dialog$suffix.css", array(), '20101224' );
|
2010-12-24 18:52:45 +01:00
|
|
|
$styles->add( 'wplink', "/wp-includes/js/tinymce/plugins/wplink/css/wplink$suffix.css", array(), '20101224' );
|
2010-02-21 01:03:42 +01:00
|
|
|
|
2010-02-24 00:46:07 +01:00
|
|
|
foreach ( $rtl_styles as $rtl_style ) {
|
2008-05-22 01:24:23 +02:00
|
|
|
$styles->add_data( $rtl_style, 'rtl', true );
|
2010-02-24 00:46:07 +01:00
|
|
|
if ( $suffix && ! in_array( $rtl_style, $no_suffix ) )
|
|
|
|
$styles->add_data( $rtl_style, 'suffix', $suffix );
|
|
|
|
}
|
2008-05-22 01:24:23 +02:00
|
|
|
}
|
|
|
|
|
2008-08-30 21:51:29 +02:00
|
|
|
/**
|
|
|
|
* Reorder JavaScript scripts array to place prototype before jQuery.
|
|
|
|
*
|
|
|
|
* @since 2.3.1
|
|
|
|
*
|
|
|
|
* @param array $js_array JavaScript scripst array
|
|
|
|
* @return array Reordered array, if needed.
|
|
|
|
*/
|
2007-10-09 23:04:26 +02:00
|
|
|
function wp_prototype_before_jquery( $js_array ) {
|
2009-01-14 15:18:51 +01:00
|
|
|
if ( false === $jquery = array_search( 'jquery', $js_array, true ) )
|
2007-10-09 23:04:26 +02:00
|
|
|
return $js_array;
|
|
|
|
|
2009-01-14 15:18:51 +01:00
|
|
|
if ( false === $prototype = array_search( 'prototype', $js_array, true ) )
|
2007-10-09 23:04:26 +02:00
|
|
|
return $js_array;
|
|
|
|
|
|
|
|
if ( $prototype < $jquery )
|
|
|
|
return $js_array;
|
|
|
|
|
|
|
|
unset($js_array[$prototype]);
|
|
|
|
|
|
|
|
array_splice( $js_array, $jquery, 0, 'prototype' );
|
|
|
|
|
|
|
|
return $js_array;
|
|
|
|
}
|
|
|
|
|
2008-08-30 21:51:29 +02:00
|
|
|
/**
|
2010-03-21 07:06:18 +01:00
|
|
|
* Load localized data on print rather than initialization.
|
2008-08-30 21:51:29 +02:00
|
|
|
*
|
|
|
|
* These localizations require information that may not be loaded even by init.
|
|
|
|
*
|
|
|
|
* @since 2.5.0
|
|
|
|
*/
|
2008-03-02 21:17:30 +01:00
|
|
|
function wp_just_in_time_script_localization() {
|
2008-10-15 17:56:14 +02:00
|
|
|
|
2008-03-06 07:07:53 +01:00
|
|
|
wp_localize_script( 'autosave', 'autosaveL10n', array(
|
|
|
|
'autosaveInterval' => AUTOSAVE_INTERVAL,
|
2008-12-09 03:50:28 +01:00
|
|
|
'savingText' => __('Saving Draft…'),
|
2009-05-23 00:08:17 +02:00
|
|
|
'saveAlert' => __('The changes you made will be lost if you navigate away from this page.'),
|
2008-12-09 03:50:28 +01:00
|
|
|
'l10n_print_after' => 'try{convertEntities(autosaveL10n);}catch(e){};'
|
2008-03-06 07:07:53 +01:00
|
|
|
) );
|
2010-03-21 07:06:18 +01:00
|
|
|
|
2008-02-22 05:02:09 +01:00
|
|
|
}
|
|
|
|
|
2008-08-30 21:51:29 +02:00
|
|
|
/**
|
2011-04-28 17:24:49 +02:00
|
|
|
* Administration Screen CSS for changing the styles.
|
2008-08-30 21:51:29 +02:00
|
|
|
*
|
|
|
|
* If installing the 'wp-admin/' directory will be replaced with './'.
|
|
|
|
*
|
2011-04-28 17:24:49 +02:00
|
|
|
* The $_wp_admin_css_colors global manages the Administration Screens CSS
|
2008-08-30 21:51:29 +02:00
|
|
|
* stylesheet that is loaded. The option that is set is 'admin_color' and is the
|
|
|
|
* color and key for the array. The value for the color key is an object with
|
|
|
|
* a 'url' parameter that has the URL path to the CSS file.
|
|
|
|
*
|
|
|
|
* The query from $src parameter will be appended to the URL that is given from
|
|
|
|
* the $_wp_admin_css_colors array value URL.
|
|
|
|
*
|
|
|
|
* @since 2.6.0
|
|
|
|
* @uses $_wp_admin_css_colors
|
|
|
|
*
|
|
|
|
* @param string $src Source URL.
|
|
|
|
* @param string $handle Either 'colors' or 'colors-rtl'.
|
2011-04-28 17:24:49 +02:00
|
|
|
* @return string URL path to CSS stylesheet for Administration Screens.
|
2008-08-30 21:51:29 +02:00
|
|
|
*/
|
2008-05-22 01:24:23 +02:00
|
|
|
function wp_style_loader_src( $src, $handle ) {
|
|
|
|
if ( defined('WP_INSTALLING') )
|
|
|
|
return preg_replace( '#^wp-admin/#', './', $src );
|
|
|
|
|
|
|
|
if ( 'colors' == $handle || 'colors-rtl' == $handle ) {
|
|
|
|
global $_wp_admin_css_colors;
|
|
|
|
$color = get_user_option('admin_color');
|
2009-08-25 07:14:49 +02:00
|
|
|
|
2008-05-22 01:24:23 +02:00
|
|
|
if ( empty($color) || !isset($_wp_admin_css_colors[$color]) )
|
|
|
|
$color = 'fresh';
|
2009-08-25 07:14:49 +02:00
|
|
|
|
2008-05-22 01:24:23 +02:00
|
|
|
$color = $_wp_admin_css_colors[$color];
|
|
|
|
$parsed = parse_url( $src );
|
|
|
|
$url = $color->url;
|
2009-08-25 07:14:49 +02:00
|
|
|
|
2010-02-17 21:25:51 +01:00
|
|
|
if ( defined('SCRIPT_DEBUG') && SCRIPT_DEBUG )
|
2009-08-25 07:14:49 +02:00
|
|
|
$url = preg_replace('/.css$|.css(?=\?)/', '.dev.css', $url);
|
|
|
|
|
2008-05-22 01:24:23 +02:00
|
|
|
if ( isset($parsed['query']) && $parsed['query'] ) {
|
|
|
|
wp_parse_str( $parsed['query'], $qv );
|
|
|
|
$url = add_query_arg( $qv, $url );
|
|
|
|
}
|
2009-08-25 07:14:49 +02:00
|
|
|
|
2008-05-22 01:24:23 +02:00
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $src;
|
|
|
|
}
|
|
|
|
|
2009-01-14 15:18:51 +01:00
|
|
|
/**
|
2009-01-26 13:59:10 +01:00
|
|
|
* Prints the script queue in the HTML head on admin pages.
|
2009-01-14 15:18:51 +01:00
|
|
|
*
|
|
|
|
* Postpones the scripts that were queued for the footer.
|
2009-01-26 13:59:10 +01:00
|
|
|
* print_footer_scripts() is called in the footer to print these scripts.
|
2009-01-14 15:18:51 +01:00
|
|
|
*
|
2009-01-26 13:59:10 +01:00
|
|
|
* @since 2.8
|
2009-01-14 15:18:51 +01:00
|
|
|
* @see wp_print_scripts()
|
|
|
|
*/
|
2009-01-26 13:59:10 +01:00
|
|
|
function print_head_scripts() {
|
2009-02-23 09:47:49 +01:00
|
|
|
global $wp_scripts, $concatenate_scripts;
|
|
|
|
|
2009-01-26 13:59:10 +01:00
|
|
|
if ( ! did_action('wp_print_scripts') )
|
|
|
|
do_action('wp_print_scripts');
|
|
|
|
|
2009-01-14 15:18:51 +01:00
|
|
|
if ( !is_a($wp_scripts, 'WP_Scripts') )
|
|
|
|
$wp_scripts = new WP_Scripts();
|
|
|
|
|
2009-01-26 13:59:10 +01:00
|
|
|
script_concat_settings();
|
2010-11-20 13:01:15 +01:00
|
|
|
$wp_scripts->do_items( 'l10n' );
|
2009-01-14 15:18:51 +01:00
|
|
|
$wp_scripts->do_concat = $concatenate_scripts;
|
|
|
|
$wp_scripts->do_head_items();
|
|
|
|
|
2009-01-15 20:50:23 +01:00
|
|
|
if ( apply_filters('print_head_scripts', true) )
|
2009-02-23 09:47:49 +01:00
|
|
|
_print_scripts();
|
2009-01-14 15:18:51 +01:00
|
|
|
|
2009-01-26 13:59:10 +01:00
|
|
|
$wp_scripts->reset();
|
2009-01-14 15:18:51 +01:00
|
|
|
return $wp_scripts->done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-01-26 13:59:10 +01:00
|
|
|
* Prints the scripts that were queued for the footer on admin pages.
|
2009-01-14 15:18:51 +01:00
|
|
|
*
|
2009-01-26 13:59:10 +01:00
|
|
|
* @since 2.8
|
2009-01-14 15:18:51 +01:00
|
|
|
*/
|
2009-01-26 13:59:10 +01:00
|
|
|
function print_footer_scripts() {
|
2009-01-14 15:18:51 +01:00
|
|
|
global $wp_scripts, $concatenate_scripts;
|
|
|
|
|
2009-05-25 13:14:39 +02:00
|
|
|
if ( ! did_action('wp_print_footer_scripts') )
|
|
|
|
do_action('wp_print_footer_scripts');
|
|
|
|
|
2009-01-14 15:18:51 +01:00
|
|
|
if ( !is_a($wp_scripts, 'WP_Scripts') )
|
|
|
|
return array(); // No need to run if not instantiated.
|
|
|
|
|
2009-01-26 13:59:10 +01:00
|
|
|
script_concat_settings();
|
2009-01-14 15:18:51 +01:00
|
|
|
$wp_scripts->do_concat = $concatenate_scripts;
|
|
|
|
$wp_scripts->do_footer_items();
|
|
|
|
|
2009-01-15 20:50:23 +01:00
|
|
|
if ( apply_filters('print_footer_scripts', true) )
|
2009-02-23 09:47:49 +01:00
|
|
|
_print_scripts();
|
2009-01-14 15:18:51 +01:00
|
|
|
|
2009-01-26 13:59:10 +01:00
|
|
|
$wp_scripts->reset();
|
2009-01-14 15:18:51 +01:00
|
|
|
return $wp_scripts->done;
|
|
|
|
}
|
|
|
|
|
2009-02-23 09:47:49 +01:00
|
|
|
function _print_scripts() {
|
2009-01-14 15:18:51 +01:00
|
|
|
global $wp_scripts, $compress_scripts;
|
|
|
|
|
|
|
|
$zip = $compress_scripts ? 1 : 0;
|
2009-01-26 13:59:10 +01:00
|
|
|
if ( $zip && defined('ENFORCE_GZIP') && ENFORCE_GZIP )
|
|
|
|
$zip = 'gzip';
|
2009-01-14 15:18:51 +01:00
|
|
|
|
|
|
|
if ( !empty($wp_scripts->concat) ) {
|
|
|
|
|
|
|
|
if ( !empty($wp_scripts->print_code) ) {
|
|
|
|
echo "<script type='text/javascript'>\n";
|
|
|
|
echo "/* <![CDATA[ */\n";
|
|
|
|
echo $wp_scripts->print_code;
|
|
|
|
echo "/* ]]> */\n";
|
|
|
|
echo "</script>\n";
|
|
|
|
}
|
|
|
|
|
2009-01-26 13:59:10 +01:00
|
|
|
$ver = md5("$wp_scripts->concat_version");
|
|
|
|
$src = $wp_scripts->base_url . "/wp-admin/load-scripts.php?c={$zip}&load=" . trim($wp_scripts->concat, ', ') . "&ver=$ver";
|
2009-05-05 21:43:53 +02:00
|
|
|
echo "<script type='text/javascript' src='" . esc_attr($src) . "'></script>\n";
|
2009-01-14 15:18:51 +01:00
|
|
|
}
|
|
|
|
|
2009-01-15 20:50:23 +01:00
|
|
|
if ( !empty($wp_scripts->print_html) )
|
2009-01-14 15:18:51 +01:00
|
|
|
echo $wp_scripts->print_html;
|
2009-01-26 13:59:10 +01:00
|
|
|
}
|
2009-01-15 20:50:23 +01:00
|
|
|
|
2009-01-26 13:59:10 +01:00
|
|
|
/**
|
|
|
|
* Prints the script queue in the HTML head on the front end.
|
|
|
|
*
|
|
|
|
* Postpones the scripts that were queued for the footer.
|
|
|
|
* wp_print_footer_scripts() is called in the footer to print these scripts.
|
|
|
|
*
|
|
|
|
* @since 2.8
|
|
|
|
*/
|
|
|
|
function wp_print_head_scripts() {
|
|
|
|
if ( ! did_action('wp_print_scripts') )
|
|
|
|
do_action('wp_print_scripts');
|
|
|
|
|
|
|
|
global $wp_scripts;
|
2009-02-01 10:45:24 +01:00
|
|
|
|
2009-01-26 13:59:10 +01:00
|
|
|
if ( !is_a($wp_scripts, 'WP_Scripts') )
|
|
|
|
return array(); // no need to run if nothing is queued
|
2009-02-01 10:45:24 +01:00
|
|
|
|
2009-01-26 13:59:10 +01:00
|
|
|
return print_head_scripts();
|
2009-01-14 15:18:51 +01:00
|
|
|
}
|
|
|
|
|
2009-01-26 13:59:10 +01:00
|
|
|
/**
|
|
|
|
* Prints the scripts that were queued for the footer on the front end.
|
|
|
|
*
|
|
|
|
* @since 2.8
|
|
|
|
*/
|
|
|
|
function wp_print_footer_scripts() {
|
|
|
|
return print_footer_scripts();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Wrapper for do_action('wp_enqueue_scripts')
|
2009-02-01 10:45:24 +01:00
|
|
|
*
|
2009-01-26 13:59:10 +01:00
|
|
|
* Allows plugins to queue scripts for the front end using wp_enqueue_script().
|
|
|
|
* Runs first in wp_head() where all is_home(), is_page(), etc. functions are available.
|
|
|
|
*
|
|
|
|
* @since 2.8
|
|
|
|
*/
|
|
|
|
function wp_enqueue_scripts() {
|
|
|
|
do_action('wp_enqueue_scripts');
|
|
|
|
}
|
|
|
|
|
|
|
|
function print_admin_styles() {
|
2009-01-17 15:08:15 +01:00
|
|
|
global $wp_styles, $concatenate_scripts, $compress_css;
|
2009-01-14 15:18:51 +01:00
|
|
|
|
|
|
|
if ( !is_a($wp_styles, 'WP_Styles') )
|
|
|
|
$wp_styles = new WP_Styles();
|
|
|
|
|
2009-01-26 13:59:10 +01:00
|
|
|
script_concat_settings();
|
2009-01-14 15:18:51 +01:00
|
|
|
$wp_styles->do_concat = $concatenate_scripts;
|
2009-01-17 15:08:15 +01:00
|
|
|
$zip = $compress_css ? 1 : 0;
|
2009-01-26 13:59:10 +01:00
|
|
|
if ( $zip && defined('ENFORCE_GZIP') && ENFORCE_GZIP )
|
|
|
|
$zip = 'gzip';
|
2009-01-14 15:18:51 +01:00
|
|
|
|
|
|
|
$wp_styles->do_items(false);
|
|
|
|
|
2009-01-15 20:50:23 +01:00
|
|
|
if ( apply_filters('print_admin_styles', true) ) {
|
|
|
|
if ( !empty($wp_styles->concat) ) {
|
2009-01-26 13:59:10 +01:00
|
|
|
$dir = $wp_styles->text_direction;
|
|
|
|
$ver = md5("$wp_styles->concat_version{$dir}");
|
|
|
|
$href = $wp_styles->base_url . "/wp-admin/load-styles.php?c={$zip}&dir={$dir}&load=" . trim($wp_styles->concat, ', ') . "&ver=$ver";
|
2009-05-05 21:43:53 +02:00
|
|
|
echo "<link rel='stylesheet' href='" . esc_attr($href) . "' type='text/css' media='all' />\n";
|
2009-01-15 20:50:23 +01:00
|
|
|
}
|
2009-01-14 15:18:51 +01:00
|
|
|
|
2009-01-15 20:50:23 +01:00
|
|
|
if ( !empty($wp_styles->print_html) )
|
|
|
|
echo $wp_styles->print_html;
|
2009-01-14 15:18:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$wp_styles->do_concat = false;
|
2009-01-15 20:50:23 +01:00
|
|
|
$wp_styles->concat = $wp_styles->concat_version = $wp_styles->print_html = '';
|
2009-01-14 15:18:51 +01:00
|
|
|
return $wp_styles->done;
|
|
|
|
}
|
|
|
|
|
|
|
|
function script_concat_settings() {
|
2009-01-17 15:08:15 +01:00
|
|
|
global $concatenate_scripts, $compress_scripts, $compress_css;
|
2009-01-14 15:18:51 +01:00
|
|
|
|
2009-02-01 10:45:24 +01:00
|
|
|
$compressed_output = ( ini_get('zlib.output_compression') || 'ob_gzhandler' == ini_get('output_handler') );
|
|
|
|
|
2009-01-26 13:59:10 +01:00
|
|
|
if ( ! isset($concatenate_scripts) ) {
|
|
|
|
$concatenate_scripts = defined('CONCATENATE_SCRIPTS') ? CONCATENATE_SCRIPTS : true;
|
2009-04-29 08:25:49 +02:00
|
|
|
if ( ! is_admin() || ( defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ) )
|
2009-01-26 13:59:10 +01:00
|
|
|
$concatenate_scripts = false;
|
|
|
|
}
|
2009-01-14 15:18:51 +01:00
|
|
|
|
2009-01-26 13:59:10 +01:00
|
|
|
if ( ! isset($compress_scripts) ) {
|
|
|
|
$compress_scripts = defined('COMPRESS_SCRIPTS') ? COMPRESS_SCRIPTS : true;
|
2009-02-19 00:38:11 +01:00
|
|
|
if ( $compress_scripts && ( ! get_site_option('can_compress_scripts') || $compressed_output ) )
|
2009-01-26 13:59:10 +01:00
|
|
|
$compress_scripts = false;
|
|
|
|
}
|
2009-01-17 15:08:15 +01:00
|
|
|
|
2009-01-26 13:59:10 +01:00
|
|
|
if ( ! isset($compress_css) ) {
|
|
|
|
$compress_css = defined('COMPRESS_CSS') ? COMPRESS_CSS : true;
|
2009-02-19 00:38:11 +01:00
|
|
|
if ( $compress_css && ( ! get_site_option('can_compress_scripts') || $compressed_output ) )
|
2009-01-26 13:59:10 +01:00
|
|
|
$compress_css = false;
|
|
|
|
}
|
2009-01-14 15:18:51 +01:00
|
|
|
}
|
|
|
|
|
2008-05-21 07:56:04 +02:00
|
|
|
add_action( 'wp_default_scripts', 'wp_default_scripts' );
|
2008-03-02 21:17:30 +01:00
|
|
|
add_filter( 'wp_print_scripts', 'wp_just_in_time_script_localization' );
|
2007-10-09 23:04:26 +02:00
|
|
|
add_filter( 'print_scripts_array', 'wp_prototype_before_jquery' );
|
2008-05-22 01:24:23 +02:00
|
|
|
|
|
|
|
add_action( 'wp_default_styles', 'wp_default_styles' );
|
2008-10-17 00:23:32 +02:00
|
|
|
add_filter( 'style_loader_src', 'wp_style_loader_src', 10, 2 );
|