importers
9 years ago
meta-boxes
8 years ago
reports
8 years ago
settings
9 years ago
views
9 years ago
class-wc-admin-addons.php
9 years ago
class-wc-admin-api-keys-table-list.php
9 years ago
class-wc-admin-api-keys.php
9 years ago
class-wc-admin-assets.php
9 years ago
class-wc-admin-attributes.php
9 years ago
class-wc-admin-dashboard.php
8 years ago
class-wc-admin-duplicate-product.php
9 years ago
class-wc-admin-help.php
9 years ago
class-wc-admin-importers.php
9 years ago
class-wc-admin-log-table-list.php
9 years ago
class-wc-admin-menus.php
9 years ago
class-wc-admin-meta-boxes.php
9 years ago
class-wc-admin-notices.php
9 years ago
class-wc-admin-permalink-settings.php
9 years ago
class-wc-admin-pointers.php
9 years ago
class-wc-admin-post-types.php
9 years ago
class-wc-admin-profile.php
9 years ago
class-wc-admin-reports.php
9 years ago
class-wc-admin-settings.php
9 years ago
class-wc-admin-setup-wizard.php
9 years ago
class-wc-admin-status.php
9 years ago
class-wc-admin-taxonomies.php
9 years ago
class-wc-admin-webhooks-table-list.php
9 years ago
class-wc-admin-webhooks.php
8 years ago
class-wc-admin.php
9 years ago
wc-admin-functions.php
9 years ago
wc-meta-box-functions.php
9 years ago
class-wc-admin-meta-boxes.php
226 lines
| 1 | <?php |
| 2 | /** |
| 3 | * WooCommerce Meta Boxes |
| 4 | * |
| 5 | * Sets up the write panels used by products and orders (custom post types). |
| 6 | * |
| 7 | * @author WooThemes |
| 8 | * @category Admin |
| 9 | * @package WooCommerce/Admin/Meta Boxes |
| 10 | * @version 2.1.0 |
| 11 | */ |
| 12 | |
| 13 | if ( ! defined( 'ABSPATH' ) ) { |
| 14 | exit; // Exit if accessed directly |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * WC_Admin_Meta_Boxes. |
| 19 | */ |
| 20 | class WC_Admin_Meta_Boxes { |
| 21 | |
| 22 | /** |
| 23 | * Is meta boxes saved once? |
| 24 | * |
| 25 | * @var boolean |
| 26 | */ |
| 27 | private static $saved_meta_boxes = false; |
| 28 | |
| 29 | /** |
| 30 | * Meta box error messages. |
| 31 | * |
| 32 | * @var array |
| 33 | */ |
| 34 | public static $meta_box_errors = array(); |
| 35 | |
| 36 | /** |
| 37 | * Constructor. |
| 38 | */ |
| 39 | public function __construct() { |
| 40 | add_action( 'add_meta_boxes', array( $this, 'remove_meta_boxes' ), 10 ); |
| 41 | add_action( 'add_meta_boxes', array( $this, 'rename_meta_boxes' ), 20 ); |
| 42 | add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ), 30 ); |
| 43 | add_action( 'save_post', array( $this, 'save_meta_boxes' ), 1, 2 ); |
| 44 | |
| 45 | /** |
| 46 | * Save Order Meta Boxes. |
| 47 | * |
| 48 | * In order: |
| 49 | * Save the order items. |
| 50 | * Save the order totals. |
| 51 | * Save the order downloads. |
| 52 | * Save order data - also updates status and sends out admin emails if needed. Last to show latest data. |
| 53 | * Save actions - sends out other emails. Last to show latest data. |
| 54 | */ |
| 55 | add_action( 'woocommerce_process_shop_order_meta', 'WC_Meta_Box_Order_Items::save', 10, 2 ); |
| 56 | add_action( 'woocommerce_process_shop_order_meta', 'WC_Meta_Box_Order_Downloads::save', 30, 2 ); |
| 57 | add_action( 'woocommerce_process_shop_order_meta', 'WC_Meta_Box_Order_Data::save', 40, 2 ); |
| 58 | add_action( 'woocommerce_process_shop_order_meta', 'WC_Meta_Box_Order_Actions::save', 50, 2 ); |
| 59 | |
| 60 | // Save Product Meta Boxes. |
| 61 | add_action( 'woocommerce_process_product_meta', 'WC_Meta_Box_Product_Data::save', 10, 2 ); |
| 62 | add_action( 'woocommerce_process_product_meta', 'WC_Meta_Box_Product_Images::save', 20, 2 ); |
| 63 | |
| 64 | // Save Coupon Meta Boxes. |
| 65 | add_action( 'woocommerce_process_shop_coupon_meta', 'WC_Meta_Box_Coupon_Data::save', 10, 2 ); |
| 66 | |
| 67 | // Save Rating Meta Boxes. |
| 68 | add_action( 'comment_edit_redirect', 'WC_Meta_Box_Product_Reviews::save', 1, 2 ); |
| 69 | |
| 70 | // Error handling (for showing errors from meta boxes on next page load). |
| 71 | add_action( 'admin_notices', array( $this, 'output_errors' ) ); |
| 72 | add_action( 'shutdown', array( $this, 'save_errors' ) ); |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * Add an error message. |
| 77 | * @param string $text |
| 78 | */ |
| 79 | public static function add_error( $text ) { |
| 80 | self::$meta_box_errors[] = $text; |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Save errors to an option. |
| 85 | */ |
| 86 | public function save_errors() { |
| 87 | update_option( 'woocommerce_meta_box_errors', self::$meta_box_errors ); |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * Show any stored error messages. |
| 92 | */ |
| 93 | public function output_errors() { |
| 94 | $errors = array_filter( (array) get_option( 'woocommerce_meta_box_errors' ) ); |
| 95 | |
| 96 | if ( ! empty( $errors ) ) { |
| 97 | |
| 98 | echo '<div id="woocommerce_errors" class="error notice is-dismissible">'; |
| 99 | |
| 100 | foreach ( $errors as $error ) { |
| 101 | echo '<p>' . wp_kses_post( $error ) . '</p>'; |
| 102 | } |
| 103 | |
| 104 | echo '</div>'; |
| 105 | |
| 106 | // Clear |
| 107 | delete_option( 'woocommerce_meta_box_errors' ); |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * Add WC Meta boxes. |
| 113 | */ |
| 114 | public function add_meta_boxes() { |
| 115 | $screen = get_current_screen(); |
| 116 | $screen_id = $screen ? $screen->id : ''; |
| 117 | |
| 118 | // Products. |
| 119 | add_meta_box( 'postexcerpt', __( 'Product short description', 'woocommerce' ), 'WC_Meta_Box_Product_Short_Description::output', 'product', 'normal' ); |
| 120 | add_meta_box( 'woocommerce-product-data', __( 'Product data', 'woocommerce' ), 'WC_Meta_Box_Product_Data::output', 'product', 'normal', 'high' ); |
| 121 | add_meta_box( 'woocommerce-product-images', __( 'Product gallery', 'woocommerce' ), 'WC_Meta_Box_Product_Images::output', 'product', 'side', 'low' ); |
| 122 | |
| 123 | // Orders. |
| 124 | foreach ( wc_get_order_types( 'order-meta-boxes' ) as $type ) { |
| 125 | $order_type_object = get_post_type_object( $type ); |
| 126 | add_meta_box( 'woocommerce-order-data', sprintf( __( '%s data', 'woocommerce' ), $order_type_object->labels->singular_name ), 'WC_Meta_Box_Order_Data::output', $type, 'normal', 'high' ); |
| 127 | add_meta_box( 'woocommerce-order-items', __( 'Items', 'woocommerce' ), 'WC_Meta_Box_Order_Items::output', $type, 'normal', 'high' ); |
| 128 | add_meta_box( 'woocommerce-order-notes', sprintf( __( '%s notes', 'woocommerce' ), $order_type_object->labels->singular_name ), 'WC_Meta_Box_Order_Notes::output', $type, 'side', 'default' ); |
| 129 | add_meta_box( 'woocommerce-order-downloads', __( 'Downloadable product permissions', 'woocommerce' ) . wc_help_tip( __( 'Note: Permissions for order items will automatically be granted when the order status changes to processing/completed.', 'woocommerce' ) ), 'WC_Meta_Box_Order_Downloads::output', $type, 'normal', 'default' ); |
| 130 | add_meta_box( 'woocommerce-order-actions', sprintf( __( '%s actions', 'woocommerce' ), $order_type_object->labels->singular_name ), 'WC_Meta_Box_Order_Actions::output', $type, 'side', 'high' ); |
| 131 | } |
| 132 | |
| 133 | // Coupons. |
| 134 | add_meta_box( 'woocommerce-coupon-data', __( 'Coupon data', 'woocommerce' ), 'WC_Meta_Box_Coupon_Data::output', 'shop_coupon', 'normal', 'high' ); |
| 135 | |
| 136 | // Comment rating. |
| 137 | if ( 'comment' === $screen_id && isset( $_GET['c'] ) && metadata_exists( 'comment', $_GET['c'], 'rating' ) ) { |
| 138 | add_meta_box( 'woocommerce-rating', __( 'Rating', 'woocommerce' ), 'WC_Meta_Box_Product_Reviews::output', 'comment', 'normal', 'high' ); |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * Remove bloat. |
| 144 | */ |
| 145 | public function remove_meta_boxes() { |
| 146 | remove_meta_box( 'postexcerpt', 'product', 'normal' ); |
| 147 | remove_meta_box( 'product_shipping_classdiv', 'product', 'side' ); |
| 148 | remove_meta_box( 'commentsdiv', 'product', 'normal' ); |
| 149 | remove_meta_box( 'commentstatusdiv', 'product', 'side' ); |
| 150 | remove_meta_box( 'commentstatusdiv', 'product', 'normal' ); |
| 151 | remove_meta_box( 'woothemes-settings', 'shop_coupon', 'normal' ); |
| 152 | remove_meta_box( 'commentstatusdiv', 'shop_coupon', 'normal' ); |
| 153 | remove_meta_box( 'slugdiv', 'shop_coupon', 'normal' ); |
| 154 | |
| 155 | foreach ( wc_get_order_types( 'order-meta-boxes' ) as $type ) { |
| 156 | remove_meta_box( 'commentsdiv', $type, 'normal' ); |
| 157 | remove_meta_box( 'woothemes-settings', $type, 'normal' ); |
| 158 | remove_meta_box( 'commentstatusdiv', $type, 'normal' ); |
| 159 | remove_meta_box( 'slugdiv', $type, 'normal' ); |
| 160 | remove_meta_box( 'submitdiv', $type, 'side' ); |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | /** |
| 165 | * Rename core meta boxes. |
| 166 | */ |
| 167 | public function rename_meta_boxes() { |
| 168 | global $post; |
| 169 | |
| 170 | // Comments/Reviews |
| 171 | if ( isset( $post ) && ( 'publish' == $post->post_status || 'private' == $post->post_status ) ) { |
| 172 | remove_meta_box( 'commentsdiv', 'product', 'normal' ); |
| 173 | |
| 174 | add_meta_box( 'commentsdiv', __( 'Reviews', 'woocommerce' ), 'post_comment_meta_box', 'product', 'normal' ); |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * Check if we're saving, the trigger an action based on the post type. |
| 180 | * |
| 181 | * @param int $post_id |
| 182 | * @param object $post |
| 183 | */ |
| 184 | public function save_meta_boxes( $post_id, $post ) { |
| 185 | // $post_id and $post are required |
| 186 | if ( empty( $post_id ) || empty( $post ) || self::$saved_meta_boxes ) { |
| 187 | return; |
| 188 | } |
| 189 | |
| 190 | // Dont' save meta boxes for revisions or autosaves |
| 191 | if ( defined( 'DOING_AUTOSAVE' ) || is_int( wp_is_post_revision( $post ) ) || is_int( wp_is_post_autosave( $post ) ) ) { |
| 192 | return; |
| 193 | } |
| 194 | |
| 195 | // Check the nonce |
| 196 | if ( empty( $_POST['woocommerce_meta_nonce'] ) || ! wp_verify_nonce( $_POST['woocommerce_meta_nonce'], 'woocommerce_save_data' ) ) { |
| 197 | return; |
| 198 | } |
| 199 | |
| 200 | // Check the post being saved == the $post_id to prevent triggering this call for other save_post events |
| 201 | if ( empty( $_POST['post_ID'] ) || $_POST['post_ID'] != $post_id ) { |
| 202 | return; |
| 203 | } |
| 204 | |
| 205 | // Check user has permission to edit |
| 206 | if ( ! current_user_can( 'edit_post', $post_id ) ) { |
| 207 | return; |
| 208 | } |
| 209 | |
| 210 | // We need this save event to run once to avoid potential endless loops. This would have been perfect: |
| 211 | // remove_action( current_filter(), __METHOD__ ); |
| 212 | // But cannot be used due to https://github.com/woocommerce/woocommerce/issues/6485 |
| 213 | // When that is patched in core we can use the above. For now: |
| 214 | self::$saved_meta_boxes = true; |
| 215 | |
| 216 | // Check the post type |
| 217 | if ( in_array( $post->post_type, wc_get_order_types( 'order-meta-boxes' ) ) ) { |
| 218 | do_action( 'woocommerce_process_shop_order_meta', $post_id, $post ); |
| 219 | } elseif ( in_array( $post->post_type, array( 'product', 'shop_coupon' ) ) ) { |
| 220 | do_action( 'woocommerce_process_' . $post->post_type . '_meta', $post_id, $post ); |
| 221 | } |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | new WC_Admin_Meta_Boxes(); |
| 226 |