PageRenderTime 48ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 1ms

/wp-includes/script-loader.php

https://bitbucket.org/julianelve/vendor-wordpress
PHP | 872 lines | 542 code | 161 blank | 169 comment | 93 complexity | 5526cefb8c571e040a2b1504e5bb6a4e MD5 | raw file
Possible License(s): AGPL-1.0, LGPL-2.1, GPL-2.0
  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. /** BackPress: WordPress Dependencies Class */
  24. require( ABSPATH . WPINC . '/class.wp-dependencies.php' );
  25. /** BackPress: WordPress Scripts Class */
  26. require( ABSPATH . WPINC . '/class.wp-scripts.php' );
  27. /** BackPress: WordPress Scripts Functions */
  28. require( ABSPATH . WPINC . '/functions.wp-scripts.php' );
  29. /** BackPress: WordPress Styles Class */
  30. require( ABSPATH . WPINC . '/class.wp-styles.php' );
  31. /** BackPress: WordPress Styles Functions */
  32. require( ABSPATH . WPINC . '/functions.wp-styles.php' );
  33. /**
  34. * Register all WordPress scripts.
  35. *
  36. * Localizes some of them.
  37. * args order: $scripts->add( 'handle', 'url', 'dependencies', 'query-string', 1 );
  38. * when last arg === 1 queues the script for the footer
  39. *
  40. * @since 2.6.0
  41. *
  42. * @param object $scripts WP_Scripts object.
  43. */
  44. function wp_default_scripts( &$scripts ) {
  45. if ( !$guessurl = site_url() )
  46. $guessurl = wp_guess_url();
  47. $scripts->base_url = $guessurl;
  48. $scripts->content_url = defined('WP_CONTENT_URL')? WP_CONTENT_URL : '';
  49. $scripts->default_version = get_bloginfo( 'version' );
  50. $scripts->default_dirs = array('/wp-admin/js/', '/wp-includes/js/');
  51. $suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
  52. $scripts->add( 'utils', "/wp-includes/js/utils$suffix.js" );
  53. did_action( 'init' ) && $scripts->localize( 'utils', 'userSettings', array(
  54. 'url' => (string) SITECOOKIEPATH,
  55. 'uid' => (string) get_current_user_id(),
  56. 'time' => (string) time(),
  57. ) );
  58. $scripts->add( 'common', "/wp-admin/js/common$suffix.js", array('jquery', 'hoverIntent', 'utils'), false, 1 );
  59. did_action( 'init' ) && $scripts->localize( 'common', 'commonL10n', array(
  60. 'warnDelete' => __("You are about to permanently delete the selected items.\n 'Cancel' to stop, 'OK' to delete.")
  61. ) );
  62. $scripts->add( 'sack', "/wp-includes/js/tw-sack$suffix.js", array(), '1.6.1', 1 );
  63. $scripts->add( 'quicktags', "/wp-includes/js/quicktags$suffix.js", array(), false, 1 );
  64. did_action( 'init' ) && $scripts->localize( 'quicktags', 'quicktagsL10n', array(
  65. 'wordLookup' => __('Enter a word to look up:'),
  66. 'dictionaryLookup' => esc_attr(__('Dictionary lookup')),
  67. 'lookup' => esc_attr(__('lookup')),
  68. 'closeAllOpenTags' => esc_attr(__('Close all open tags')),
  69. 'closeTags' => esc_attr(__('close tags')),
  70. 'enterURL' => __('Enter the URL'),
  71. 'enterImageURL' => __('Enter the URL of the image'),
  72. 'enterImageDescription' => __('Enter a description of the image'),
  73. 'fullscreen' => __('fullscreen'),
  74. 'toggleFullscreen' => esc_attr( __('Toggle fullscreen mode') ),
  75. 'textdirection' => esc_attr( __('text direction') ),
  76. 'toggleTextdirection' => esc_attr( __('Toggle Editor Text Direction') )
  77. ) );
  78. $scripts->add( 'colorpicker', "/wp-includes/js/colorpicker$suffix.js", array('prototype'), '3517m' );
  79. $scripts->add( 'editor', "/wp-admin/js/editor$suffix.js", array('utils','jquery'), false, 1 );
  80. $scripts->add( 'wp-fullscreen', "/wp-admin/js/wp-fullscreen$suffix.js", array('jquery'), false, 1 );
  81. $scripts->add( 'wp-ajax-response', "/wp-includes/js/wp-ajax-response$suffix.js", array('jquery'), false, 1 );
  82. did_action( 'init' ) && $scripts->localize( 'wp-ajax-response', 'wpAjax', array(
  83. 'noPerm' => __('You do not have permission to do that.'),
  84. 'broken' => __('An unidentified error has occurred.')
  85. ) );
  86. $scripts->add( 'wp-pointer', "/wp-includes/js/wp-pointer$suffix.js", array( 'jquery-ui-widget', 'jquery-ui-position' ), '20111129a', 1 );
  87. did_action( 'init' ) && $scripts->localize( 'wp-pointer', 'wpPointerL10n', array(
  88. 'dismiss' => __('Dismiss'),
  89. ) );
  90. $scripts->add( 'autosave', "/wp-includes/js/autosave$suffix.js", array('schedule', 'wp-ajax-response'), false, 1 );
  91. $scripts->add( 'wp-lists', "/wp-includes/js/wp-lists$suffix.js", array( 'wp-ajax-response', 'jquery-color' ), false, 1 );
  92. // WordPress no longer uses or bundles Prototype or script.aculo.us. These are now pulled from an external source.
  93. $scripts->add( 'prototype', '//ajax.googleapis.com/ajax/libs/prototype/1.7.1.0/prototype.js', array(), '1.7.1');
  94. $scripts->add( 'scriptaculous-root', '//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/scriptaculous.js', array('prototype'), '1.9.0');
  95. $scripts->add( 'scriptaculous-builder', '//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/builder.js', array('scriptaculous-root'), '1.9.0');
  96. $scripts->add( 'scriptaculous-dragdrop', '//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/dragdrop.js', array('scriptaculous-builder', 'scriptaculous-effects'), '1.9.0');
  97. $scripts->add( 'scriptaculous-effects', '//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/effects.js', array('scriptaculous-root'), '1.9.0');
  98. $scripts->add( 'scriptaculous-slider', '//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/slider.js', array('scriptaculous-effects'), '1.9.0');
  99. $scripts->add( 'scriptaculous-sound', '//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/sound.js', array( 'scriptaculous-root' ), '1.9.0' );
  100. $scripts->add( 'scriptaculous-controls', '//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/controls.js', array('scriptaculous-root'), '1.9.0');
  101. $scripts->add( 'scriptaculous', false, array('scriptaculous-dragdrop', 'scriptaculous-slider', 'scriptaculous-controls') );
  102. // not used in core, replaced by Jcrop.js
  103. $scripts->add( 'cropper', '/wp-includes/js/crop/cropper.js', array('scriptaculous-dragdrop') );
  104. $scripts->add( 'jquery', '/wp-includes/js/jquery/jquery.js', array(), '1.8.3' );
  105. // full jQuery UI
  106. $scripts->add( 'jquery-ui-core', '/wp-includes/js/jquery/ui/jquery.ui.core.min.js', array('jquery'), '1.9.2', 1 );
  107. $scripts->add( 'jquery-effects-core', '/wp-includes/js/jquery/ui/jquery.ui.effect.min.js', array('jquery'), '1.9.2', 1 );
  108. $scripts->add( 'jquery-effects-blind', '/wp-includes/js/jquery/ui/jquery.ui.effect-blind.min.js', array('jquery-effects-core'), '1.9.2', 1 );
  109. $scripts->add( 'jquery-effects-bounce', '/wp-includes/js/jquery/ui/jquery.ui.effect-bounce.min.js', array('jquery-effects-core'), '1.9.2', 1 );
  110. $scripts->add( 'jquery-effects-clip', '/wp-includes/js/jquery/ui/jquery.ui.effect-clip.min.js', array('jquery-effects-core'), '1.9.2', 1 );
  111. $scripts->add( 'jquery-effects-drop', '/wp-includes/js/jquery/ui/jquery.ui.effect-drop.min.js', array('jquery-effects-core'), '1.9.2', 1 );
  112. $scripts->add( 'jquery-effects-explode', '/wp-includes/js/jquery/ui/jquery.ui.effect-explode.min.js', array('jquery-effects-core'), '1.9.2', 1 );
  113. $scripts->add( 'jquery-effects-fade', '/wp-includes/js/jquery/ui/jquery.ui.effect-fade.min.js', array('jquery-effects-core'), '1.9.2', 1 );
  114. $scripts->add( 'jquery-effects-fold', '/wp-includes/js/jquery/ui/jquery.ui.effect-fold.min.js', array('jquery-effects-core'), '1.9.2', 1 );
  115. $scripts->add( 'jquery-effects-highlight', '/wp-includes/js/jquery/ui/jquery.ui.effect-highlight.min.js', array('jquery-effects-core'), '1.9.2', 1 );
  116. $scripts->add( 'jquery-effects-pulsate', '/wp-includes/js/jquery/ui/jquery.ui.effect-pulsate.min.js', array('jquery-effects-core'), '1.9.2', 1 );
  117. $scripts->add( 'jquery-effects-scale', '/wp-includes/js/jquery/ui/jquery.ui.effect-scale.min.js', array('jquery-effects-core'), '1.9.2', 1 );
  118. $scripts->add( 'jquery-effects-shake', '/wp-includes/js/jquery/ui/jquery.ui.effect-shake.min.js', array('jquery-effects-core'), '1.9.2', 1 );
  119. $scripts->add( 'jquery-effects-slide', '/wp-includes/js/jquery/ui/jquery.ui.effect-slide.min.js', array('jquery-effects-core'), '1.9.2', 1 );
  120. $scripts->add( 'jquery-effects-transfer', '/wp-includes/js/jquery/ui/jquery.ui.effect-transfer.min.js', array('jquery-effects-core'), '1.9.2', 1 );
  121. $scripts->add( 'jquery-ui-accordion', '/wp-includes/js/jquery/ui/jquery.ui.accordion.min.js', array('jquery-ui-core', 'jquery-ui-widget'), '1.9.2', 1 );
  122. $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.9.2', 1 );
  123. $scripts->add( 'jquery-ui-button', '/wp-includes/js/jquery/ui/jquery.ui.button.min.js', array('jquery-ui-core', 'jquery-ui-widget'), '1.9.2', 1 );
  124. $scripts->add( 'jquery-ui-datepicker', '/wp-includes/js/jquery/ui/jquery.ui.datepicker.min.js', array('jquery-ui-core'), '1.9.2', 1 );
  125. $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.9.2', 1 );
  126. $scripts->add( 'jquery-ui-draggable', '/wp-includes/js/jquery/ui/jquery.ui.draggable.min.js', array('jquery-ui-core', 'jquery-ui-mouse'), '1.9.2', 1 );
  127. $scripts->add( 'jquery-ui-droppable', '/wp-includes/js/jquery/ui/jquery.ui.droppable.min.js', array('jquery-ui-draggable'), '1.9.2', 1 );
  128. $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.9.2', 1 );
  129. $scripts->add( 'jquery-ui-mouse', '/wp-includes/js/jquery/ui/jquery.ui.mouse.min.js', array('jquery-ui-widget'), '1.9.2', 1 );
  130. $scripts->add( 'jquery-ui-position', '/wp-includes/js/jquery/ui/jquery.ui.position.min.js', array('jquery'), '1.9.2', 1 );
  131. $scripts->add( 'jquery-ui-progressbar', '/wp-includes/js/jquery/ui/jquery.ui.progressbar.min.js', array('jquery-ui-widget'), '1.9.2', 1 );
  132. $scripts->add( 'jquery-ui-resizable', '/wp-includes/js/jquery/ui/jquery.ui.resizable.min.js', array('jquery-ui-core', 'jquery-ui-mouse'), '1.9.2', 1 );
  133. $scripts->add( 'jquery-ui-selectable', '/wp-includes/js/jquery/ui/jquery.ui.selectable.min.js', array('jquery-ui-core', 'jquery-ui-mouse'), '1.9.2', 1 );
  134. $scripts->add( 'jquery-ui-slider', '/wp-includes/js/jquery/ui/jquery.ui.slider.min.js', array('jquery-ui-core', 'jquery-ui-mouse'), '1.9.2', 1 );
  135. $scripts->add( 'jquery-ui-sortable', '/wp-includes/js/jquery/ui/jquery.ui.sortable.min.js', array('jquery-ui-core', 'jquery-ui-mouse'), '1.9.2', 1 );
  136. $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.9.2', 1 );
  137. $scripts->add( 'jquery-ui-tabs', '/wp-includes/js/jquery/ui/jquery.ui.tabs.min.js', array('jquery-ui-core', 'jquery-ui-widget'), '1.9.2', 1 );
  138. $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.9.2', 1 );
  139. $scripts->add( 'jquery-ui-widget', '/wp-includes/js/jquery/ui/jquery.ui.widget.min.js', array('jquery'), '1.9.2', 1 );
  140. // deprecated, not used in core, most functionality is included in jQuery 1.3
  141. $scripts->add( 'jquery-form', "/wp-includes/js/jquery/jquery.form$suffix.js", array('jquery'), '2.73', 1 );
  142. // jQuery plugins
  143. $scripts->add( 'jquery-color', "/wp-includes/js/jquery/jquery.color.min.js", array('jquery'), '2.1.0', 1 );
  144. $scripts->add( 'suggest', "/wp-includes/js/jquery/suggest$suffix.js", array('jquery'), '1.1-20110113', 1 );
  145. $scripts->add( 'schedule', '/wp-includes/js/jquery/jquery.schedule.js', array('jquery'), '20m', 1 );
  146. $scripts->add( 'jquery-query', "/wp-includes/js/jquery/jquery.query.js", array('jquery'), '2.1.7', 1 );
  147. $scripts->add( 'jquery-serialize-object', "/wp-includes/js/jquery/jquery.serialize-object.js", array('jquery'), '0.2', 1 );
  148. $scripts->add( 'jquery-hotkeys', "/wp-includes/js/jquery/jquery.hotkeys$suffix.js", array('jquery'), '0.0.2m', 1 );
  149. $scripts->add( 'jquery-table-hotkeys', "/wp-includes/js/jquery/jquery.table-hotkeys$suffix.js", array('jquery', 'jquery-hotkeys'), false, 1 );
  150. $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 );
  151. $scripts->add( 'jquery-masonry', "/wp-includes/js/jquery/jquery.masonry.min.js", array('jquery'), '2.1.05', 1 );
  152. $scripts->add( 'thickbox', "/wp-includes/js/thickbox/thickbox.js", array('jquery'), '3.1-20121105', 1 );
  153. did_action( 'init' ) && $scripts->localize( 'thickbox', 'thickboxL10n', array(
  154. 'next' => __('Next &gt;'),
  155. 'prev' => __('&lt; Prev'),
  156. 'image' => __('Image'),
  157. 'of' => __('of'),
  158. 'close' => __('Close'),
  159. 'noiframes' => __('This feature requires inline frames. You have iframes disabled or your browser does not support them.'),
  160. 'loadingAnimation' => includes_url('js/thickbox/loadingAnimation.gif'),
  161. 'closeImage' => includes_url('js/thickbox/tb-close.png')
  162. ) );
  163. $scripts->add( 'jcrop', "/wp-includes/js/jcrop/jquery.Jcrop.min.js", array('jquery'), '0.9.10');
  164. $scripts->add( 'swfobject', "/wp-includes/js/swfobject.js", array(), '2.2-20120417');
  165. // common bits for both uploaders
  166. $max_upload_size = ( (int) ( $max_up = @ini_get('upload_max_filesize') ) < (int) ( $max_post = @ini_get('post_max_size') ) ) ? $max_up : $max_post;
  167. if ( empty($max_upload_size) )
  168. $max_upload_size = __('not configured');
  169. // error message for both plupload and swfupload
  170. $uploader_l10n = array(
  171. 'queue_limit_exceeded' => __('You have attempted to queue too many files.'),
  172. 'file_exceeds_size_limit' => __('%s exceeds the maximum upload size for this site.'),
  173. 'zero_byte_file' => __('This file is empty. Please try another.'),
  174. 'invalid_filetype' => __('This file type is not allowed. Please try another.'),
  175. 'not_an_image' => __('This file is not an image. Please try another.'),
  176. 'image_memory_exceeded' => __('Memory exceeded. Please try another smaller file.'),
  177. 'image_dimensions_exceeded' => __('This is larger than the maximum size. Please try another.'),
  178. 'default_error' => __('An error occurred in the upload. Please try again later.'),
  179. 'missing_upload_url' => __('There was a configuration error. Please contact the server administrator.'),
  180. 'upload_limit_exceeded' => __('You may only upload 1 file.'),
  181. 'http_error' => __('HTTP error.'),
  182. 'upload_failed' => __('Upload failed.'),
  183. 'big_upload_failed' => __('Please try uploading this file with the %1$sbrowser uploader%2$s.'),
  184. 'big_upload_queued' => __('%s exceeds the maximum upload size for the multi-file uploader when used in your browser.'),
  185. 'io_error' => __('IO error.'),
  186. 'security_error' => __('Security error.'),
  187. 'file_cancelled' => __('File canceled.'),
  188. 'upload_stopped' => __('Upload stopped.'),
  189. 'dismiss' => __('Dismiss'),
  190. 'crunching' => __('Crunching&hellip;'),
  191. 'deleted' => __('moved to the trash.'),
  192. 'error_uploading' => __('&#8220;%s&#8221; has failed to upload.')
  193. );
  194. $scripts->add( 'plupload', '/wp-includes/js/plupload/plupload.js', array(), '1.5.5' );
  195. $scripts->add( 'plupload-html5', '/wp-includes/js/plupload/plupload.html5.js', array('plupload'), '1.5.5' );
  196. $scripts->add( 'plupload-flash', '/wp-includes/js/plupload/plupload.flash.js', array('plupload'), '1.5.5' );
  197. $scripts->add( 'plupload-silverlight', '/wp-includes/js/plupload/plupload.silverlight.js', array('plupload'), '1.5.5' );
  198. $scripts->add( 'plupload-html4', '/wp-includes/js/plupload/plupload.html4.js', array('plupload'), '1.5.5' );
  199. // cannot use the plupload.full.js, as it loads browserplus init JS from Yahoo
  200. $scripts->add( 'plupload-all', false, array('plupload', 'plupload-html5', 'plupload-flash', 'plupload-silverlight', 'plupload-html4'), '1.5.5' );
  201. $scripts->add( 'plupload-handlers', "/wp-includes/js/plupload/handlers$suffix.js", array('plupload-all', 'jquery') );
  202. did_action( 'init' ) && $scripts->localize( 'plupload-handlers', 'pluploadL10n', $uploader_l10n );
  203. $scripts->add( 'wp-plupload', "/wp-includes/js/plupload/wp-plupload$suffix.js", array('plupload-all', 'jquery', 'json2', 'media-models'), false, 1 );
  204. did_action( 'init' ) && $scripts->localize( 'wp-plupload', 'pluploadL10n', $uploader_l10n );
  205. // keep 'swfupload' for back-compat.
  206. $scripts->add( 'swfupload', '/wp-includes/js/swfupload/swfupload.js', array(), '2201-20110113');
  207. $scripts->add( 'swfupload-swfobject', '/wp-includes/js/swfupload/plugins/swfupload.swfobject.js', array('swfupload', 'swfobject'), '2201a');
  208. $scripts->add( 'swfupload-queue', '/wp-includes/js/swfupload/plugins/swfupload.queue.js', array('swfupload'), '2201');
  209. $scripts->add( 'swfupload-speed', '/wp-includes/js/swfupload/plugins/swfupload.speed.js', array('swfupload'), '2201');
  210. if ( defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ) {
  211. // queue all SWFUpload scripts that are used by default
  212. $scripts->add( 'swfupload-all', false, array('swfupload', 'swfupload-swfobject', 'swfupload-queue'), '2201');
  213. } else {
  214. $scripts->add( 'swfupload-all', '/wp-includes/js/swfupload/swfupload-all.js', array(), '2201a');
  215. }
  216. $scripts->add( 'swfupload-handlers', "/wp-includes/js/swfupload/handlers$suffix.js", array('swfupload-all', 'jquery'), '2201-20110524');
  217. did_action( 'init' ) && $scripts->localize( 'swfupload-handlers', 'swfuploadL10n', $uploader_l10n );
  218. $scripts->add( 'comment-reply', "/wp-includes/js/comment-reply$suffix.js" );
  219. $scripts->add( 'json2', "/wp-includes/js/json2$suffix.js", array(), '2011-02-23');
  220. $scripts->add( 'underscore', '/wp-includes/js/underscore.min.js', array(), '1.4.0', 1 );
  221. $scripts->add( 'backbone', '/wp-includes/js/backbone.min.js', array('underscore','jquery'), '0.9.2', 1 );
  222. $scripts->add( 'imgareaselect', "/wp-includes/js/imgareaselect/jquery.imgareaselect$suffix.js", array('jquery'), '0.9.8', 1 );
  223. $scripts->add( 'password-strength-meter', "/wp-admin/js/password-strength-meter$suffix.js", array('jquery'), false, 1 );
  224. did_action( 'init' ) && $scripts->localize( 'password-strength-meter', 'pwsL10n', array(
  225. 'empty' => __('Strength indicator'),
  226. 'short' => __('Very weak'),
  227. 'bad' => __('Weak'),
  228. /* translators: password strength */
  229. 'good' => _x('Medium', 'password strength'),
  230. 'strong' => __('Strong'),
  231. 'mismatch' => __('Mismatch')
  232. ) );
  233. $scripts->add( 'user-profile', "/wp-admin/js/user-profile$suffix.js", array( 'jquery', 'password-strength-meter' ), false, 1 );
  234. $scripts->add( 'user-suggest', "/wp-admin/js/user-suggest$suffix.js", array( 'jquery-ui-autocomplete' ), false, 1 );
  235. $scripts->add( 'admin-bar', "/wp-includes/js/admin-bar$suffix.js", array(), false, 1 );
  236. $scripts->add( 'wplink', "/wp-includes/js/wplink$suffix.js", array( 'jquery', 'wpdialogs' ), false, 1 );
  237. did_action( 'init' ) && $scripts->localize( 'wplink', 'wpLinkL10n', array(
  238. 'title' => __('Insert/edit link'),
  239. 'update' => __('Update'),
  240. 'save' => __('Add Link'),
  241. 'noTitle' => __('(no title)'),
  242. 'noMatchesFound' => __('No matches found.')
  243. ) );
  244. $scripts->add( 'wpdialogs', "/wp-includes/js/tinymce/plugins/wpdialogs/js/wpdialog$suffix.js", array( 'jquery-ui-dialog' ), false, 1 );
  245. $scripts->add( 'wpdialogs-popup', "/wp-includes/js/tinymce/plugins/wpdialogs/js/popup$suffix.js", array( 'wpdialogs' ), false, 1 );
  246. $scripts->add( 'word-count', "/wp-admin/js/word-count$suffix.js", array( 'jquery' ), false, 1 );
  247. did_action( 'init' ) && $scripts->localize( 'word-count', 'wordCountL10n', array(
  248. /* translators: If your word count is based on single characters (East Asian characters),
  249. enter 'characters'. Otherwise, enter 'words'. Do not translate into your own language. */
  250. 'type' => 'characters' == _x( 'words', 'word count: words or characters?' ) ? 'c' : 'w',
  251. ) );
  252. $scripts->add( 'media-upload', "/wp-admin/js/media-upload$suffix.js", array( 'thickbox', 'shortcode' ), false, 1 );
  253. $scripts->add( 'hoverIntent', "/wp-includes/js/hoverIntent$suffix.js", array('jquery'), 'r6', 1 );
  254. $scripts->add( 'customize-base', "/wp-includes/js/customize-base$suffix.js", array( 'jquery', 'json2' ), false, 1 );
  255. $scripts->add( 'customize-loader', "/wp-includes/js/customize-loader$suffix.js", array( 'customize-base' ), false, 1 );
  256. $scripts->add( 'customize-preview', "/wp-includes/js/customize-preview$suffix.js", array( 'customize-base' ), false, 1 );
  257. $scripts->add( 'customize-controls', "/wp-admin/js/customize-controls$suffix.js", array( 'customize-base' ), false, 1 );
  258. did_action( 'init' ) && $scripts->localize( 'customize-controls', '_wpCustomizeControlsL10n', array(
  259. 'activate' => __( 'Save &amp; Activate' ),
  260. 'save' => __( 'Save &amp; Publish' ),
  261. 'saved' => __( 'Saved' ),
  262. 'cancel' => __( 'Cancel' ),
  263. 'close' => __( 'Close' ),
  264. 'cheatin' => __( 'Cheatin&#8217; uh?' ),
  265. // Used for overriding the file types allowed in plupload.
  266. 'allowedFiles' => __( 'Allowed Files' ),
  267. ) );
  268. $scripts->add( 'shortcode', "/wp-includes/js/shortcode$suffix.js", array( 'underscore' ), false, 1 );
  269. $scripts->add( 'media-models', "/wp-includes/js/media-models$suffix.js", array( 'backbone', 'jquery' ), false, 1 );
  270. did_action( 'init' ) && $scripts->localize( 'media-models', '_wpMediaModelsL10n', array(
  271. 'settings' => array(
  272. 'ajaxurl' => admin_url( 'admin-ajax.php', 'relative' ),
  273. 'post' => array( 'id' => 0 ),
  274. ),
  275. ) );
  276. // To enqueue media-views or media-editor, call wp_enqueue_media().
  277. // Both rely on numerous settings, styles, and templates to operate correctly.
  278. $scripts->add( 'media-views', "/wp-includes/js/media-views$suffix.js", array( 'utils', 'media-models', 'wp-plupload', 'jquery-ui-sortable' ), false, 1 );
  279. $scripts->add( 'media-editor', "/wp-includes/js/media-editor$suffix.js", array( 'shortcode', 'media-views' ), false, 1 );
  280. $scripts->add( 'mce-view', "/wp-includes/js/mce-view$suffix.js", array( 'shortcode', 'media-models' ), false, 1 );
  281. if ( is_admin() ) {
  282. $scripts->add( 'ajaxcat', "/wp-admin/js/cat$suffix.js", array( 'wp-lists' ) );
  283. $scripts->add_data( 'ajaxcat', 'group', 1 );
  284. did_action( 'init' ) && $scripts->localize( 'ajaxcat', 'catL10n', array(
  285. 'add' => esc_attr(__('Add')),
  286. 'how' => __('Separate multiple categories with commas.')
  287. ) );
  288. $scripts->add( 'admin-categories', "/wp-admin/js/categories$suffix.js", array('wp-lists'), false, 1 );
  289. $scripts->add( 'admin-tags', "/wp-admin/js/tags$suffix.js", array('jquery', 'wp-ajax-response'), false, 1 );
  290. did_action( 'init' ) && $scripts->localize( 'admin-tags', 'tagsl10n', array(
  291. 'noPerm' => __('You do not have permission to do that.'),
  292. 'broken' => __('An unidentified error has occurred.')
  293. ));
  294. $scripts->add( 'admin-custom-fields', "/wp-admin/js/custom-fields$suffix.js", array('wp-lists'), false, 1 );
  295. $scripts->add( 'admin-comments', "/wp-admin/js/edit-comments$suffix.js", array('wp-lists', 'quicktags', 'jquery-query'), false, 1 );
  296. did_action( 'init' ) && $scripts->localize( 'admin-comments', 'adminCommentsL10n', array(
  297. 'hotkeys_highlight_first' => isset($_GET['hotkeys_highlight_first']),
  298. 'hotkeys_highlight_last' => isset($_GET['hotkeys_highlight_last']),
  299. 'replyApprove' => __( 'Approve and Reply' ),
  300. 'reply' => __( 'Reply' )
  301. ) );
  302. $scripts->add( 'xfn', "/wp-admin/js/xfn$suffix.js", array('jquery'), false, 1 );
  303. $scripts->add( 'postbox', "/wp-admin/js/postbox$suffix.js", array('jquery-ui-sortable'), false, 1 );
  304. $scripts->add( 'post', "/wp-admin/js/post$suffix.js", array('suggest', 'wp-lists', 'postbox'), false, 1 );
  305. did_action( 'init' ) && $scripts->localize( 'post', 'postL10n', array(
  306. 'ok' => __('OK'),
  307. 'cancel' => __('Cancel'),
  308. 'publishOn' => __('Publish on:'),
  309. 'publishOnFuture' => __('Schedule for:'),
  310. 'publishOnPast' => __('Published on:'),
  311. 'showcomm' => __('Show more comments'),
  312. 'endcomm' => __('No more comments found.'),
  313. 'publish' => __('Publish'),
  314. 'schedule' => __('Schedule'),
  315. 'update' => __('Update'),
  316. 'savePending' => __('Save as Pending'),
  317. 'saveDraft' => __('Save Draft'),
  318. 'private' => __('Private'),
  319. 'public' => __('Public'),
  320. 'publicSticky' => __('Public, Sticky'),
  321. 'password' => __('Password Protected'),
  322. 'privatelyPublished' => __('Privately Published'),
  323. 'published' => __('Published'),
  324. 'comma' => _x( ',', 'tag delimiter' ),
  325. ) );
  326. $scripts->add( 'link', "/wp-admin/js/link$suffix.js", array( 'wp-lists', 'postbox' ), false, 1 );
  327. $scripts->add( 'comment', "/wp-admin/js/comment$suffix.js", array( 'jquery', 'postbox' ) );
  328. $scripts->add_data( 'comment', 'group', 1 );
  329. did_action( 'init' ) && $scripts->localize( 'comment', 'commentL10n', array(
  330. 'submittedOn' => __('Submitted on:')
  331. ) );
  332. $scripts->add( 'admin-gallery', "/wp-admin/js/gallery$suffix.js", array( 'jquery-ui-sortable' ) );
  333. $scripts->add( 'admin-widgets', "/wp-admin/js/widgets$suffix.js", array( 'jquery-ui-sortable', 'jquery-ui-draggable', 'jquery-ui-droppable' ), false, 1 );
  334. $scripts->add( 'theme', "/wp-admin/js/theme$suffix.js", array( 'jquery' ), false, 1 );
  335. // @todo: Core no longer uses theme-preview.js. Remove?
  336. $scripts->add( 'theme-preview', "/wp-admin/js/theme-preview$suffix.js", array( 'thickbox', 'jquery' ), false, 1 );
  337. $scripts->add( 'inline-edit-post', "/wp-admin/js/inline-edit-post$suffix.js", array( 'jquery', 'suggest' ), false, 1 );
  338. did_action( 'init' ) && $scripts->localize( 'inline-edit-post', 'inlineEditL10n', array(
  339. 'error' => __('Error while saving the changes.'),
  340. 'ntdeltitle' => __('Remove From Bulk Edit'),
  341. 'notitle' => __('(no title)'),
  342. 'comma' => _x( ',', 'tag delimiter' ),
  343. ) );
  344. $scripts->add( 'inline-edit-tax', "/wp-admin/js/inline-edit-tax$suffix.js", array( 'jquery' ), false, 1 );
  345. did_action( 'init' ) && $scripts->localize( 'inline-edit-tax', 'inlineEditL10n', array(
  346. 'error' => __('Error while saving the changes.')
  347. ) );
  348. $scripts->add( 'plugin-install', "/wp-admin/js/plugin-install$suffix.js", array( 'jquery', 'thickbox' ), false, 1 );
  349. did_action( 'init' ) && $scripts->localize( 'plugin-install', 'plugininstallL10n', array(
  350. 'plugin_information' => __('Plugin Information:'),
  351. 'ays' => __('Are you sure you want to install this plugin?')
  352. ) );
  353. $scripts->add( 'farbtastic', '/wp-admin/js/farbtastic.js', array('jquery'), '1.2' );
  354. $scripts->add( 'iris', '/wp-admin/js/iris.min.js', array( 'jquery-ui-draggable', 'jquery-ui-slider', 'jquery-touch-punch' ), false, 1 );
  355. $scripts->add( 'wp-color-picker', "/wp-admin/js/color-picker$suffix.js", array( 'iris' ), false, 1 );
  356. did_action( 'init' ) && $scripts->localize( 'wp-color-picker', 'wpColorPickerL10n', array(
  357. 'clear' => __( 'Clear' ),
  358. 'defaultString' => __( 'Default' ),
  359. 'pick' => __( 'Select Color' ),
  360. 'current' => __( 'Current Color' ),
  361. ) );
  362. $scripts->add( 'dashboard', "/wp-admin/js/dashboard$suffix.js", array( 'jquery', 'admin-comments', 'postbox' ), false, 1 );
  363. $scripts->add( 'list-revisions', "/wp-includes/js/wp-list-revisions$suffix.js" );
  364. $scripts->add( 'media', "/wp-admin/js/media$suffix.js", array( 'jquery-ui-draggable' ), false, 1 );
  365. $scripts->add( 'image-edit', "/wp-admin/js/image-edit$suffix.js", array('jquery', 'json2', 'imgareaselect'), false, 1 );
  366. did_action( 'init' ) && $scripts->localize( 'image-edit', 'imageEditL10n', array(
  367. 'error' => __( 'Could not load the preview image. Please reload the page and try again.' )
  368. ));
  369. $scripts->add( 'set-post-thumbnail', "/wp-admin/js/set-post-thumbnail$suffix.js", array( 'jquery' ), false, 1 );
  370. did_action( 'init' ) && $scripts->localize( 'set-post-thumbnail', 'setPostThumbnailL10n', array(
  371. 'setThumbnail' => __( 'Use as featured image' ),
  372. 'saving' => __( 'Saving...' ),
  373. 'error' => __( 'Could not set that as the thumbnail image. Try a different attachment.' ),
  374. 'done' => __( 'Done' )
  375. ) );
  376. // Navigation Menus
  377. $scripts->add( 'nav-menu', "/wp-admin/js/nav-menu$suffix.js", array( 'jquery-ui-sortable', 'jquery-ui-draggable', 'jquery-ui-droppable', 'wp-lists', 'postbox' ) );
  378. did_action( 'init' ) && $scripts->localize( 'nav-menu', 'navMenuL10n', array(
  379. 'noResultsFound' => _x('No results found.', 'search results'),
  380. 'warnDeleteMenu' => __( "You are about to permanently delete this menu. \n 'Cancel' to stop, 'OK' to delete." ),
  381. 'saveAlert' => __('The changes you made will be lost if you navigate away from this page.')
  382. ) );
  383. $scripts->add( 'custom-header', "/wp-admin/js/custom-header.js", array( 'jquery-masonry' ), false, 1 );
  384. $scripts->add( 'custom-background', "/wp-admin/js/custom-background$suffix.js", array( 'wp-color-picker', 'media-views' ), false, 1 );
  385. $scripts->add( 'media-gallery', "/wp-admin/js/media-gallery$suffix.js", array('jquery'), false, 1 );
  386. }
  387. }
  388. /**
  389. * Assign default styles to $styles object.
  390. *
  391. * Nothing is returned, because the $styles parameter is passed by reference.
  392. * Meaning that whatever object is passed will be updated without having to
  393. * reassign the variable that was passed back to the same value. This saves
  394. * memory.
  395. *
  396. * Adding default styles is not the only task, it also assigns the base_url
  397. * property, the default version, and text direction for the object.
  398. *
  399. * @since 2.6.0
  400. *
  401. * @param object $styles
  402. */
  403. function wp_default_styles( &$styles ) {
  404. if ( ! $guessurl = site_url() )
  405. $guessurl = wp_guess_url();
  406. $styles->base_url = $guessurl;
  407. $styles->content_url = defined('WP_CONTENT_URL')? WP_CONTENT_URL : '';
  408. $styles->default_version = get_bloginfo( 'version' );
  409. $styles->text_direction = function_exists( 'is_rtl' ) && is_rtl() ? 'rtl' : 'ltr';
  410. $styles->default_dirs = array('/wp-admin/', '/wp-includes/css/');
  411. $suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
  412. $rtl_styles = array( 'wp-admin', 'ie', 'media', 'admin-bar', 'customize-controls', 'media-views', 'wp-color-picker' );
  413. // Any rtl stylesheets that don't have a .min version
  414. $no_suffix = array( 'farbtastic' );
  415. $styles->add( 'wp-admin', "/wp-admin/css/wp-admin$suffix.css" );
  416. $styles->add( 'ie', "/wp-admin/css/ie$suffix.css" );
  417. $styles->add_data( 'ie', 'conditional', 'lte IE 7' );
  418. // Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
  419. $styles->add( 'colors', true, array('wp-admin', 'buttons') );
  420. // do not refer to these directly, the right one is queued by the above "meta" colors handle
  421. $styles->add( 'colors-fresh', "/wp-admin/css/colors-fresh$suffix.css", array('wp-admin', 'buttons') );
  422. $styles->add( 'colors-classic', "/wp-admin/css/colors-classic$suffix.css", array('wp-admin', 'buttons') );
  423. $styles->add( 'media', "/wp-admin/css/media$suffix.css" );
  424. $styles->add( 'install', "/wp-admin/css/install$suffix.css", array('buttons') );
  425. $styles->add( 'thickbox', '/wp-includes/js/thickbox/thickbox.css', array(), '20121105' );
  426. $styles->add( 'farbtastic', '/wp-admin/css/farbtastic.css', array(), '1.3u1' );
  427. $styles->add( 'wp-color-picker', "/wp-admin/css/color-picker$suffix.css" );
  428. $styles->add( 'jcrop', "/wp-includes/js/jcrop/jquery.Jcrop.min.css", array(), '0.9.10' );
  429. $styles->add( 'imgareaselect', '/wp-includes/js/imgareaselect/imgareaselect.css', array(), '0.9.8' );
  430. $styles->add( 'admin-bar', "/wp-includes/css/admin-bar$suffix.css" );
  431. $styles->add( 'wp-jquery-ui-dialog', "/wp-includes/css/jquery-ui-dialog$suffix.css" );
  432. $styles->add( 'editor-buttons', "/wp-includes/css/editor$suffix.css" );
  433. $styles->add( 'wp-pointer', "/wp-includes/css/wp-pointer$suffix.css" );
  434. $styles->add( 'customize-controls', "/wp-admin/css/customize-controls$suffix.css", array( 'wp-admin', 'colors', 'ie' ) );
  435. $styles->add( 'media-views', "/wp-includes/css/media-views$suffix.css", array( 'buttons' ) );
  436. $styles->add( 'buttons', "/wp-includes/css/buttons$suffix.css" );
  437. foreach ( $rtl_styles as $rtl_style ) {
  438. $styles->add_data( $rtl_style, 'rtl', true );
  439. if ( $suffix && ! in_array( $rtl_style, $no_suffix ) )
  440. $styles->add_data( $rtl_style, 'suffix', $suffix );
  441. }
  442. }
  443. /**
  444. * Reorder JavaScript scripts array to place prototype before jQuery.
  445. *
  446. * @since 2.3.1
  447. *
  448. * @param array $js_array JavaScript scripts array
  449. * @return array Reordered array, if needed.
  450. */
  451. function wp_prototype_before_jquery( $js_array ) {
  452. if ( false === $prototype = array_search( 'prototype', $js_array, true ) )
  453. return $js_array;
  454. if ( false === $jquery = array_search( 'jquery', $js_array, true ) )
  455. return $js_array;
  456. if ( $prototype < $jquery )
  457. return $js_array;
  458. unset($js_array[$prototype]);
  459. array_splice( $js_array, $jquery, 0, 'prototype' );
  460. return $js_array;
  461. }
  462. /**
  463. * Load localized data on print rather than initialization.
  464. *
  465. * These localizations require information that may not be loaded even by init.
  466. *
  467. * @since 2.5.0
  468. */
  469. function wp_just_in_time_script_localization() {
  470. wp_localize_script( 'autosave', 'autosaveL10n', array(
  471. 'autosaveInterval' => AUTOSAVE_INTERVAL,
  472. 'savingText' => __('Saving Draft&#8230;'),
  473. 'saveAlert' => __('The changes you made will be lost if you navigate away from this page.')
  474. ) );
  475. }
  476. /**
  477. * Administration Screen CSS for changing the styles.
  478. *
  479. * If installing the 'wp-admin/' directory will be replaced with './'.
  480. *
  481. * The $_wp_admin_css_colors global manages the Administration Screens CSS
  482. * stylesheet that is loaded. The option that is set is 'admin_color' and is the
  483. * color and key for the array. The value for the color key is an object with
  484. * a 'url' parameter that has the URL path to the CSS file.
  485. *
  486. * The query from $src parameter will be appended to the URL that is given from
  487. * the $_wp_admin_css_colors array value URL.
  488. *
  489. * @since 2.6.0
  490. * @uses $_wp_admin_css_colors
  491. *
  492. * @param string $src Source URL.
  493. * @param string $handle Either 'colors' or 'colors-rtl'.
  494. * @return string URL path to CSS stylesheet for Administration Screens.
  495. */
  496. function wp_style_loader_src( $src, $handle ) {
  497. if ( defined('WP_INSTALLING') )
  498. return preg_replace( '#^wp-admin/#', './', $src );
  499. if ( 'colors' == $handle || 'colors-rtl' == $handle ) {
  500. global $_wp_admin_css_colors;
  501. $color = get_user_option('admin_color');
  502. if ( empty($color) || !isset($_wp_admin_css_colors[$color]) )
  503. $color = 'fresh';
  504. $color = $_wp_admin_css_colors[$color];
  505. $parsed = parse_url( $src );
  506. $url = $color->url;
  507. if ( defined('SCRIPT_DEBUG') && SCRIPT_DEBUG )
  508. $url = preg_replace( '/.min.css$|.min.css(?=\?)/', '.css', $url );
  509. if ( isset($parsed['query']) && $parsed['query'] ) {
  510. wp_parse_str( $parsed['query'], $qv );
  511. $url = add_query_arg( $qv, $url );
  512. }
  513. return $url;
  514. }
  515. return $src;
  516. }
  517. /**
  518. * Prints the script queue in the HTML head on admin pages.
  519. *
  520. * Postpones the scripts that were queued for the footer.
  521. * print_footer_scripts() is called in the footer to print these scripts.
  522. *
  523. * @since 2.8
  524. * @see wp_print_scripts()
  525. */
  526. function print_head_scripts() {
  527. global $wp_scripts, $concatenate_scripts;
  528. if ( ! did_action('wp_print_scripts') )
  529. do_action('wp_print_scripts');
  530. if ( !is_a($wp_scripts, 'WP_Scripts') )
  531. $wp_scripts = new WP_Scripts();
  532. script_concat_settings();
  533. $wp_scripts->do_concat = $concatenate_scripts;
  534. $wp_scripts->do_head_items();
  535. if ( apply_filters('print_head_scripts', true) )
  536. _print_scripts();
  537. $wp_scripts->reset();
  538. return $wp_scripts->done;
  539. }
  540. /**
  541. * Prints the scripts that were queued for the footer or too late for the HTML head.
  542. *
  543. * @since 2.8
  544. */
  545. function print_footer_scripts() {
  546. global $wp_scripts, $concatenate_scripts;
  547. if ( !is_a($wp_scripts, 'WP_Scripts') )
  548. return array(); // No need to run if not instantiated.
  549. script_concat_settings();
  550. $wp_scripts->do_concat = $concatenate_scripts;
  551. $wp_scripts->do_footer_items();
  552. if ( apply_filters('print_footer_scripts', true) )
  553. _print_scripts();
  554. $wp_scripts->reset();
  555. return $wp_scripts->done;
  556. }
  557. /**
  558. * @internal use
  559. */
  560. function _print_scripts() {
  561. global $wp_scripts, $compress_scripts;
  562. $zip = $compress_scripts ? 1 : 0;
  563. if ( $zip && defined('ENFORCE_GZIP') && ENFORCE_GZIP )
  564. $zip = 'gzip';
  565. if ( $concat = trim( $wp_scripts->concat, ', ' ) ) {
  566. if ( !empty($wp_scripts->print_code) ) {
  567. echo "\n<script type='text/javascript'>\n";
  568. echo "/* <![CDATA[ */\n"; // not needed in HTML 5
  569. echo $wp_scripts->print_code;
  570. echo "/* ]]> */\n";
  571. echo "</script>\n";
  572. }
  573. $concat = str_split( $concat, 128 );
  574. $concat = 'load%5B%5D=' . implode( '&load%5B%5D=', $concat );
  575. $src = $wp_scripts->base_url . "/wp-admin/load-scripts.php?c={$zip}&" . $concat . '&ver=' . $wp_scripts->default_version;
  576. echo "<script type='text/javascript' src='" . esc_attr($src) . "'></script>\n";
  577. }
  578. if ( !empty($wp_scripts->print_html) )
  579. echo $wp_scripts->print_html;
  580. }
  581. /**
  582. * Prints the script queue in the HTML head on the front end.
  583. *
  584. * Postpones the scripts that were queued for the footer.
  585. * wp_print_footer_scripts() is called in the footer to print these scripts.
  586. *
  587. * @since 2.8
  588. */
  589. function wp_print_head_scripts() {
  590. if ( ! did_action('wp_print_scripts') )
  591. do_action('wp_print_scripts');
  592. global $wp_scripts;
  593. if ( !is_a($wp_scripts, 'WP_Scripts') )
  594. return array(); // no need to run if nothing is queued
  595. return print_head_scripts();
  596. }
  597. /**
  598. * Private, for use in *_footer_scripts hooks
  599. *
  600. * @since 3.3.0
  601. */
  602. function _wp_footer_scripts() {
  603. print_late_styles();
  604. print_footer_scripts();
  605. }
  606. /**
  607. * Hooks to print the scripts and styles in the footer.
  608. *
  609. * @since 2.8
  610. */
  611. function wp_print_footer_scripts() {
  612. do_action('wp_print_footer_scripts');
  613. }
  614. /**
  615. * Wrapper for do_action('wp_enqueue_scripts')
  616. *
  617. * Allows plugins to queue scripts for the front end using wp_enqueue_script().
  618. * Runs first in wp_head() where all is_home(), is_page(), etc. functions are available.
  619. *
  620. * @since 2.8
  621. */
  622. function wp_enqueue_scripts() {
  623. do_action('wp_enqueue_scripts');
  624. }
  625. /**
  626. * Prints the styles queue in the HTML head on admin pages.
  627. *
  628. * @since 2.8
  629. */
  630. function print_admin_styles() {
  631. global $wp_styles, $concatenate_scripts, $compress_css;
  632. if ( !is_a($wp_styles, 'WP_Styles') )
  633. $wp_styles = new WP_Styles();
  634. script_concat_settings();
  635. $wp_styles->do_concat = $concatenate_scripts;
  636. $zip = $compress_css ? 1 : 0;
  637. if ( $zip && defined('ENFORCE_GZIP') && ENFORCE_GZIP )
  638. $zip = 'gzip';
  639. $wp_styles->do_items(false);
  640. if ( apply_filters('print_admin_styles', true) )
  641. _print_styles();
  642. $wp_styles->reset();
  643. return $wp_styles->done;
  644. }
  645. /**
  646. * Prints the styles that were queued too late for the HTML head.
  647. *
  648. * @since 3.3.0
  649. */
  650. function print_late_styles() {
  651. global $wp_styles, $concatenate_scripts;
  652. if ( !is_a($wp_styles, 'WP_Styles') )
  653. return;
  654. $wp_styles->do_concat = $concatenate_scripts;
  655. $wp_styles->do_footer_items();
  656. if ( apply_filters('print_late_styles', true) )
  657. _print_styles();
  658. $wp_styles->reset();
  659. return $wp_styles->done;
  660. }
  661. /**
  662. * @internal use
  663. */
  664. function _print_styles() {
  665. global $wp_styles, $compress_css;
  666. $zip = $compress_css ? 1 : 0;
  667. if ( $zip && defined('ENFORCE_GZIP') && ENFORCE_GZIP )
  668. $zip = 'gzip';
  669. if ( !empty($wp_styles->concat) ) {
  670. $dir = $wp_styles->text_direction;
  671. $ver = $wp_styles->default_version;
  672. $href = $wp_styles->base_url . "/wp-admin/load-styles.php?c={$zip}&dir={$dir}&load=" . trim($wp_styles->concat, ', ') . '&ver=' . $ver;
  673. echo "<link rel='stylesheet' href='" . esc_attr($href) . "' type='text/css' media='all' />\n";
  674. if ( !empty($wp_styles->print_code) ) {
  675. echo "<style type='text/css'>\n";
  676. echo $wp_styles->print_code;
  677. echo "\n</style>\n";
  678. }
  679. }
  680. if ( !empty($wp_styles->print_html) )
  681. echo $wp_styles->print_html;
  682. }
  683. /**
  684. * Determine the concatenation and compression settings for scripts and styles.
  685. *
  686. * @since 2.8
  687. */
  688. function script_concat_settings() {
  689. global $concatenate_scripts, $compress_scripts, $compress_css;
  690. $compressed_output = ( ini_get('zlib.output_compression') || 'ob_gzhandler' == ini_get('output_handler') );
  691. if ( ! isset($concatenate_scripts) ) {
  692. $concatenate_scripts = defined('CONCATENATE_SCRIPTS') ? CONCATENATE_SCRIPTS : true;
  693. if ( ! is_admin() || ( defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ) )
  694. $concatenate_scripts = false;
  695. }
  696. if ( ! isset($compress_scripts) ) {
  697. $compress_scripts = defined('COMPRESS_SCRIPTS') ? COMPRESS_SCRIPTS : true;
  698. if ( $compress_scripts && ( ! get_site_option('can_compress_scripts') || $compressed_output ) )
  699. $compress_scripts = false;
  700. }
  701. if ( ! isset($compress_css) ) {
  702. $compress_css = defined('COMPRESS_CSS') ? COMPRESS_CSS : true;
  703. if ( $compress_css && ( ! get_site_option('can_compress_scripts') || $compressed_output ) )
  704. $compress_css = false;
  705. }
  706. }
  707. add_action( 'wp_default_scripts', 'wp_default_scripts' );
  708. add_filter( 'wp_print_scripts', 'wp_just_in_time_script_localization' );
  709. add_filter( 'print_scripts_array', 'wp_prototype_before_jquery' );
  710. add_action( 'wp_default_styles', 'wp_default_styles' );
  711. add_filter( 'style_loader_src', 'wp_style_loader_src', 10, 2 );