class-wc-admin-assets.php 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. <?php
  2. /**
  3. * Load assets
  4. *
  5. * @package WooCommerce/Admin
  6. * @version 2.1.0
  7. */
  8. if ( ! defined( 'ABSPATH' ) ) {
  9. exit;
  10. }
  11. if ( ! class_exists( 'WC_Admin_Assets', false ) ) :
  12. /**
  13. * WC_Admin_Assets Class.
  14. */
  15. class WC_Admin_Assets {
  16. /**
  17. * Hook in tabs.
  18. */
  19. public function __construct() {
  20. add_action( 'admin_enqueue_scripts', array( $this, 'admin_styles' ) );
  21. add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
  22. }
  23. /**
  24. * Enqueue styles.
  25. */
  26. public function admin_styles() {
  27. global $wp_scripts;
  28. $screen = get_current_screen();
  29. $screen_id = $screen ? $screen->id : '';
  30. // Register admin styles.
  31. wp_register_style( 'woocommerce_admin_menu_styles', WC()->plugin_url() . '/assets/css/menu.css', array(), WC_VERSION );
  32. wp_register_style( 'woocommerce_admin_styles', WC()->plugin_url() . '/assets/css/admin.css', array(), WC_VERSION );
  33. wp_register_style( 'jquery-ui-style', WC()->plugin_url() . '/assets/css/jquery-ui/jquery-ui.min.css', array(), WC_VERSION );
  34. wp_register_style( 'woocommerce_admin_dashboard_styles', WC()->plugin_url() . '/assets/css/dashboard.css', array(), WC_VERSION );
  35. wp_register_style( 'woocommerce_admin_print_reports_styles', WC()->plugin_url() . '/assets/css/reports-print.css', array(), WC_VERSION, 'print' );
  36. // Add RTL support for admin styles.
  37. wp_style_add_data( 'woocommerce_admin_menu_styles', 'rtl', 'replace' );
  38. wp_style_add_data( 'woocommerce_admin_styles', 'rtl', 'replace' );
  39. wp_style_add_data( 'woocommerce_admin_dashboard_styles', 'rtl', 'replace' );
  40. wp_style_add_data( 'woocommerce_admin_print_reports_styles', 'rtl', 'replace' );
  41. // Sitewide menu CSS.
  42. wp_enqueue_style( 'woocommerce_admin_menu_styles' );
  43. // Admin styles for WC pages only.
  44. if ( in_array( $screen_id, wc_get_screen_ids() ) ) {
  45. wp_enqueue_style( 'woocommerce_admin_styles' );
  46. wp_enqueue_style( 'jquery-ui-style' );
  47. wp_enqueue_style( 'wp-color-picker' );
  48. }
  49. if ( in_array( $screen_id, array( 'dashboard' ) ) ) {
  50. wp_enqueue_style( 'woocommerce_admin_dashboard_styles' );
  51. }
  52. if ( in_array( $screen_id, array( 'woocommerce_page_wc-reports', 'toplevel_page_wc-reports' ) ) ) {
  53. wp_enqueue_style( 'woocommerce_admin_print_reports_styles' );
  54. }
  55. // @deprecated 2.3.
  56. if ( has_action( 'woocommerce_admin_css' ) ) {
  57. do_action( 'woocommerce_admin_css' );
  58. wc_deprecated_function( 'The woocommerce_admin_css action', '2.3', 'admin_enqueue_scripts' );
  59. }
  60. }
  61. /**
  62. * Enqueue scripts.
  63. */
  64. public function admin_scripts() {
  65. global $wp_query, $post;
  66. $screen = get_current_screen();
  67. $screen_id = $screen ? $screen->id : '';
  68. $wc_screen_id = sanitize_title( __( 'WooCommerce', 'woocommerce' ) );
  69. $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
  70. // Register scripts.
  71. wp_register_script( 'woocommerce_admin', WC()->plugin_url() . '/assets/js/admin/woocommerce_admin' . $suffix . '.js', array( 'jquery', 'jquery-blockui', 'jquery-ui-sortable', 'jquery-ui-widget', 'jquery-ui-core', 'jquery-tiptip' ), WC_VERSION );
  72. wp_register_script( 'jquery-blockui', WC()->plugin_url() . '/assets/js/jquery-blockui/jquery.blockUI' . $suffix . '.js', array( 'jquery' ), '2.70', true );
  73. wp_register_script( 'jquery-tiptip', WC()->plugin_url() . '/assets/js/jquery-tiptip/jquery.tipTip' . $suffix . '.js', array( 'jquery' ), WC_VERSION, true );
  74. wp_register_script( 'round', WC()->plugin_url() . '/assets/js/round/round' . $suffix . '.js', array( 'jquery' ), WC_VERSION );
  75. wp_register_script( 'wc-admin-meta-boxes', WC()->plugin_url() . '/assets/js/admin/meta-boxes' . $suffix . '.js', array( 'jquery', 'jquery-ui-datepicker', 'jquery-ui-sortable', 'accounting', 'round', 'wc-enhanced-select', 'plupload-all', 'stupidtable', 'jquery-tiptip' ), WC_VERSION );
  76. wp_register_script( 'zeroclipboard', WC()->plugin_url() . '/assets/js/zeroclipboard/jquery.zeroclipboard' . $suffix . '.js', array( 'jquery' ), WC_VERSION );
  77. wp_register_script( 'qrcode', WC()->plugin_url() . '/assets/js/jquery-qrcode/jquery.qrcode' . $suffix . '.js', array( 'jquery' ), WC_VERSION );
  78. wp_register_script( 'stupidtable', WC()->plugin_url() . '/assets/js/stupidtable/stupidtable' . $suffix . '.js', array( 'jquery' ), WC_VERSION );
  79. wp_register_script( 'serializejson', WC()->plugin_url() . '/assets/js/jquery-serializejson/jquery.serializejson' . $suffix . '.js', array( 'jquery' ), '2.8.1' );
  80. wp_register_script( 'flot', WC()->plugin_url() . '/assets/js/jquery-flot/jquery.flot' . $suffix . '.js', array( 'jquery' ), WC_VERSION );
  81. wp_register_script( 'flot-resize', WC()->plugin_url() . '/assets/js/jquery-flot/jquery.flot.resize' . $suffix . '.js', array( 'jquery', 'flot' ), WC_VERSION );
  82. wp_register_script( 'flot-time', WC()->plugin_url() . '/assets/js/jquery-flot/jquery.flot.time' . $suffix . '.js', array( 'jquery', 'flot' ), WC_VERSION );
  83. wp_register_script( 'flot-pie', WC()->plugin_url() . '/assets/js/jquery-flot/jquery.flot.pie' . $suffix . '.js', array( 'jquery', 'flot' ), WC_VERSION );
  84. wp_register_script( 'flot-stack', WC()->plugin_url() . '/assets/js/jquery-flot/jquery.flot.stack' . $suffix . '.js', array( 'jquery', 'flot' ), WC_VERSION );
  85. wp_register_script( 'wc-settings-tax', WC()->plugin_url() . '/assets/js/admin/settings-views-html-settings-tax' . $suffix . '.js', array( 'jquery', 'wp-util', 'underscore', 'backbone', 'jquery-blockui' ), WC_VERSION );
  86. wp_register_script( 'wc-backbone-modal', WC()->plugin_url() . '/assets/js/admin/backbone-modal' . $suffix . '.js', array( 'underscore', 'backbone', 'wp-util' ), WC_VERSION );
  87. wp_register_script( 'wc-shipping-zones', WC()->plugin_url() . '/assets/js/admin/wc-shipping-zones' . $suffix . '.js', array( 'jquery', 'wp-util', 'underscore', 'backbone', 'jquery-ui-sortable', 'wc-enhanced-select', 'wc-backbone-modal' ), WC_VERSION );
  88. wp_register_script( 'wc-shipping-zone-methods', WC()->plugin_url() . '/assets/js/admin/wc-shipping-zone-methods' . $suffix . '.js', array( 'jquery', 'wp-util', 'underscore', 'backbone', 'jquery-ui-sortable', 'wc-backbone-modal' ), WC_VERSION );
  89. wp_register_script( 'wc-shipping-classes', WC()->plugin_url() . '/assets/js/admin/wc-shipping-classes' . $suffix . '.js', array( 'jquery', 'wp-util', 'underscore', 'backbone' ), WC_VERSION );
  90. wp_register_script( 'wc-clipboard', WC()->plugin_url() . '/assets/js/admin/wc-clipboard' . $suffix . '.js', array( 'jquery' ), WC_VERSION );
  91. wp_register_script( 'select2', WC()->plugin_url() . '/assets/js/select2/select2.full' . $suffix . '.js', array( 'jquery' ), '4.0.3' );
  92. wp_register_script( 'selectWoo', WC()->plugin_url() . '/assets/js/selectWoo/selectWoo.full' . $suffix . '.js', array( 'jquery' ), '1.0.4' );
  93. wp_register_script( 'wc-enhanced-select', WC()->plugin_url() . '/assets/js/admin/wc-enhanced-select' . $suffix . '.js', array( 'jquery', 'selectWoo' ), WC_VERSION );
  94. wp_localize_script(
  95. 'wc-enhanced-select',
  96. 'wc_enhanced_select_params',
  97. array(
  98. 'i18n_no_matches' => _x( 'No matches found', 'enhanced select', 'woocommerce' ),
  99. 'i18n_ajax_error' => _x( 'Loading failed', 'enhanced select', 'woocommerce' ),
  100. 'i18n_input_too_short_1' => _x( 'Please enter 1 or more characters', 'enhanced select', 'woocommerce' ),
  101. 'i18n_input_too_short_n' => _x( 'Please enter %qty% or more characters', 'enhanced select', 'woocommerce' ),
  102. 'i18n_input_too_long_1' => _x( 'Please delete 1 character', 'enhanced select', 'woocommerce' ),
  103. 'i18n_input_too_long_n' => _x( 'Please delete %qty% characters', 'enhanced select', 'woocommerce' ),
  104. 'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'woocommerce' ),
  105. 'i18n_selection_too_long_n' => _x( 'You can only select %qty% items', 'enhanced select', 'woocommerce' ),
  106. 'i18n_load_more' => _x( 'Loading more results&hellip;', 'enhanced select', 'woocommerce' ),
  107. 'i18n_searching' => _x( 'Searching&hellip;', 'enhanced select', 'woocommerce' ),
  108. 'ajax_url' => admin_url( 'admin-ajax.php' ),
  109. 'search_products_nonce' => wp_create_nonce( 'search-products' ),
  110. 'search_customers_nonce' => wp_create_nonce( 'search-customers' ),
  111. 'search_categories_nonce' => wp_create_nonce( 'search-categories' ),
  112. )
  113. );
  114. wp_register_script( 'accounting', WC()->plugin_url() . '/assets/js/accounting/accounting' . $suffix . '.js', array( 'jquery' ), '0.4.2' );
  115. wp_localize_script(
  116. 'accounting',
  117. 'accounting_params',
  118. array(
  119. 'mon_decimal_point' => wc_get_price_decimal_separator(),
  120. )
  121. );
  122. wp_register_script( 'wc-orders', WC()->plugin_url() . '/assets/js/admin/wc-orders' . $suffix . '.js', array( 'jquery', 'wp-util', 'underscore', 'backbone', 'jquery-blockui' ), WC_VERSION );
  123. wp_localize_script(
  124. 'wc-orders',
  125. 'wc_orders_params',
  126. array(
  127. 'ajax_url' => admin_url( 'admin-ajax.php' ),
  128. 'preview_nonce' => wp_create_nonce( 'woocommerce-preview-order' ),
  129. )
  130. );
  131. // WooCommerce admin pages.
  132. if ( in_array( $screen_id, wc_get_screen_ids() ) ) {
  133. wp_enqueue_script( 'iris' );
  134. wp_enqueue_script( 'woocommerce_admin' );
  135. wp_enqueue_script( 'wc-enhanced-select' );
  136. wp_enqueue_script( 'jquery-ui-sortable' );
  137. wp_enqueue_script( 'jquery-ui-autocomplete' );
  138. $locale = localeconv();
  139. $decimal = isset( $locale['decimal_point'] ) ? $locale['decimal_point'] : '.';
  140. $params = array(
  141. /* translators: %s: decimal */
  142. 'i18n_decimal_error' => sprintf( __( 'Please enter in decimal (%s) format without thousand separators.', 'woocommerce' ), $decimal ),
  143. /* translators: %s: price decimal separator */
  144. 'i18n_mon_decimal_error' => sprintf( __( 'Please enter in monetary decimal (%s) format without thousand separators and currency symbols.', 'woocommerce' ), wc_get_price_decimal_separator() ),
  145. 'i18n_country_iso_error' => __( 'Please enter in country code with two capital letters.', 'woocommerce' ),
  146. 'i18n_sale_less_than_regular_error' => __( 'Please enter in a value less than the regular price.', 'woocommerce' ),
  147. 'i18n_delete_product_notice' => __( 'This product has produced sales and may be linked to existing orders. Are you sure you want to delete it?', 'woocommerce' ),
  148. 'i18n_remove_personal_data_notice' => __( 'This action cannot be reversed. Are you sure you wish to erase personal data from the selected orders?', 'woocommerce' ),
  149. 'decimal_point' => $decimal,
  150. 'mon_decimal_point' => wc_get_price_decimal_separator(),
  151. 'ajax_url' => admin_url( 'admin-ajax.php' ),
  152. 'strings' => array(
  153. 'import_products' => __( 'Import', 'woocommerce' ),
  154. 'export_products' => __( 'Export', 'woocommerce' ),
  155. ),
  156. 'nonces' => array(
  157. 'gateway_toggle' => wp_create_nonce( 'woocommerce-toggle-payment-gateway-enabled' ),
  158. ),
  159. 'urls' => array(
  160. 'import_products' => current_user_can( 'import' ) ? esc_url_raw( admin_url( 'edit.php?post_type=product&page=product_importer' ) ) : null,
  161. 'export_products' => current_user_can( 'export' ) ? esc_url_raw( admin_url( 'edit.php?post_type=product&page=product_exporter' ) ) : null,
  162. ),
  163. );
  164. wp_localize_script( 'woocommerce_admin', 'woocommerce_admin', $params );
  165. }
  166. // Edit product category pages.
  167. if ( in_array( $screen_id, array( 'edit-product_cat' ) ) ) {
  168. wp_enqueue_media();
  169. }
  170. // Products.
  171. if ( in_array( $screen_id, array( 'edit-product' ) ) ) {
  172. wp_enqueue_script( 'woocommerce_quick-edit', WC()->plugin_url() . '/assets/js/admin/quick-edit' . $suffix . '.js', array( 'jquery', 'woocommerce_admin' ), WC_VERSION );
  173. $params = array(
  174. 'strings' => array(
  175. 'allow_reviews' => esc_js( __( 'Enable reviews', 'woocommerce' ) ),
  176. ),
  177. );
  178. wp_localize_script( 'woocommerce_quick-edit', 'woocommerce_quick_edit', $params );
  179. }
  180. // Meta boxes.
  181. if ( in_array( $screen_id, array( 'product', 'edit-product' ) ) ) {
  182. wp_enqueue_media();
  183. wp_register_script( 'wc-admin-product-meta-boxes', WC()->plugin_url() . '/assets/js/admin/meta-boxes-product' . $suffix . '.js', array( 'wc-admin-meta-boxes', 'media-models' ), WC_VERSION );
  184. wp_register_script( 'wc-admin-variation-meta-boxes', WC()->plugin_url() . '/assets/js/admin/meta-boxes-product-variation' . $suffix . '.js', array( 'wc-admin-meta-boxes', 'serializejson', 'media-models' ), WC_VERSION );
  185. wp_enqueue_script( 'wc-admin-product-meta-boxes' );
  186. wp_enqueue_script( 'wc-admin-variation-meta-boxes' );
  187. $params = array(
  188. 'post_id' => isset( $post->ID ) ? $post->ID : '',
  189. 'plugin_url' => WC()->plugin_url(),
  190. 'ajax_url' => admin_url( 'admin-ajax.php' ),
  191. 'woocommerce_placeholder_img_src' => wc_placeholder_img_src(),
  192. 'add_variation_nonce' => wp_create_nonce( 'add-variation' ),
  193. 'link_variation_nonce' => wp_create_nonce( 'link-variations' ),
  194. 'delete_variations_nonce' => wp_create_nonce( 'delete-variations' ),
  195. 'load_variations_nonce' => wp_create_nonce( 'load-variations' ),
  196. 'save_variations_nonce' => wp_create_nonce( 'save-variations' ),
  197. 'bulk_edit_variations_nonce' => wp_create_nonce( 'bulk-edit-variations' ),
  198. /* translators: %d: Number of variations */
  199. 'i18n_link_all_variations' => esc_js( sprintf( __( 'Are you sure you want to link all variations? This will create a new variation for each and every possible combination of variation attributes (max %d per run).', 'woocommerce' ), defined( 'WC_MAX_LINKED_VARIATIONS' ) ? WC_MAX_LINKED_VARIATIONS : 50 ) ),
  200. 'i18n_enter_a_value' => esc_js( __( 'Enter a value', 'woocommerce' ) ),
  201. 'i18n_enter_menu_order' => esc_js( __( 'Variation menu order (determines position in the list of variations)', 'woocommerce' ) ),
  202. 'i18n_enter_a_value_fixed_or_percent' => esc_js( __( 'Enter a value (fixed or %)', 'woocommerce' ) ),
  203. 'i18n_delete_all_variations' => esc_js( __( 'Are you sure you want to delete all variations? This cannot be undone.', 'woocommerce' ) ),
  204. 'i18n_last_warning' => esc_js( __( 'Last warning, are you sure?', 'woocommerce' ) ),
  205. 'i18n_choose_image' => esc_js( __( 'Choose an image', 'woocommerce' ) ),
  206. 'i18n_set_image' => esc_js( __( 'Set variation image', 'woocommerce' ) ),
  207. 'i18n_variation_added' => esc_js( __( 'variation added', 'woocommerce' ) ),
  208. 'i18n_variations_added' => esc_js( __( 'variations added', 'woocommerce' ) ),
  209. 'i18n_no_variations_added' => esc_js( __( 'No variations added', 'woocommerce' ) ),
  210. 'i18n_remove_variation' => esc_js( __( 'Are you sure you want to remove this variation?', 'woocommerce' ) ),
  211. 'i18n_scheduled_sale_start' => esc_js( __( 'Sale start date (YYYY-MM-DD format or leave blank)', 'woocommerce' ) ),
  212. 'i18n_scheduled_sale_end' => esc_js( __( 'Sale end date (YYYY-MM-DD format or leave blank)', 'woocommerce' ) ),
  213. 'i18n_edited_variations' => esc_js( __( 'Save changes before changing page?', 'woocommerce' ) ),
  214. 'i18n_variation_count_single' => esc_js( __( '%qty% variation', 'woocommerce' ) ),
  215. 'i18n_variation_count_plural' => esc_js( __( '%qty% variations', 'woocommerce' ) ),
  216. 'variations_per_page' => absint( apply_filters( 'woocommerce_admin_meta_boxes_variations_per_page', 15 ) ),
  217. );
  218. wp_localize_script( 'wc-admin-variation-meta-boxes', 'woocommerce_admin_meta_boxes_variations', $params );
  219. }
  220. if ( in_array( str_replace( 'edit-', '', $screen_id ), wc_get_order_types( 'order-meta-boxes' ) ) ) {
  221. $default_location = wc_get_customer_default_location();
  222. wp_enqueue_script( 'wc-admin-order-meta-boxes', WC()->plugin_url() . '/assets/js/admin/meta-boxes-order' . $suffix . '.js', array( 'wc-admin-meta-boxes', 'wc-backbone-modal', 'selectWoo', 'wc-clipboard' ), WC_VERSION );
  223. wp_localize_script(
  224. 'wc-admin-order-meta-boxes',
  225. 'woocommerce_admin_meta_boxes_order',
  226. array(
  227. 'countries' => json_encode( array_merge( WC()->countries->get_allowed_country_states(), WC()->countries->get_shipping_country_states() ) ),
  228. 'i18n_select_state_text' => esc_attr__( 'Select an option&hellip;', 'woocommerce' ),
  229. 'default_country' => isset( $default_location['country'] ) ? $default_location['country'] : '',
  230. 'default_state' => isset( $default_location['state'] ) ? $default_location['state'] : '',
  231. 'placeholder_name' => esc_attr__( 'Name (required)', 'woocommerce' ),
  232. 'placeholder_value' => esc_attr__( 'Value (required)', 'woocommerce' ),
  233. )
  234. );
  235. }
  236. if ( in_array( $screen_id, array( 'shop_coupon', 'edit-shop_coupon' ) ) ) {
  237. wp_enqueue_script( 'wc-admin-coupon-meta-boxes', WC()->plugin_url() . '/assets/js/admin/meta-boxes-coupon' . $suffix . '.js', array( 'wc-admin-meta-boxes' ), WC_VERSION );
  238. }
  239. if ( in_array( str_replace( 'edit-', '', $screen_id ), array_merge( array( 'shop_coupon', 'product' ), wc_get_order_types( 'order-meta-boxes' ) ) ) ) {
  240. $post_id = isset( $post->ID ) ? $post->ID : '';
  241. $currency = '';
  242. if ( $post_id && in_array( get_post_type( $post_id ), wc_get_order_types( 'order-meta-boxes' ) ) ) {
  243. $order = wc_get_order( $post_id );
  244. if ( $order ) {
  245. $currency = $order->get_currency();
  246. }
  247. }
  248. $params = array(
  249. 'remove_item_notice' => __( "Are you sure you want to remove the selected items? If you have previously reduced this item's stock, or this order was submitted by a customer, you will need to manually restore the item's stock.", 'woocommerce' ),
  250. 'i18n_select_items' => __( 'Please select some items.', 'woocommerce' ),
  251. 'i18n_do_refund' => __( 'Are you sure you wish to process this refund? This action cannot be undone.', 'woocommerce' ),
  252. 'i18n_delete_refund' => __( 'Are you sure you wish to delete this refund? This action cannot be undone.', 'woocommerce' ),
  253. 'i18n_delete_tax' => __( 'Are you sure you wish to delete this tax column? This action cannot be undone.', 'woocommerce' ),
  254. 'remove_item_meta' => __( 'Remove this item meta?', 'woocommerce' ),
  255. 'remove_attribute' => __( 'Remove this attribute?', 'woocommerce' ),
  256. 'name_label' => __( 'Name', 'woocommerce' ),
  257. 'remove_label' => __( 'Remove', 'woocommerce' ),
  258. 'click_to_toggle' => __( 'Click to toggle', 'woocommerce' ),
  259. 'values_label' => __( 'Value(s)', 'woocommerce' ),
  260. 'text_attribute_tip' => __( 'Enter some text, or some attributes by pipe (|) separating values.', 'woocommerce' ),
  261. 'visible_label' => __( 'Visible on the product page', 'woocommerce' ),
  262. 'used_for_variations_label' => __( 'Used for variations', 'woocommerce' ),
  263. 'new_attribute_prompt' => __( 'Enter a name for the new attribute term:', 'woocommerce' ),
  264. 'calc_totals' => __( 'Recalculate totals? This will calculate taxes based on the customers country (or the store base country) and update totals.', 'woocommerce' ),
  265. 'copy_billing' => __( 'Copy billing information to shipping information? This will remove any currently entered shipping information.', 'woocommerce' ),
  266. 'load_billing' => __( "Load the customer's billing information? This will remove any currently entered billing information.", 'woocommerce' ),
  267. 'load_shipping' => __( "Load the customer's shipping information? This will remove any currently entered shipping information.", 'woocommerce' ),
  268. 'featured_label' => __( 'Featured', 'woocommerce' ),
  269. 'prices_include_tax' => esc_attr( get_option( 'woocommerce_prices_include_tax' ) ),
  270. 'tax_based_on' => esc_attr( get_option( 'woocommerce_tax_based_on' ) ),
  271. 'round_at_subtotal' => esc_attr( get_option( 'woocommerce_tax_round_at_subtotal' ) ),
  272. 'no_customer_selected' => __( 'No customer selected', 'woocommerce' ),
  273. 'plugin_url' => WC()->plugin_url(),
  274. 'ajax_url' => admin_url( 'admin-ajax.php' ),
  275. 'order_item_nonce' => wp_create_nonce( 'order-item' ),
  276. 'add_attribute_nonce' => wp_create_nonce( 'add-attribute' ),
  277. 'save_attributes_nonce' => wp_create_nonce( 'save-attributes' ),
  278. 'calc_totals_nonce' => wp_create_nonce( 'calc-totals' ),
  279. 'get_customer_details_nonce' => wp_create_nonce( 'get-customer-details' ),
  280. 'search_products_nonce' => wp_create_nonce( 'search-products' ),
  281. 'grant_access_nonce' => wp_create_nonce( 'grant-access' ),
  282. 'revoke_access_nonce' => wp_create_nonce( 'revoke-access' ),
  283. 'add_order_note_nonce' => wp_create_nonce( 'add-order-note' ),
  284. 'delete_order_note_nonce' => wp_create_nonce( 'delete-order-note' ),
  285. 'calendar_image' => WC()->plugin_url() . '/assets/images/calendar.png',
  286. 'post_id' => isset( $post->ID ) ? $post->ID : '',
  287. 'base_country' => WC()->countries->get_base_country(),
  288. 'currency_format_num_decimals' => wc_get_price_decimals(),
  289. 'currency_format_symbol' => get_woocommerce_currency_symbol( $currency ),
  290. 'currency_format_decimal_sep' => esc_attr( wc_get_price_decimal_separator() ),
  291. 'currency_format_thousand_sep' => esc_attr( wc_get_price_thousand_separator() ),
  292. 'currency_format' => esc_attr( str_replace( array( '%1$s', '%2$s' ), array( '%s', '%v' ), get_woocommerce_price_format() ) ), // For accounting JS.
  293. 'rounding_precision' => wc_get_rounding_precision(),
  294. 'tax_rounding_mode' => wc_get_tax_rounding_mode(),
  295. 'product_types' => array_unique( array_merge( array( 'simple', 'grouped', 'variable', 'external' ), array_keys( wc_get_product_types() ) ) ),
  296. 'i18n_download_permission_fail' => __( 'Could not grant access - the user may already have permission for this file or billing email is not set. Ensure the billing email is set, and the order has been saved.', 'woocommerce' ),
  297. 'i18n_permission_revoke' => __( 'Are you sure you want to revoke access to this download?', 'woocommerce' ),
  298. 'i18n_tax_rate_already_exists' => __( 'You cannot add the same tax rate twice!', 'woocommerce' ),
  299. 'i18n_delete_note' => __( 'Are you sure you wish to delete this note? This action cannot be undone.', 'woocommerce' ),
  300. 'i18n_apply_coupon' => __( 'Enter a coupon code to apply to this order.', 'woocommerce' ),
  301. 'i18n_add_fee' => __( 'Enter a fixed amount or percentage to apply as a fee.', 'woocommerce' ),
  302. );
  303. wp_localize_script( 'wc-admin-meta-boxes', 'woocommerce_admin_meta_boxes', $params );
  304. }
  305. // Term ordering - only when sorting by term_order.
  306. if ( ( strstr( $screen_id, 'edit-pa_' ) || ( ! empty( $_GET['taxonomy'] ) && in_array( wp_unslash( $_GET['taxonomy'] ), apply_filters( 'woocommerce_sortable_taxonomies', array( 'product_cat' ) ) ) ) ) && ! isset( $_GET['orderby'] ) ) {
  307. wp_register_script( 'woocommerce_term_ordering', WC()->plugin_url() . '/assets/js/admin/term-ordering' . $suffix . '.js', array( 'jquery-ui-sortable' ), WC_VERSION );
  308. wp_enqueue_script( 'woocommerce_term_ordering' );
  309. $taxonomy = isset( $_GET['taxonomy'] ) ? wc_clean( wp_unslash( $_GET['taxonomy'] ) ) : '';
  310. $woocommerce_term_order_params = array(
  311. 'taxonomy' => $taxonomy,
  312. );
  313. wp_localize_script( 'woocommerce_term_ordering', 'woocommerce_term_ordering_params', $woocommerce_term_order_params );
  314. }
  315. // Product sorting - only when sorting by menu order on the products page.
  316. if ( current_user_can( 'edit_others_pages' ) && 'edit-product' === $screen_id && isset( $wp_query->query['orderby'] ) && 'menu_order title' === $wp_query->query['orderby'] ) {
  317. wp_register_script( 'woocommerce_product_ordering', WC()->plugin_url() . '/assets/js/admin/product-ordering' . $suffix . '.js', array( 'jquery-ui-sortable' ), WC_VERSION, true );
  318. wp_enqueue_script( 'woocommerce_product_ordering' );
  319. }
  320. // Reports Pages.
  321. if ( in_array( $screen_id, apply_filters( 'woocommerce_reports_screen_ids', array( $wc_screen_id . '_page_wc-reports', 'toplevel_page_wc-reports', 'dashboard' ) ) ) ) {
  322. wp_register_script( 'wc-reports', WC()->plugin_url() . '/assets/js/admin/reports' . $suffix . '.js', array( 'jquery', 'jquery-ui-datepicker' ), WC_VERSION );
  323. wp_enqueue_script( 'wc-reports' );
  324. wp_enqueue_script( 'flot' );
  325. wp_enqueue_script( 'flot-resize' );
  326. wp_enqueue_script( 'flot-time' );
  327. wp_enqueue_script( 'flot-pie' );
  328. wp_enqueue_script( 'flot-stack' );
  329. }
  330. // API settings.
  331. if ( $wc_screen_id . '_page_wc-settings' === $screen_id && isset( $_GET['section'] ) && 'keys' == $_GET['section'] ) {
  332. wp_register_script( 'wc-api-keys', WC()->plugin_url() . '/assets/js/admin/api-keys' . $suffix . '.js', array( 'jquery', 'woocommerce_admin', 'underscore', 'backbone', 'wp-util', 'qrcode', 'wc-clipboard' ), WC_VERSION, true );
  333. wp_enqueue_script( 'wc-api-keys' );
  334. wp_localize_script(
  335. 'wc-api-keys',
  336. 'woocommerce_admin_api_keys',
  337. array(
  338. 'ajax_url' => admin_url( 'admin-ajax.php' ),
  339. 'update_api_nonce' => wp_create_nonce( 'update-api-key' ),
  340. 'clipboard_failed' => esc_html__( 'Copying to clipboard failed. Please press Ctrl/Cmd+C to copy.', 'woocommerce' ),
  341. )
  342. );
  343. }
  344. // System status.
  345. if ( $wc_screen_id . '_page_wc-status' === $screen_id ) {
  346. wp_register_script( 'wc-admin-system-status', WC()->plugin_url() . '/assets/js/admin/system-status' . $suffix . '.js', array( 'wc-clipboard' ), WC_VERSION );
  347. wp_enqueue_script( 'wc-admin-system-status' );
  348. wp_localize_script(
  349. 'wc-admin-system-status',
  350. 'woocommerce_admin_system_status',
  351. array(
  352. 'delete_log_confirmation' => esc_js( __( 'Are you sure you want to delete this log?', 'woocommerce' ) ),
  353. )
  354. );
  355. }
  356. if ( in_array( $screen_id, array( 'user-edit', 'profile' ) ) ) {
  357. wp_register_script( 'wc-users', WC()->plugin_url() . '/assets/js/admin/users' . $suffix . '.js', array( 'jquery', 'wc-enhanced-select', 'selectWoo' ), WC_VERSION, true );
  358. wp_enqueue_script( 'wc-users' );
  359. wp_localize_script(
  360. 'wc-users',
  361. 'wc_users_params',
  362. array(
  363. 'countries' => json_encode( array_merge( WC()->countries->get_allowed_country_states(), WC()->countries->get_shipping_country_states() ) ),
  364. 'i18n_select_state_text' => esc_attr__( 'Select an option&hellip;', 'woocommerce' ),
  365. )
  366. );
  367. }
  368. }
  369. }
  370. endif;
  371. return new WC_Admin_Assets();