PageRenderTime 56ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 1ms

/wp-includes/script-loader.php

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