|
1 <?php |
|
2 /** |
|
3 * WordPress scripts and styles default loader. |
|
4 * |
|
5 * Most of the functionality that existed here was moved to |
|
6 * {@link http://backpress.automattic.com/ BackPress}. WordPress themes and |
|
7 * plugins will only be concerned about the filters and actions set in this |
|
8 * file. |
|
9 * |
|
10 * Several constants are used to manage the loading, concatenating and compression of scripts and CSS: |
|
11 * define('SCRIPT_DEBUG', true); loads the development (non-minified) versions of all scripts and CSS, and disables compression and concatenation, |
|
12 * define('CONCATENATE_SCRIPTS', false); disables compression and concatenation of scripts and CSS, |
|
13 * define('COMPRESS_SCRIPTS', false); disables compression of scripts, |
|
14 * define('COMPRESS_CSS', false); disables compression of CSS, |
|
15 * define('ENFORCE_GZIP', true); forces gzip for compression (default is deflate). |
|
16 * |
|
17 * The globals $concatenate_scripts, $compress_scripts and $compress_css can be set by plugins |
|
18 * to temporarily override the above settings. Also a compression test is run once and the result is saved |
|
19 * as option 'can_compress_scripts' (0/1). The test will run again if that option is deleted. |
|
20 * |
|
21 * @package WordPress |
|
22 */ |
|
23 |
|
24 /** BackPress: WordPress Dependencies Class */ |
|
25 require( ABSPATH . WPINC . '/class.wp-dependencies.php' ); |
|
26 |
|
27 /** BackPress: WordPress Scripts Class */ |
|
28 require( ABSPATH . WPINC . '/class.wp-scripts.php' ); |
|
29 |
|
30 /** BackPress: WordPress Scripts Functions */ |
|
31 require( ABSPATH . WPINC . '/functions.wp-scripts.php' ); |
|
32 |
|
33 /** BackPress: WordPress Styles Class */ |
|
34 require( ABSPATH . WPINC . '/class.wp-styles.php' ); |
|
35 |
|
36 /** BackPress: WordPress Styles Functions */ |
|
37 require( ABSPATH . WPINC . '/functions.wp-styles.php' ); |
|
38 |
|
39 /** |
|
40 * Register all WordPress scripts. |
|
41 * |
|
42 * Localizes some of them. |
|
43 * args order: $scripts->add( 'handle', 'url', 'dependencies', 'query-string', 1 ); |
|
44 * when last arg === 1 queues the script for the footer |
|
45 * |
|
46 * @since 2.6.0 |
|
47 * |
|
48 * @param object $scripts WP_Scripts object. |
|
49 */ |
|
50 function wp_default_scripts( &$scripts ) { |
|
51 include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version |
|
52 |
|
53 if ( ! defined( 'SCRIPT_DEBUG' ) ) |
|
54 define( 'SCRIPT_DEBUG', false !== strpos( $wp_version, '-src' ) ); |
|
55 |
|
56 if ( ! $guessurl = site_url() ) { |
|
57 $guessed_url = true; |
|
58 $guessurl = wp_guess_url(); |
|
59 } |
|
60 |
|
61 $scripts->base_url = $guessurl; |
|
62 $scripts->content_url = defined('WP_CONTENT_URL')? WP_CONTENT_URL : ''; |
|
63 $scripts->default_version = get_bloginfo( 'version' ); |
|
64 $scripts->default_dirs = array('/wp-admin/js/', '/wp-includes/js/'); |
|
65 |
|
66 $suffix = SCRIPT_DEBUG ? '' : '.min'; |
|
67 |
|
68 $scripts->add( 'utils', "/wp-includes/js/utils$suffix.js" ); |
|
69 did_action( 'init' ) && $scripts->localize( 'utils', 'userSettings', array( |
|
70 'url' => (string) SITECOOKIEPATH, |
|
71 'uid' => (string) get_current_user_id(), |
|
72 'time' => (string) time(), |
|
73 ) ); |
|
74 |
|
75 $scripts->add( 'common', "/wp-admin/js/common$suffix.js", array('jquery', 'hoverIntent', 'utils'), false, 1 ); |
|
76 did_action( 'init' ) && $scripts->localize( 'common', 'commonL10n', array( |
|
77 'warnDelete' => __("You are about to permanently delete the selected items.\n 'Cancel' to stop, 'OK' to delete.") |
|
78 ) ); |
|
79 |
|
80 $scripts->add( 'sack', "/wp-includes/js/tw-sack$suffix.js", array(), '1.6.1', 1 ); |
|
81 |
|
82 $scripts->add( 'quicktags', "/wp-includes/js/quicktags$suffix.js", array(), false, 1 ); |
|
83 did_action( 'init' ) && $scripts->localize( 'quicktags', 'quicktagsL10n', array( |
|
84 'closeAllOpenTags' => esc_attr(__('Close all open tags')), |
|
85 'closeTags' => esc_attr(__('close tags')), |
|
86 'enterURL' => __('Enter the URL'), |
|
87 'enterImageURL' => __('Enter the URL of the image'), |
|
88 'enterImageDescription' => __('Enter a description of the image'), |
|
89 'fullscreen' => __('fullscreen'), |
|
90 'toggleFullscreen' => esc_attr( __('Toggle fullscreen mode') ), |
|
91 'textdirection' => esc_attr( __('text direction') ), |
|
92 'toggleTextdirection' => esc_attr( __('Toggle Editor Text Direction') ) |
|
93 ) ); |
|
94 |
|
95 $scripts->add( 'colorpicker', "/wp-includes/js/colorpicker$suffix.js", array('prototype'), '3517m' ); |
|
96 |
|
97 $scripts->add( 'editor', "/wp-admin/js/editor$suffix.js", array('utils','jquery'), false, 1 ); |
|
98 |
|
99 $scripts->add( 'wp-fullscreen', "/wp-admin/js/wp-fullscreen$suffix.js", array('jquery'), false, 1 ); |
|
100 |
|
101 $scripts->add( 'wp-ajax-response', "/wp-includes/js/wp-ajax-response$suffix.js", array('jquery'), false, 1 ); |
|
102 did_action( 'init' ) && $scripts->localize( 'wp-ajax-response', 'wpAjax', array( |
|
103 'noPerm' => __('You do not have permission to do that.'), |
|
104 'broken' => __('An unidentified error has occurred.') |
|
105 ) ); |
|
106 |
|
107 $scripts->add( 'wp-pointer', "/wp-includes/js/wp-pointer$suffix.js", array( 'jquery-ui-widget', 'jquery-ui-position' ), '20111129a', 1 ); |
|
108 did_action( 'init' ) && $scripts->localize( 'wp-pointer', 'wpPointerL10n', array( |
|
109 'dismiss' => __('Dismiss'), |
|
110 ) ); |
|
111 |
|
112 $scripts->add( 'autosave', "/wp-includes/js/autosave$suffix.js", array('schedule', 'wp-ajax-response'), false, 1 ); |
|
113 |
|
114 $scripts->add( 'heartbeat', "/wp-includes/js/heartbeat$suffix.js", array('jquery'), false, 1 ); |
|
115 did_action( 'init' ) && $scripts->localize( 'heartbeat', 'heartbeatSettings', |
|
116 apply_filters( 'heartbeat_settings', array() ) |
|
117 ); |
|
118 |
|
119 $scripts->add( 'wp-auth-check', "/wp-includes/js/wp-auth-check$suffix.js", array('heartbeat'), false, 1 ); |
|
120 did_action( 'init' ) && $scripts->localize( 'wp-auth-check', 'authcheckL10n', array( |
|
121 'beforeunload' => __('Your session has expired. You can log in again from this page or go to the login page.'), |
|
122 'interval' => apply_filters( 'wp_auth_check_interval', 3 * MINUTE_IN_SECONDS ), |
|
123 ) ); |
|
124 |
|
125 $scripts->add( 'wp-lists', "/wp-includes/js/wp-lists$suffix.js", array( 'wp-ajax-response', 'jquery-color' ), false, 1 ); |
|
126 |
|
127 // WordPress no longer uses or bundles Prototype or script.aculo.us. These are now pulled from an external source. |
|
128 $scripts->add( 'prototype', '//ajax.googleapis.com/ajax/libs/prototype/1.7.1.0/prototype.js', array(), '1.7.1'); |
|
129 $scripts->add( 'scriptaculous-root', '//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/scriptaculous.js', array('prototype'), '1.9.0'); |
|
130 $scripts->add( 'scriptaculous-builder', '//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/builder.js', array('scriptaculous-root'), '1.9.0'); |
|
131 $scripts->add( 'scriptaculous-dragdrop', '//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/dragdrop.js', array('scriptaculous-builder', 'scriptaculous-effects'), '1.9.0'); |
|
132 $scripts->add( 'scriptaculous-effects', '//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/effects.js', array('scriptaculous-root'), '1.9.0'); |
|
133 $scripts->add( 'scriptaculous-slider', '//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/slider.js', array('scriptaculous-effects'), '1.9.0'); |
|
134 $scripts->add( 'scriptaculous-sound', '//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/sound.js', array( 'scriptaculous-root' ), '1.9.0' ); |
|
135 $scripts->add( 'scriptaculous-controls', '//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/controls.js', array('scriptaculous-root'), '1.9.0'); |
|
136 $scripts->add( 'scriptaculous', false, array('scriptaculous-dragdrop', 'scriptaculous-slider', 'scriptaculous-controls') ); |
|
137 |
|
138 // not used in core, replaced by Jcrop.js |
|
139 $scripts->add( 'cropper', '/wp-includes/js/crop/cropper.js', array('scriptaculous-dragdrop') ); |
|
140 |
|
141 // jQuery |
|
142 $scripts->add( 'jquery', false, array( 'jquery-core', 'jquery-migrate' ), '1.10.2' ); |
|
143 $scripts->add( 'jquery-core', '/wp-includes/js/jquery/jquery.js', array(), '1.10.2' ); |
|
144 $scripts->add( 'jquery-migrate', "/wp-includes/js/jquery/jquery-migrate$suffix.js", array(), '1.2.1' ); |
|
145 |
|
146 // full jQuery UI |
|
147 $scripts->add( 'jquery-ui-core', '/wp-includes/js/jquery/ui/jquery.ui.core.min.js', array('jquery'), '1.10.3', 1 ); |
|
148 $scripts->add( 'jquery-effects-core', '/wp-includes/js/jquery/ui/jquery.ui.effect.min.js', array('jquery'), '1.10.3', 1 ); |
|
149 |
|
150 $scripts->add( 'jquery-effects-blind', '/wp-includes/js/jquery/ui/jquery.ui.effect-blind.min.js', array('jquery-effects-core'), '1.10.3', 1 ); |
|
151 $scripts->add( 'jquery-effects-bounce', '/wp-includes/js/jquery/ui/jquery.ui.effect-bounce.min.js', array('jquery-effects-core'), '1.10.3', 1 ); |
|
152 $scripts->add( 'jquery-effects-clip', '/wp-includes/js/jquery/ui/jquery.ui.effect-clip.min.js', array('jquery-effects-core'), '1.10.3', 1 ); |
|
153 $scripts->add( 'jquery-effects-drop', '/wp-includes/js/jquery/ui/jquery.ui.effect-drop.min.js', array('jquery-effects-core'), '1.10.3', 1 ); |
|
154 $scripts->add( 'jquery-effects-explode', '/wp-includes/js/jquery/ui/jquery.ui.effect-explode.min.js', array('jquery-effects-core'), '1.10.3', 1 ); |
|
155 $scripts->add( 'jquery-effects-fade', '/wp-includes/js/jquery/ui/jquery.ui.effect-fade.min.js', array('jquery-effects-core'), '1.10.3', 1 ); |
|
156 $scripts->add( 'jquery-effects-fold', '/wp-includes/js/jquery/ui/jquery.ui.effect-fold.min.js', array('jquery-effects-core'), '1.10.3', 1 ); |
|
157 $scripts->add( 'jquery-effects-highlight', '/wp-includes/js/jquery/ui/jquery.ui.effect-highlight.min.js', array('jquery-effects-core'), '1.10.3', 1 ); |
|
158 $scripts->add( 'jquery-effects-pulsate', '/wp-includes/js/jquery/ui/jquery.ui.effect-pulsate.min.js', array('jquery-effects-core'), '1.10.3', 1 ); |
|
159 $scripts->add( 'jquery-effects-scale', '/wp-includes/js/jquery/ui/jquery.ui.effect-scale.min.js', array('jquery-effects-core'), '1.10.3', 1 ); |
|
160 $scripts->add( 'jquery-effects-shake', '/wp-includes/js/jquery/ui/jquery.ui.effect-shake.min.js', array('jquery-effects-core'), '1.10.3', 1 ); |
|
161 $scripts->add( 'jquery-effects-slide', '/wp-includes/js/jquery/ui/jquery.ui.effect-slide.min.js', array('jquery-effects-core'), '1.10.3', 1 ); |
|
162 $scripts->add( 'jquery-effects-transfer', '/wp-includes/js/jquery/ui/jquery.ui.effect-transfer.min.js', array('jquery-effects-core'), '1.10.3', 1 ); |
|
163 |
|
164 $scripts->add( 'jquery-ui-accordion', '/wp-includes/js/jquery/ui/jquery.ui.accordion.min.js', array('jquery-ui-core', 'jquery-ui-widget'), '1.10.3', 1 ); |
|
165 $scripts->add( 'jquery-ui-autocomplete', '/wp-includes/js/jquery/ui/jquery.ui.autocomplete.min.js', array('jquery-ui-core', 'jquery-ui-widget', 'jquery-ui-position', 'jquery-ui-menu'), '1.10.3', 1 ); |
|
166 $scripts->add( 'jquery-ui-button', '/wp-includes/js/jquery/ui/jquery.ui.button.min.js', array('jquery-ui-core', 'jquery-ui-widget'), '1.10.3', 1 ); |
|
167 $scripts->add( 'jquery-ui-datepicker', '/wp-includes/js/jquery/ui/jquery.ui.datepicker.min.js', array('jquery-ui-core'), '1.10.3', 1 ); |
|
168 $scripts->add( 'jquery-ui-dialog', '/wp-includes/js/jquery/ui/jquery.ui.dialog.min.js', array('jquery-ui-resizable', 'jquery-ui-draggable', 'jquery-ui-button', 'jquery-ui-position'), '1.10.3', 1 ); |
|
169 $scripts->add( 'jquery-ui-draggable', '/wp-includes/js/jquery/ui/jquery.ui.draggable.min.js', array('jquery-ui-core', 'jquery-ui-mouse'), '1.10.3', 1 ); |
|
170 $scripts->add( 'jquery-ui-droppable', '/wp-includes/js/jquery/ui/jquery.ui.droppable.min.js', array('jquery-ui-draggable'), '1.10.3', 1 ); |
|
171 $scripts->add( 'jquery-ui-menu', '/wp-includes/js/jquery/ui/jquery.ui.menu.min.js', array( 'jquery-ui-core', 'jquery-ui-widget', 'jquery-ui-position' ), '1.10.3', 1 ); |
|
172 $scripts->add( 'jquery-ui-mouse', '/wp-includes/js/jquery/ui/jquery.ui.mouse.min.js', array('jquery-ui-widget'), '1.10.3', 1 ); |
|
173 $scripts->add( 'jquery-ui-position', '/wp-includes/js/jquery/ui/jquery.ui.position.min.js', array('jquery'), '1.10.3', 1 ); |
|
174 $scripts->add( 'jquery-ui-progressbar', '/wp-includes/js/jquery/ui/jquery.ui.progressbar.min.js', array('jquery-ui-widget'), '1.10.3', 1 ); |
|
175 $scripts->add( 'jquery-ui-resizable', '/wp-includes/js/jquery/ui/jquery.ui.resizable.min.js', array('jquery-ui-core', 'jquery-ui-mouse'), '1.10.3', 1 ); |
|
176 $scripts->add( 'jquery-ui-selectable', '/wp-includes/js/jquery/ui/jquery.ui.selectable.min.js', array('jquery-ui-core', 'jquery-ui-mouse'), '1.10.3', 1 ); |
|
177 $scripts->add( 'jquery-ui-slider', '/wp-includes/js/jquery/ui/jquery.ui.slider.min.js', array('jquery-ui-core', 'jquery-ui-mouse'), '1.10.3', 1 ); |
|
178 $scripts->add( 'jquery-ui-sortable', '/wp-includes/js/jquery/ui/jquery.ui.sortable.min.js', array('jquery-ui-core', 'jquery-ui-mouse'), '1.10.3', 1 ); |
|
179 $scripts->add( 'jquery-ui-spinner', '/wp-includes/js/jquery/ui/jquery.ui.spinner.min.js', array( 'jquery-ui-core', 'jquery-ui-widget', 'jquery-ui-button' ), '1.10.3', 1 ); |
|
180 $scripts->add( 'jquery-ui-tabs', '/wp-includes/js/jquery/ui/jquery.ui.tabs.min.js', array('jquery-ui-core', 'jquery-ui-widget'), '1.10.3', 1 ); |
|
181 $scripts->add( 'jquery-ui-tooltip', '/wp-includes/js/jquery/ui/jquery.ui.tooltip.min.js', array( 'jquery-ui-core', 'jquery-ui-widget', 'jquery-ui-position' ), '1.10.3', 1 ); |
|
182 $scripts->add( 'jquery-ui-widget', '/wp-includes/js/jquery/ui/jquery.ui.widget.min.js', array('jquery'), '1.10.3', 1 ); |
|
183 |
|
184 // deprecated, not used in core, most functionality is included in jQuery 1.3 |
|
185 $scripts->add( 'jquery-form', "/wp-includes/js/jquery/jquery.form$suffix.js", array('jquery'), '3.37.0', 1 ); |
|
186 |
|
187 // jQuery plugins |
|
188 $scripts->add( 'jquery-color', "/wp-includes/js/jquery/jquery.color.min.js", array('jquery'), '2.1.1', 1 ); |
|
189 $scripts->add( 'suggest', "/wp-includes/js/jquery/suggest$suffix.js", array('jquery'), '1.1-20110113', 1 ); |
|
190 $scripts->add( 'schedule', '/wp-includes/js/jquery/jquery.schedule.js', array('jquery'), '20m', 1 ); |
|
191 $scripts->add( 'jquery-query', "/wp-includes/js/jquery/jquery.query.js", array('jquery'), '2.1.7', 1 ); |
|
192 $scripts->add( 'jquery-serialize-object', "/wp-includes/js/jquery/jquery.serialize-object.js", array('jquery'), '0.2', 1 ); |
|
193 $scripts->add( 'jquery-hotkeys', "/wp-includes/js/jquery/jquery.hotkeys$suffix.js", array('jquery'), '0.0.2m', 1 ); |
|
194 $scripts->add( 'jquery-table-hotkeys', "/wp-includes/js/jquery/jquery.table-hotkeys$suffix.js", array('jquery', 'jquery-hotkeys'), false, 1 ); |
|
195 $scripts->add( 'jquery-touch-punch', "/wp-includes/js/jquery/jquery.ui.touch-punch.js", array('jquery-ui-widget', 'jquery-ui-mouse'), '0.2.2', 1 ); |
|
196 $scripts->add( 'jquery-masonry', "/wp-includes/js/jquery/jquery.masonry.min.js", array('jquery'), '2.1.05', 1 ); |
|
197 |
|
198 $scripts->add( 'thickbox', "/wp-includes/js/thickbox/thickbox.js", array('jquery'), '3.1-20121105', 1 ); |
|
199 did_action( 'init' ) && $scripts->localize( 'thickbox', 'thickboxL10n', array( |
|
200 'next' => __('Next >'), |
|
201 'prev' => __('< Prev'), |
|
202 'image' => __('Image'), |
|
203 'of' => __('of'), |
|
204 'close' => __('Close'), |
|
205 'noiframes' => __('This feature requires inline frames. You have iframes disabled or your browser does not support them.'), |
|
206 'loadingAnimation' => includes_url('js/thickbox/loadingAnimation.gif'), |
|
207 'closeImage' => includes_url('js/thickbox/tb-close.png') |
|
208 ) ); |
|
209 |
|
210 $scripts->add( 'jcrop', "/wp-includes/js/jcrop/jquery.Jcrop.min.js", array('jquery'), '0.9.12'); |
|
211 |
|
212 $scripts->add( 'swfobject', "/wp-includes/js/swfobject.js", array(), '2.2-20120417'); |
|
213 |
|
214 // common bits for both uploaders |
|
215 $max_upload_size = ( (int) ( $max_up = @ini_get('upload_max_filesize') ) < (int) ( $max_post = @ini_get('post_max_size') ) ) ? $max_up : $max_post; |
|
216 |
|
217 if ( empty($max_upload_size) ) |
|
218 $max_upload_size = __('not configured'); |
|
219 |
|
220 // error message for both plupload and swfupload |
|
221 $uploader_l10n = array( |
|
222 'queue_limit_exceeded' => __('You have attempted to queue too many files.'), |
|
223 'file_exceeds_size_limit' => __('%s exceeds the maximum upload size for this site.'), |
|
224 'zero_byte_file' => __('This file is empty. Please try another.'), |
|
225 'invalid_filetype' => __('This file type is not allowed. Please try another.'), |
|
226 'not_an_image' => __('This file is not an image. Please try another.'), |
|
227 'image_memory_exceeded' => __('Memory exceeded. Please try another smaller file.'), |
|
228 'image_dimensions_exceeded' => __('This is larger than the maximum size. Please try another.'), |
|
229 'default_error' => __('An error occurred in the upload. Please try again later.'), |
|
230 'missing_upload_url' => __('There was a configuration error. Please contact the server administrator.'), |
|
231 'upload_limit_exceeded' => __('You may only upload 1 file.'), |
|
232 'http_error' => __('HTTP error.'), |
|
233 'upload_failed' => __('Upload failed.'), |
|
234 'big_upload_failed' => __('Please try uploading this file with the %1$sbrowser uploader%2$s.'), |
|
235 'big_upload_queued' => __('%s exceeds the maximum upload size for the multi-file uploader when used in your browser.'), |
|
236 'io_error' => __('IO error.'), |
|
237 'security_error' => __('Security error.'), |
|
238 'file_cancelled' => __('File canceled.'), |
|
239 'upload_stopped' => __('Upload stopped.'), |
|
240 'dismiss' => __('Dismiss'), |
|
241 'crunching' => __('Crunching…'), |
|
242 'deleted' => __('moved to the trash.'), |
|
243 'error_uploading' => __('“%s” has failed to upload.') |
|
244 ); |
|
245 |
|
246 $scripts->add( 'plupload', '/wp-includes/js/plupload/plupload.js', array(), '1.5.7' ); |
|
247 $scripts->add( 'plupload-html5', '/wp-includes/js/plupload/plupload.html5.js', array('plupload'), '1.5.7' ); |
|
248 $scripts->add( 'plupload-flash', '/wp-includes/js/plupload/plupload.flash.js', array('plupload'), '1.5.7' ); |
|
249 $scripts->add( 'plupload-silverlight', '/wp-includes/js/plupload/plupload.silverlight.js', array('plupload'), '1.5.7' ); |
|
250 $scripts->add( 'plupload-html4', '/wp-includes/js/plupload/plupload.html4.js', array('plupload'), '1.5.7' ); |
|
251 |
|
252 // cannot use the plupload.full.js, as it loads browserplus init JS from Yahoo |
|
253 $scripts->add( 'plupload-all', false, array('plupload', 'plupload-html5', 'plupload-flash', 'plupload-silverlight', 'plupload-html4'), '1.5.7' ); |
|
254 |
|
255 $scripts->add( 'plupload-handlers', "/wp-includes/js/plupload/handlers$suffix.js", array('plupload-all', 'jquery') ); |
|
256 did_action( 'init' ) && $scripts->localize( 'plupload-handlers', 'pluploadL10n', $uploader_l10n ); |
|
257 |
|
258 $scripts->add( 'wp-plupload', "/wp-includes/js/plupload/wp-plupload$suffix.js", array('plupload-all', 'jquery', 'json2', 'media-models'), false, 1 ); |
|
259 did_action( 'init' ) && $scripts->localize( 'wp-plupload', 'pluploadL10n', $uploader_l10n ); |
|
260 |
|
261 // keep 'swfupload' for back-compat. |
|
262 $scripts->add( 'swfupload', '/wp-includes/js/swfupload/swfupload.js', array(), '2201-20110113'); |
|
263 $scripts->add( 'swfupload-swfobject', '/wp-includes/js/swfupload/plugins/swfupload.swfobject.js', array('swfupload', 'swfobject'), '2201a'); |
|
264 $scripts->add( 'swfupload-queue', '/wp-includes/js/swfupload/plugins/swfupload.queue.js', array('swfupload'), '2201'); |
|
265 $scripts->add( 'swfupload-speed', '/wp-includes/js/swfupload/plugins/swfupload.speed.js', array('swfupload'), '2201'); |
|
266 $scripts->add( 'swfupload-all', false, array('swfupload', 'swfupload-swfobject', 'swfupload-queue'), '2201'); |
|
267 $scripts->add( 'swfupload-handlers', "/wp-includes/js/swfupload/handlers$suffix.js", array('swfupload-all', 'jquery'), '2201-20110524'); |
|
268 did_action( 'init' ) && $scripts->localize( 'swfupload-handlers', 'swfuploadL10n', $uploader_l10n ); |
|
269 |
|
270 $scripts->add( 'comment-reply', "/wp-includes/js/comment-reply$suffix.js" ); |
|
271 |
|
272 $scripts->add( 'json2', "/wp-includes/js/json2$suffix.js", array(), '2011-02-23'); |
|
273 |
|
274 $scripts->add( 'underscore', '/wp-includes/js/underscore.min.js', array(), '1.4.4', 1 ); |
|
275 $scripts->add( 'backbone', '/wp-includes/js/backbone.min.js', array('underscore','jquery'), '1.0.0', 1 ); |
|
276 |
|
277 $scripts->add( 'wp-util', "/wp-includes/js/wp-util$suffix.js", array('underscore', 'jquery'), false, 1 ); |
|
278 did_action( 'init' ) && $scripts->localize( 'wp-util', '_wpUtilSettings', array( |
|
279 'ajax' => array( |
|
280 'url' => admin_url( 'admin-ajax.php', 'relative' ), |
|
281 ), |
|
282 ) ); |
|
283 |
|
284 $scripts->add( 'wp-backbone', "/wp-includes/js/wp-backbone$suffix.js", array('backbone', 'wp-util'), false, 1 ); |
|
285 |
|
286 $scripts->add( 'revisions', "/wp-admin/js/revisions$suffix.js", array( 'wp-backbone', 'jquery-ui-slider', 'hoverIntent' ), false, 1 ); |
|
287 |
|
288 $scripts->add( 'imgareaselect', "/wp-includes/js/imgareaselect/jquery.imgareaselect$suffix.js", array('jquery'), '0.9.10', 1 ); |
|
289 |
|
290 $scripts->add( 'mediaelement', "/wp-includes/js/mediaelement/mediaelement-and-player.min.js", array('jquery'), '2.13.0', 1 ); |
|
291 did_action( 'init' ) && $scripts->localize( 'mediaelement', 'mejsL10n', array( |
|
292 'language' => get_bloginfo( 'language' ), |
|
293 'strings' => array( |
|
294 'Close' => __( 'Close' ), |
|
295 'Fullscreen' => __( 'Fullscreen' ), |
|
296 'Download File' => __( 'Download File' ), |
|
297 'Download Video' => __( 'Download Video' ), |
|
298 'Play/Pause' => __( 'Play/Pause' ), |
|
299 'Mute Toggle' => __( 'Mute Toggle' ), |
|
300 'None' => __( 'None' ), |
|
301 'Turn off Fullscreen' => __( 'Turn off Fullscreen' ), |
|
302 'Go Fullscreen' => __( 'Go Fullscreen' ), |
|
303 'Unmute' => __( 'Unmute' ), |
|
304 'Mute' => __( 'Mute' ), |
|
305 'Captions/Subtitles' => __( 'Captions/Subtitles' ) |
|
306 ), |
|
307 ) ); |
|
308 |
|
309 |
|
310 $scripts->add( 'wp-mediaelement', "/wp-includes/js/mediaelement/wp-mediaelement.js", array('mediaelement'), false, 1 ); |
|
311 did_action( 'init' ) && $scripts->localize( 'wp-mediaelement', '_wpmejsSettings', array( |
|
312 'pluginPath' => includes_url( 'js/mediaelement/', 'relative' ), |
|
313 ) ); |
|
314 |
|
315 $scripts->add( 'zxcvbn-async', "/wp-includes/js/zxcvbn-async$suffix.js", array(), '1.0' ); |
|
316 did_action( 'init' ) && $scripts->localize( 'zxcvbn-async', '_zxcvbnSettings', array( |
|
317 'src' => empty( $guessed_url ) ? includes_url( '/js/zxcvbn.min.js' ) : $scripts->base_url . '/wp-includes/js/zxcvbn.min.js', |
|
318 ) ); |
|
319 |
|
320 $scripts->add( 'password-strength-meter', "/wp-admin/js/password-strength-meter$suffix.js", array( 'jquery', 'zxcvbn-async' ), false, 1 ); |
|
321 did_action( 'init' ) && $scripts->localize( 'password-strength-meter', 'pwsL10n', array( |
|
322 'empty' => __('Strength indicator'), |
|
323 'short' => __('Very weak'), |
|
324 'bad' => __('Weak'), |
|
325 /* translators: password strength */ |
|
326 'good' => _x('Medium', 'password strength'), |
|
327 'strong' => __('Strong'), |
|
328 'mismatch' => __('Mismatch') |
|
329 ) ); |
|
330 |
|
331 $scripts->add( 'user-profile', "/wp-admin/js/user-profile$suffix.js", array( 'jquery', 'password-strength-meter' ), false, 1 ); |
|
332 |
|
333 $scripts->add( 'user-suggest', "/wp-admin/js/user-suggest$suffix.js", array( 'jquery-ui-autocomplete' ), false, 1 ); |
|
334 |
|
335 $scripts->add( 'about', "/wp-admin/js/about$suffix.js", array( 'jquery', 'password-strength-meter' ), false, 1 ); |
|
336 |
|
337 $scripts->add( 'admin-bar', "/wp-includes/js/admin-bar$suffix.js", array(), false, 1 ); |
|
338 |
|
339 $scripts->add( 'wplink', "/wp-includes/js/wplink$suffix.js", array( 'jquery', 'wpdialogs' ), false, 1 ); |
|
340 did_action( 'init' ) && $scripts->localize( 'wplink', 'wpLinkL10n', array( |
|
341 'title' => __('Insert/edit link'), |
|
342 'update' => __('Update'), |
|
343 'save' => __('Add Link'), |
|
344 'noTitle' => __('(no title)'), |
|
345 'noMatchesFound' => __('No matches found.') |
|
346 ) ); |
|
347 |
|
348 $scripts->add( 'wpdialogs', "/wp-includes/js/tinymce/plugins/wpdialogs/js/wpdialog$suffix.js", array( 'jquery-ui-dialog' ), false, 1 ); |
|
349 |
|
350 $scripts->add( 'wpdialogs-popup', "/wp-includes/js/tinymce/plugins/wpdialogs/js/popup$suffix.js", array( 'wpdialogs' ), false, 1 ); |
|
351 |
|
352 $scripts->add( 'word-count', "/wp-admin/js/word-count$suffix.js", array( 'jquery' ), false, 1 ); |
|
353 did_action( 'init' ) && $scripts->localize( 'word-count', 'wordCountL10n', array( |
|
354 /* translators: If your word count is based on single characters (East Asian characters), |
|
355 enter 'characters'. Otherwise, enter 'words'. Do not translate into your own language. */ |
|
356 'type' => 'characters' == _x( 'words', 'word count: words or characters?' ) ? 'c' : 'w', |
|
357 ) ); |
|
358 |
|
359 $scripts->add( 'media-upload', "/wp-admin/js/media-upload$suffix.js", array( 'thickbox', 'shortcode' ), false, 1 ); |
|
360 |
|
361 $scripts->add( 'hoverIntent', "/wp-includes/js/hoverIntent$suffix.js", array('jquery'), 'r7', 1 ); |
|
362 |
|
363 $scripts->add( 'customize-base', "/wp-includes/js/customize-base$suffix.js", array( 'jquery', 'json2' ), false, 1 ); |
|
364 $scripts->add( 'customize-loader', "/wp-includes/js/customize-loader$suffix.js", array( 'customize-base' ), false, 1 ); |
|
365 $scripts->add( 'customize-preview', "/wp-includes/js/customize-preview$suffix.js", array( 'customize-base' ), false, 1 ); |
|
366 $scripts->add( 'customize-controls', "/wp-admin/js/customize-controls$suffix.js", array( 'customize-base' ), false, 1 ); |
|
367 did_action( 'init' ) && $scripts->localize( 'customize-controls', '_wpCustomizeControlsL10n', array( |
|
368 'activate' => __( 'Save & Activate' ), |
|
369 'save' => __( 'Save & Publish' ), |
|
370 'saved' => __( 'Saved' ), |
|
371 'cancel' => __( 'Cancel' ), |
|
372 'close' => __( 'Close' ), |
|
373 'cheatin' => __( 'Cheatin’ uh?' ), |
|
374 |
|
375 // Used for overriding the file types allowed in plupload. |
|
376 'allowedFiles' => __( 'Allowed Files' ), |
|
377 ) ); |
|
378 |
|
379 $scripts->add( 'accordion', "/wp-admin/js/accordion$suffix.js", array( 'jquery' ), false, 1 ); |
|
380 |
|
381 $scripts->add( 'shortcode', "/wp-includes/js/shortcode$suffix.js", array( 'underscore' ), false, 1 ); |
|
382 $scripts->add( 'media-models', "/wp-includes/js/media-models$suffix.js", array( 'wp-backbone' ), false, 1 ); |
|
383 did_action( 'init' ) && $scripts->localize( 'media-models', '_wpMediaModelsL10n', array( |
|
384 'settings' => array( |
|
385 'ajaxurl' => admin_url( 'admin-ajax.php', 'relative' ), |
|
386 'post' => array( 'id' => 0 ), |
|
387 ), |
|
388 ) ); |
|
389 |
|
390 // To enqueue media-views or media-editor, call wp_enqueue_media(). |
|
391 // Both rely on numerous settings, styles, and templates to operate correctly. |
|
392 $scripts->add( 'media-views', "/wp-includes/js/media-views$suffix.js", array( 'utils', 'media-models', 'wp-plupload', 'jquery-ui-sortable' ), false, 1 ); |
|
393 $scripts->add( 'media-editor', "/wp-includes/js/media-editor$suffix.js", array( 'shortcode', 'media-views' ), false, 1 ); |
|
394 $scripts->add( 'mce-view', "/wp-includes/js/mce-view$suffix.js", array( 'shortcode', 'media-models' ), false, 1 ); |
|
395 |
|
396 if ( is_admin() ) { |
|
397 $scripts->add( 'admin-tags', "/wp-admin/js/tags$suffix.js", array('jquery', 'wp-ajax-response'), false, 1 ); |
|
398 did_action( 'init' ) && $scripts->localize( 'admin-tags', 'tagsl10n', array( |
|
399 'noPerm' => __('You do not have permission to do that.'), |
|
400 'broken' => __('An unidentified error has occurred.') |
|
401 )); |
|
402 |
|
403 $scripts->add( 'admin-comments', "/wp-admin/js/edit-comments$suffix.js", array('wp-lists', 'quicktags', 'jquery-query'), false, 1 ); |
|
404 did_action( 'init' ) && $scripts->localize( 'admin-comments', 'adminCommentsL10n', array( |
|
405 'hotkeys_highlight_first' => isset($_GET['hotkeys_highlight_first']), |
|
406 'hotkeys_highlight_last' => isset($_GET['hotkeys_highlight_last']), |
|
407 'replyApprove' => __( 'Approve and Reply' ), |
|
408 'reply' => __( 'Reply' ) |
|
409 ) ); |
|
410 |
|
411 $scripts->add( 'xfn', "/wp-admin/js/xfn$suffix.js", array('jquery'), false, 1 ); |
|
412 |
|
413 $scripts->add( 'postbox', "/wp-admin/js/postbox$suffix.js", array('jquery-ui-sortable'), false, 1 ); |
|
414 |
|
415 $scripts->add( 'post', "/wp-admin/js/post$suffix.js", array('suggest', 'wp-lists', 'postbox', 'heartbeat'), false, 1 ); |
|
416 did_action( 'init' ) && $scripts->localize( 'post', 'postL10n', array( |
|
417 'ok' => __('OK'), |
|
418 'cancel' => __('Cancel'), |
|
419 'publishOn' => __('Publish on:'), |
|
420 'publishOnFuture' => __('Schedule for:'), |
|
421 'publishOnPast' => __('Published on:'), |
|
422 /* translators: 1: month, 2: day, 3: year, 4: hour, 5: minute */ |
|
423 'dateFormat' => __('%1$s %2$s, %3$s @ %4$s : %5$s'), |
|
424 'showcomm' => __('Show more comments'), |
|
425 'endcomm' => __('No more comments found.'), |
|
426 'publish' => __('Publish'), |
|
427 'schedule' => __('Schedule'), |
|
428 'update' => __('Update'), |
|
429 'savePending' => __('Save as Pending'), |
|
430 'saveDraft' => __('Save Draft'), |
|
431 'private' => __('Private'), |
|
432 'public' => __('Public'), |
|
433 'publicSticky' => __('Public, Sticky'), |
|
434 'password' => __('Password Protected'), |
|
435 'privatelyPublished' => __('Privately Published'), |
|
436 'published' => __('Published'), |
|
437 'comma' => _x( ',', 'tag delimiter' ), |
|
438 ) ); |
|
439 |
|
440 $scripts->add( 'link', "/wp-admin/js/link$suffix.js", array( 'wp-lists', 'postbox' ), false, 1 ); |
|
441 |
|
442 $scripts->add( 'comment', "/wp-admin/js/comment$suffix.js", array( 'jquery', 'postbox' ) ); |
|
443 $scripts->add_data( 'comment', 'group', 1 ); |
|
444 did_action( 'init' ) && $scripts->localize( 'comment', 'commentL10n', array( |
|
445 'submittedOn' => __('Submitted on:') |
|
446 ) ); |
|
447 |
|
448 $scripts->add( 'admin-gallery', "/wp-admin/js/gallery$suffix.js", array( 'jquery-ui-sortable' ) ); |
|
449 |
|
450 $scripts->add( 'admin-widgets', "/wp-admin/js/widgets$suffix.js", array( 'jquery-ui-sortable', 'jquery-ui-draggable', 'jquery-ui-droppable' ), false, 1 ); |
|
451 |
|
452 $scripts->add( 'theme', "/wp-admin/js/theme$suffix.js", array( 'jquery' ), false, 1 ); |
|
453 |
|
454 // @todo: Core no longer uses theme-preview.js. Remove? |
|
455 $scripts->add( 'theme-preview', "/wp-admin/js/theme-preview$suffix.js", array( 'thickbox', 'jquery' ), false, 1 ); |
|
456 |
|
457 $scripts->add( 'inline-edit-post', "/wp-admin/js/inline-edit-post$suffix.js", array( 'jquery', 'suggest', 'heartbeat' ), false, 1 ); |
|
458 did_action( 'init' ) && $scripts->localize( 'inline-edit-post', 'inlineEditL10n', array( |
|
459 'error' => __('Error while saving the changes.'), |
|
460 'ntdeltitle' => __('Remove From Bulk Edit'), |
|
461 'notitle' => __('(no title)'), |
|
462 'comma' => _x( ',', 'tag delimiter' ), |
|
463 ) ); |
|
464 |
|
465 $scripts->add( 'inline-edit-tax', "/wp-admin/js/inline-edit-tax$suffix.js", array( 'jquery' ), false, 1 ); |
|
466 did_action( 'init' ) && $scripts->localize( 'inline-edit-tax', 'inlineEditL10n', array( |
|
467 'error' => __('Error while saving the changes.') |
|
468 ) ); |
|
469 |
|
470 $scripts->add( 'plugin-install', "/wp-admin/js/plugin-install$suffix.js", array( 'jquery', 'thickbox' ), false, 1 ); |
|
471 did_action( 'init' ) && $scripts->localize( 'plugin-install', 'plugininstallL10n', array( |
|
472 'plugin_information' => __('Plugin Information:'), |
|
473 'ays' => __('Are you sure you want to install this plugin?') |
|
474 ) ); |
|
475 |
|
476 $scripts->add( 'farbtastic', '/wp-admin/js/farbtastic.js', array('jquery'), '1.2' ); |
|
477 |
|
478 $scripts->add( 'iris', '/wp-admin/js/iris.min.js', array( 'jquery-ui-draggable', 'jquery-ui-slider', 'jquery-touch-punch' ), false, 1 ); |
|
479 $scripts->add( 'wp-color-picker', "/wp-admin/js/color-picker$suffix.js", array( 'iris' ), false, 1 ); |
|
480 did_action( 'init' ) && $scripts->localize( 'wp-color-picker', 'wpColorPickerL10n', array( |
|
481 'clear' => __( 'Clear' ), |
|
482 'defaultString' => __( 'Default' ), |
|
483 'pick' => __( 'Select Color' ), |
|
484 'current' => __( 'Current Color' ), |
|
485 ) ); |
|
486 |
|
487 $scripts->add( 'dashboard', "/wp-admin/js/dashboard$suffix.js", array( 'jquery', 'admin-comments', 'postbox' ), false, 1 ); |
|
488 |
|
489 $scripts->add( 'list-revisions', "/wp-includes/js/wp-list-revisions$suffix.js" ); |
|
490 |
|
491 $scripts->add( 'media', "/wp-admin/js/media$suffix.js", array( 'jquery-ui-draggable' ), false, 1 ); |
|
492 |
|
493 $scripts->add( 'image-edit', "/wp-admin/js/image-edit$suffix.js", array('jquery', 'json2', 'imgareaselect'), false, 1 ); |
|
494 did_action( 'init' ) && $scripts->localize( 'image-edit', 'imageEditL10n', array( |
|
495 'error' => __( 'Could not load the preview image. Please reload the page and try again.' ) |
|
496 )); |
|
497 |
|
498 $scripts->add( 'set-post-thumbnail', "/wp-admin/js/set-post-thumbnail$suffix.js", array( 'jquery' ), false, 1 ); |
|
499 did_action( 'init' ) && $scripts->localize( 'set-post-thumbnail', 'setPostThumbnailL10n', array( |
|
500 'setThumbnail' => __( 'Use as featured image' ), |
|
501 'saving' => __( 'Saving...' ), |
|
502 'error' => __( 'Could not set that as the thumbnail image. Try a different attachment.' ), |
|
503 'done' => __( 'Done' ) |
|
504 ) ); |
|
505 |
|
506 // Navigation Menus |
|
507 $scripts->add( 'nav-menu', "/wp-admin/js/nav-menu$suffix.js", array( 'jquery-ui-sortable', 'jquery-ui-draggable', 'jquery-ui-droppable', 'wp-lists', 'postbox' ) ); |
|
508 did_action( 'init' ) && $scripts->localize( 'nav-menu', 'navMenuL10n', array( |
|
509 'noResultsFound' => _x('No results found.', 'search results'), |
|
510 'warnDeleteMenu' => __( "You are about to permanently delete this menu. \n 'Cancel' to stop, 'OK' to delete." ), |
|
511 'saveAlert' => __('The changes you made will be lost if you navigate away from this page.') |
|
512 ) ); |
|
513 |
|
514 $scripts->add( 'custom-header', "/wp-admin/js/custom-header.js", array( 'jquery-masonry' ), false, 1 ); |
|
515 $scripts->add( 'custom-background', "/wp-admin/js/custom-background$suffix.js", array( 'wp-color-picker', 'media-views' ), false, 1 ); |
|
516 $scripts->add( 'media-gallery', "/wp-admin/js/media-gallery$suffix.js", array('jquery'), false, 1 ); |
|
517 } |
|
518 } |
|
519 |
|
520 /** |
|
521 * Assign default styles to $styles object. |
|
522 * |
|
523 * Nothing is returned, because the $styles parameter is passed by reference. |
|
524 * Meaning that whatever object is passed will be updated without having to |
|
525 * reassign the variable that was passed back to the same value. This saves |
|
526 * memory. |
|
527 * |
|
528 * Adding default styles is not the only task, it also assigns the base_url |
|
529 * property, the default version, and text direction for the object. |
|
530 * |
|
531 * @since 2.6.0 |
|
532 * |
|
533 * @param object $styles |
|
534 */ |
|
535 function wp_default_styles( &$styles ) { |
|
536 include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version |
|
537 |
|
538 if ( ! defined( 'SCRIPT_DEBUG' ) ) |
|
539 define( 'SCRIPT_DEBUG', false !== strpos( $wp_version, '-src' ) ); |
|
540 |
|
541 if ( ! $guessurl = site_url() ) |
|
542 $guessurl = wp_guess_url(); |
|
543 |
|
544 $styles->base_url = $guessurl; |
|
545 $styles->content_url = defined('WP_CONTENT_URL')? WP_CONTENT_URL : ''; |
|
546 $styles->default_version = get_bloginfo( 'version' ); |
|
547 $styles->text_direction = function_exists( 'is_rtl' ) && is_rtl() ? 'rtl' : 'ltr'; |
|
548 $styles->default_dirs = array('/wp-admin/', '/wp-includes/css/'); |
|
549 |
|
550 $suffix = SCRIPT_DEBUG ? '' : '.min'; |
|
551 |
|
552 $rtl_styles = array( 'wp-admin', 'ie', 'media', 'admin-bar', 'customize-controls', 'media-views', 'wp-color-picker' ); |
|
553 // Any rtl stylesheets that don't have a .min version |
|
554 $no_suffix = array( 'farbtastic' ); |
|
555 |
|
556 $styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css" ); |
|
557 |
|
558 $styles->add( 'ie', "/wp-admin/css/ie$suffix.css" ); |
|
559 $styles->add_data( 'ie', 'conditional', 'lte IE 7' ); |
|
560 |
|
561 // Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string. |
|
562 $styles->add( 'colors', true, array('wp-admin', 'buttons') ); |
|
563 |
|
564 // do not refer to these directly, the right one is queued by the above "meta" colors handle |
|
565 $styles->add( 'colors-fresh', "/wp-admin/css/colors-fresh$suffix.css", array('wp-admin', 'buttons') ); |
|
566 $styles->add( 'colors-classic', "/wp-admin/css/colors-classic$suffix.css", array('wp-admin', 'buttons') ); |
|
567 |
|
568 $styles->add( 'media', "/wp-admin/css/media$suffix.css" ); |
|
569 $styles->add( 'install', "/wp-admin/css/install$suffix.css", array('buttons') ); |
|
570 $styles->add( 'thickbox', '/wp-includes/js/thickbox/thickbox.css', array(), '20121105' ); |
|
571 $styles->add( 'farbtastic', '/wp-admin/css/farbtastic.css', array(), '1.3u1' ); |
|
572 $styles->add( 'wp-color-picker', "/wp-admin/css/color-picker$suffix.css" ); |
|
573 $styles->add( 'jcrop', "/wp-includes/js/jcrop/jquery.Jcrop.min.css", array(), '0.9.12' ); |
|
574 $styles->add( 'imgareaselect', '/wp-includes/js/imgareaselect/imgareaselect.css', array(), '0.9.8' ); |
|
575 $styles->add( 'admin-bar', "/wp-includes/css/admin-bar$suffix.css" ); |
|
576 $styles->add( 'wp-jquery-ui-dialog', "/wp-includes/css/jquery-ui-dialog$suffix.css" ); |
|
577 $styles->add( 'editor-buttons', "/wp-includes/css/editor$suffix.css" ); |
|
578 $styles->add( 'wp-pointer', "/wp-includes/css/wp-pointer$suffix.css" ); |
|
579 $styles->add( 'customize-controls', "/wp-admin/css/customize-controls$suffix.css", array( 'wp-admin', 'colors', 'ie' ) ); |
|
580 $styles->add( 'media-views', "/wp-includes/css/media-views$suffix.css", array( 'buttons' ) ); |
|
581 $styles->add( 'buttons', "/wp-includes/css/buttons$suffix.css" ); |
|
582 $styles->add( 'wp-auth-check', "/wp-includes/css/wp-auth-check$suffix.css" ); |
|
583 |
|
584 $styles->add( 'mediaelement', "/wp-includes/js/mediaelement/mediaelementplayer.min.css", array(), '2.13.0' ); |
|
585 $styles->add( 'wp-mediaelement', "/wp-includes/js/mediaelement/wp-mediaelement.css", array( 'mediaelement' ) ); |
|
586 |
|
587 foreach ( $rtl_styles as $rtl_style ) { |
|
588 $styles->add_data( $rtl_style, 'rtl', true ); |
|
589 if ( $suffix && ! in_array( $rtl_style, $no_suffix ) ) |
|
590 $styles->add_data( $rtl_style, 'suffix', $suffix ); |
|
591 } |
|
592 } |
|
593 |
|
594 /** |
|
595 * Reorder JavaScript scripts array to place prototype before jQuery. |
|
596 * |
|
597 * @since 2.3.1 |
|
598 * |
|
599 * @param array $js_array JavaScript scripts array |
|
600 * @return array Reordered array, if needed. |
|
601 */ |
|
602 function wp_prototype_before_jquery( $js_array ) { |
|
603 if ( false === $prototype = array_search( 'prototype', $js_array, true ) ) |
|
604 return $js_array; |
|
605 |
|
606 if ( false === $jquery = array_search( 'jquery', $js_array, true ) ) |
|
607 return $js_array; |
|
608 |
|
609 if ( $prototype < $jquery ) |
|
610 return $js_array; |
|
611 |
|
612 unset($js_array[$prototype]); |
|
613 |
|
614 array_splice( $js_array, $jquery, 0, 'prototype' ); |
|
615 |
|
616 return $js_array; |
|
617 } |
|
618 |
|
619 /** |
|
620 * Load localized data on print rather than initialization. |
|
621 * |
|
622 * These localizations require information that may not be loaded even by init. |
|
623 * |
|
624 * @since 2.5.0 |
|
625 */ |
|
626 function wp_just_in_time_script_localization() { |
|
627 |
|
628 wp_localize_script( 'autosave', 'autosaveL10n', array( |
|
629 'autosaveInterval' => AUTOSAVE_INTERVAL, |
|
630 'savingText' => __('Saving Draft…'), |
|
631 'saveAlert' => __('The changes you made will be lost if you navigate away from this page.'), |
|
632 'blog_id' => get_current_blog_id(), |
|
633 ) ); |
|
634 |
|
635 } |
|
636 |
|
637 /** |
|
638 * Administration Screen CSS for changing the styles. |
|
639 * |
|
640 * If installing the 'wp-admin/' directory will be replaced with './'. |
|
641 * |
|
642 * The $_wp_admin_css_colors global manages the Administration Screens CSS |
|
643 * stylesheet that is loaded. The option that is set is 'admin_color' and is the |
|
644 * color and key for the array. The value for the color key is an object with |
|
645 * a 'url' parameter that has the URL path to the CSS file. |
|
646 * |
|
647 * The query from $src parameter will be appended to the URL that is given from |
|
648 * the $_wp_admin_css_colors array value URL. |
|
649 * |
|
650 * @since 2.6.0 |
|
651 * @uses $_wp_admin_css_colors |
|
652 * |
|
653 * @param string $src Source URL. |
|
654 * @param string $handle Either 'colors' or 'colors-rtl'. |
|
655 * @return string URL path to CSS stylesheet for Administration Screens. |
|
656 */ |
|
657 function wp_style_loader_src( $src, $handle ) { |
|
658 if ( defined('WP_INSTALLING') ) |
|
659 return preg_replace( '#^wp-admin/#', './', $src ); |
|
660 |
|
661 if ( 'colors' == $handle || 'colors-rtl' == $handle ) { |
|
662 global $_wp_admin_css_colors; |
|
663 $color = get_user_option('admin_color'); |
|
664 |
|
665 if ( empty($color) || !isset($_wp_admin_css_colors[$color]) ) |
|
666 $color = 'fresh'; |
|
667 |
|
668 $color = $_wp_admin_css_colors[$color]; |
|
669 $parsed = parse_url( $src ); |
|
670 $url = $color->url; |
|
671 |
|
672 if ( defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ) |
|
673 $url = preg_replace( '/.min.css$|.min.css(?=\?)/', '.css', $url ); |
|
674 |
|
675 if ( isset($parsed['query']) && $parsed['query'] ) { |
|
676 wp_parse_str( $parsed['query'], $qv ); |
|
677 $url = add_query_arg( $qv, $url ); |
|
678 } |
|
679 |
|
680 return $url; |
|
681 } |
|
682 |
|
683 return $src; |
|
684 } |
|
685 |
|
686 /** |
|
687 * Prints the script queue in the HTML head on admin pages. |
|
688 * |
|
689 * Postpones the scripts that were queued for the footer. |
|
690 * print_footer_scripts() is called in the footer to print these scripts. |
|
691 * |
|
692 * @since 2.8 |
|
693 * @see wp_print_scripts() |
|
694 */ |
|
695 function print_head_scripts() { |
|
696 global $wp_scripts, $concatenate_scripts; |
|
697 |
|
698 if ( ! did_action('wp_print_scripts') ) |
|
699 do_action('wp_print_scripts'); |
|
700 |
|
701 if ( !is_a($wp_scripts, 'WP_Scripts') ) |
|
702 $wp_scripts = new WP_Scripts(); |
|
703 |
|
704 script_concat_settings(); |
|
705 $wp_scripts->do_concat = $concatenate_scripts; |
|
706 $wp_scripts->do_head_items(); |
|
707 |
|
708 if ( apply_filters('print_head_scripts', true) ) |
|
709 _print_scripts(); |
|
710 |
|
711 $wp_scripts->reset(); |
|
712 return $wp_scripts->done; |
|
713 } |
|
714 |
|
715 /** |
|
716 * Prints the scripts that were queued for the footer or too late for the HTML head. |
|
717 * |
|
718 * @since 2.8 |
|
719 */ |
|
720 function print_footer_scripts() { |
|
721 global $wp_scripts, $concatenate_scripts; |
|
722 |
|
723 if ( !is_a($wp_scripts, 'WP_Scripts') ) |
|
724 return array(); // No need to run if not instantiated. |
|
725 |
|
726 script_concat_settings(); |
|
727 $wp_scripts->do_concat = $concatenate_scripts; |
|
728 $wp_scripts->do_footer_items(); |
|
729 |
|
730 if ( apply_filters('print_footer_scripts', true) ) |
|
731 _print_scripts(); |
|
732 |
|
733 $wp_scripts->reset(); |
|
734 return $wp_scripts->done; |
|
735 } |
|
736 |
|
737 /** |
|
738 * @internal use |
|
739 */ |
|
740 function _print_scripts() { |
|
741 global $wp_scripts, $compress_scripts; |
|
742 |
|
743 $zip = $compress_scripts ? 1 : 0; |
|
744 if ( $zip && defined('ENFORCE_GZIP') && ENFORCE_GZIP ) |
|
745 $zip = 'gzip'; |
|
746 |
|
747 if ( $concat = trim( $wp_scripts->concat, ', ' ) ) { |
|
748 |
|
749 if ( !empty($wp_scripts->print_code) ) { |
|
750 echo "\n<script type='text/javascript'>\n"; |
|
751 echo "/* <![CDATA[ */\n"; // not needed in HTML 5 |
|
752 echo $wp_scripts->print_code; |
|
753 echo "/* ]]> */\n"; |
|
754 echo "</script>\n"; |
|
755 } |
|
756 |
|
757 $concat = str_split( $concat, 128 ); |
|
758 $concat = 'load%5B%5D=' . implode( '&load%5B%5D=', $concat ); |
|
759 |
|
760 $src = $wp_scripts->base_url . "/wp-admin/load-scripts.php?c={$zip}&" . $concat . '&ver=' . $wp_scripts->default_version; |
|
761 echo "<script type='text/javascript' src='" . esc_attr($src) . "'></script>\n"; |
|
762 } |
|
763 |
|
764 if ( !empty($wp_scripts->print_html) ) |
|
765 echo $wp_scripts->print_html; |
|
766 } |
|
767 |
|
768 /** |
|
769 * Prints the script queue in the HTML head on the front end. |
|
770 * |
|
771 * Postpones the scripts that were queued for the footer. |
|
772 * wp_print_footer_scripts() is called in the footer to print these scripts. |
|
773 * |
|
774 * @since 2.8 |
|
775 */ |
|
776 function wp_print_head_scripts() { |
|
777 if ( ! did_action('wp_print_scripts') ) |
|
778 do_action('wp_print_scripts'); |
|
779 |
|
780 global $wp_scripts; |
|
781 |
|
782 if ( !is_a($wp_scripts, 'WP_Scripts') ) |
|
783 return array(); // no need to run if nothing is queued |
|
784 |
|
785 return print_head_scripts(); |
|
786 } |
|
787 |
|
788 /** |
|
789 * Private, for use in *_footer_scripts hooks |
|
790 * |
|
791 * @since 3.3.0 |
|
792 */ |
|
793 function _wp_footer_scripts() { |
|
794 print_late_styles(); |
|
795 print_footer_scripts(); |
|
796 } |
|
797 |
|
798 /** |
|
799 * Hooks to print the scripts and styles in the footer. |
|
800 * |
|
801 * @since 2.8 |
|
802 */ |
|
803 function wp_print_footer_scripts() { |
|
804 do_action('wp_print_footer_scripts'); |
|
805 } |
|
806 |
|
807 /** |
|
808 * Wrapper for do_action('wp_enqueue_scripts') |
|
809 * |
|
810 * Allows plugins to queue scripts for the front end using wp_enqueue_script(). |
|
811 * Runs first in wp_head() where all is_home(), is_page(), etc. functions are available. |
|
812 * |
|
813 * @since 2.8 |
|
814 */ |
|
815 function wp_enqueue_scripts() { |
|
816 do_action('wp_enqueue_scripts'); |
|
817 } |
|
818 |
|
819 /** |
|
820 * Prints the styles queue in the HTML head on admin pages. |
|
821 * |
|
822 * @since 2.8 |
|
823 */ |
|
824 function print_admin_styles() { |
|
825 global $wp_styles, $concatenate_scripts, $compress_css; |
|
826 |
|
827 if ( !is_a($wp_styles, 'WP_Styles') ) |
|
828 $wp_styles = new WP_Styles(); |
|
829 |
|
830 script_concat_settings(); |
|
831 $wp_styles->do_concat = $concatenate_scripts; |
|
832 $zip = $compress_css ? 1 : 0; |
|
833 if ( $zip && defined('ENFORCE_GZIP') && ENFORCE_GZIP ) |
|
834 $zip = 'gzip'; |
|
835 |
|
836 $wp_styles->do_items(false); |
|
837 |
|
838 if ( apply_filters('print_admin_styles', true) ) |
|
839 _print_styles(); |
|
840 |
|
841 $wp_styles->reset(); |
|
842 return $wp_styles->done; |
|
843 } |
|
844 |
|
845 /** |
|
846 * Prints the styles that were queued too late for the HTML head. |
|
847 * |
|
848 * @since 3.3.0 |
|
849 */ |
|
850 function print_late_styles() { |
|
851 global $wp_styles, $concatenate_scripts; |
|
852 |
|
853 if ( !is_a($wp_styles, 'WP_Styles') ) |
|
854 return; |
|
855 |
|
856 $wp_styles->do_concat = $concatenate_scripts; |
|
857 $wp_styles->do_footer_items(); |
|
858 |
|
859 if ( apply_filters('print_late_styles', true) ) |
|
860 _print_styles(); |
|
861 |
|
862 $wp_styles->reset(); |
|
863 return $wp_styles->done; |
|
864 } |
|
865 |
|
866 /** |
|
867 * @internal use |
|
868 */ |
|
869 function _print_styles() { |
|
870 global $wp_styles, $compress_css; |
|
871 |
|
872 $zip = $compress_css ? 1 : 0; |
|
873 if ( $zip && defined('ENFORCE_GZIP') && ENFORCE_GZIP ) |
|
874 $zip = 'gzip'; |
|
875 |
|
876 if ( !empty($wp_styles->concat) ) { |
|
877 $dir = $wp_styles->text_direction; |
|
878 $ver = $wp_styles->default_version; |
|
879 $href = $wp_styles->base_url . "/wp-admin/load-styles.php?c={$zip}&dir={$dir}&load=" . trim($wp_styles->concat, ', ') . '&ver=' . $ver; |
|
880 echo "<link rel='stylesheet' href='" . esc_attr($href) . "' type='text/css' media='all' />\n"; |
|
881 |
|
882 if ( !empty($wp_styles->print_code) ) { |
|
883 echo "<style type='text/css'>\n"; |
|
884 echo $wp_styles->print_code; |
|
885 echo "\n</style>\n"; |
|
886 } |
|
887 } |
|
888 |
|
889 if ( !empty($wp_styles->print_html) ) |
|
890 echo $wp_styles->print_html; |
|
891 } |
|
892 |
|
893 /** |
|
894 * Determine the concatenation and compression settings for scripts and styles. |
|
895 * |
|
896 * @since 2.8 |
|
897 */ |
|
898 function script_concat_settings() { |
|
899 global $concatenate_scripts, $compress_scripts, $compress_css; |
|
900 |
|
901 $compressed_output = ( ini_get('zlib.output_compression') || 'ob_gzhandler' == ini_get('output_handler') ); |
|
902 |
|
903 if ( ! isset($concatenate_scripts) ) { |
|
904 $concatenate_scripts = defined('CONCATENATE_SCRIPTS') ? CONCATENATE_SCRIPTS : true; |
|
905 if ( ! is_admin() || ( defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ) ) |
|
906 $concatenate_scripts = false; |
|
907 } |
|
908 |
|
909 if ( ! isset($compress_scripts) ) { |
|
910 $compress_scripts = defined('COMPRESS_SCRIPTS') ? COMPRESS_SCRIPTS : true; |
|
911 if ( $compress_scripts && ( ! get_site_option('can_compress_scripts') || $compressed_output ) ) |
|
912 $compress_scripts = false; |
|
913 } |
|
914 |
|
915 if ( ! isset($compress_css) ) { |
|
916 $compress_css = defined('COMPRESS_CSS') ? COMPRESS_CSS : true; |
|
917 if ( $compress_css && ( ! get_site_option('can_compress_scripts') || $compressed_output ) ) |
|
918 $compress_css = false; |
|
919 } |
|
920 } |
|
921 |
|
922 add_action( 'wp_default_scripts', 'wp_default_scripts' ); |
|
923 add_filter( 'wp_print_scripts', 'wp_just_in_time_script_localization' ); |
|
924 add_filter( 'print_scripts_array', 'wp_prototype_before_jquery' ); |
|
925 |
|
926 add_action( 'wp_default_styles', 'wp_default_styles' ); |
|
927 add_filter( 'style_loader_src', 'wp_style_loader_src', 10, 2 ); |