Merge pull request #17383 from woocommerce/fix/17332
[REST API] Fix category "image" returned type when is empty
This commit is contained in:
commit
8590cd297c
|
@ -32,9 +32,9 @@ class WC_REST_Product_Categories_Controller extends WC_REST_Product_Categories_V
|
||||||
/**
|
/**
|
||||||
* Prepare a single product category output for response.
|
* Prepare a single product category output for response.
|
||||||
*
|
*
|
||||||
* @param WP_Term $item Term object.
|
* @param WP_Term $item Term object.
|
||||||
* @param WP_REST_Request $request
|
* @param WP_REST_Request $request Request instance.
|
||||||
* @return WP_REST_Response $response
|
* @return WP_REST_Response
|
||||||
*/
|
*/
|
||||||
public function prepare_item_for_response( $item, $request ) {
|
public function prepare_item_for_response( $item, $request ) {
|
||||||
// Get category display type.
|
// Get category display type.
|
||||||
|
@ -50,13 +50,14 @@ class WC_REST_Product_Categories_Controller extends WC_REST_Product_Categories_V
|
||||||
'parent' => (int) $item->parent,
|
'parent' => (int) $item->parent,
|
||||||
'description' => $item->description,
|
'description' => $item->description,
|
||||||
'display' => $display_type ? $display_type : 'default',
|
'display' => $display_type ? $display_type : 'default',
|
||||||
'image' => array(),
|
'image' => null,
|
||||||
'menu_order' => (int) $menu_order,
|
'menu_order' => (int) $menu_order,
|
||||||
'count' => (int) $item->count,
|
'count' => (int) $item->count,
|
||||||
);
|
);
|
||||||
|
|
||||||
// Get category image.
|
// Get category image.
|
||||||
if ( $image_id = get_woocommerce_term_meta( $item->term_id, 'thumbnail_id' ) ) {
|
$image_id = get_woocommerce_term_meta( $item->term_id, 'thumbnail_id' );
|
||||||
|
if ( $image_id ) {
|
||||||
$attachment = get_post( $image_id );
|
$attachment = get_post( $image_id );
|
||||||
|
|
||||||
$data['image'] = array(
|
$data['image'] = array(
|
||||||
|
|
|
@ -46,9 +46,9 @@ class WC_REST_Product_Categories_V1_Controller extends WC_REST_Terms_Controller
|
||||||
/**
|
/**
|
||||||
* Prepare a single product category output for response.
|
* Prepare a single product category output for response.
|
||||||
*
|
*
|
||||||
* @param WP_Term $item Term object.
|
* @param WP_Term $item Term object.
|
||||||
* @param WP_REST_Request $request
|
* @param WP_REST_Request $request Request instance.
|
||||||
* @return WP_REST_Response $response
|
* @return WP_REST_Response
|
||||||
*/
|
*/
|
||||||
public function prepare_item_for_response( $item, $request ) {
|
public function prepare_item_for_response( $item, $request ) {
|
||||||
// Get category display type.
|
// Get category display type.
|
||||||
|
@ -64,13 +64,14 @@ class WC_REST_Product_Categories_V1_Controller extends WC_REST_Terms_Controller
|
||||||
'parent' => (int) $item->parent,
|
'parent' => (int) $item->parent,
|
||||||
'description' => $item->description,
|
'description' => $item->description,
|
||||||
'display' => $display_type ? $display_type : 'default',
|
'display' => $display_type ? $display_type : 'default',
|
||||||
'image' => array(),
|
'image' => null,
|
||||||
'menu_order' => (int) $menu_order,
|
'menu_order' => (int) $menu_order,
|
||||||
'count' => (int) $item->count,
|
'count' => (int) $item->count,
|
||||||
);
|
);
|
||||||
|
|
||||||
// Get category image.
|
// Get category image.
|
||||||
if ( $image_id = get_woocommerce_term_meta( $item->term_id, 'thumbnail_id' ) ) {
|
$image_id = get_woocommerce_term_meta( $item->term_id, 'thumbnail_id' );
|
||||||
|
if ( $image_id ) {
|
||||||
$attachment = get_post( $image_id );
|
$attachment = get_post( $image_id );
|
||||||
|
|
||||||
$data['image'] = array(
|
$data['image'] = array(
|
||||||
|
@ -106,8 +107,8 @@ class WC_REST_Product_Categories_V1_Controller extends WC_REST_Terms_Controller
|
||||||
/**
|
/**
|
||||||
* Update term meta fields.
|
* Update term meta fields.
|
||||||
*
|
*
|
||||||
* @param WP_Term $term
|
* @param WP_Term $term Term object.
|
||||||
* @param WP_REST_Request $request
|
* @param WP_REST_Request $request Request instance.
|
||||||
* @return bool|WP_Error
|
* @return bool|WP_Error
|
||||||
*/
|
*/
|
||||||
protected function update_term_meta_fields( $term, $request ) {
|
protected function update_term_meta_fields( $term, $request ) {
|
||||||
|
@ -145,7 +146,10 @@ class WC_REST_Product_Categories_V1_Controller extends WC_REST_Terms_Controller
|
||||||
|
|
||||||
// Set the image title.
|
// Set the image title.
|
||||||
if ( ! empty( $request['image']['title'] ) ) {
|
if ( ! empty( $request['image']['title'] ) ) {
|
||||||
wp_update_post( array( 'ID' => $image_id, 'post_title' => wc_clean( $request['image']['title'] ) ) );
|
wp_update_post( array(
|
||||||
|
'ID' => $image_id,
|
||||||
|
'post_title' => wc_clean( $request['image']['title'] ),
|
||||||
|
) );
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
delete_woocommerce_term_meta( $id, 'thumbnail_id' );
|
delete_woocommerce_term_meta( $id, 'thumbnail_id' );
|
||||||
|
|
Loading…
Reference in New Issue