get_error_message() ); } wcs_set_objects_property( $renewal_order, 'subscription_renewal', $subscription->get_id(), 'save' ); return apply_filters( 'wcs_renewal_order_created', $renewal_order, $subscription ); } /** * Check if a given order is a subscription renewal order. * * @param WC_Order|int $order The WC_Order object or ID of a WC_Order order. * @since 2.0 */ function wcs_order_contains_renewal( $order ) { if ( ! is_a( $order, 'WC_Abstract_Order' ) ) { $order = wc_get_order( $order ); } if ( wcs_is_order( $order ) && wcs_get_objects_property( $order, 'subscription_renewal' ) ) { $is_renewal = true; } else { $is_renewal = false; } return apply_filters( 'woocommerce_subscriptions_is_renewal_order', $is_renewal, $order ); } /** * Checks the cart to see if it contains a subscription product renewal. * * @param bool | Array The cart item containing the renewal, else false. * @return string * @since 2.0 */ function wcs_cart_contains_renewal() { $contains_renewal = false; if ( ! empty( WC()->cart->cart_contents ) ) { foreach ( WC()->cart->cart_contents as $cart_item ) { if ( isset( $cart_item['subscription_renewal'] ) ) { $contains_renewal = $cart_item; break; } } } return apply_filters( 'wcs_cart_contains_renewal', $contains_renewal ); } /** * Checks the cart to see if it contains a subscription product renewal for a failed renewal payment. * * @param bool | Array The cart item containing the renewal, else false. * @return string * @since 2.0 */ function wcs_cart_contains_failed_renewal_order_payment() { $contains_renewal = false; $cart_item = wcs_cart_contains_renewal(); if ( false !== $cart_item && isset( $cart_item['subscription_renewal']['renewal_order_id'] ) ) { $renewal_order = wc_get_order( $cart_item['subscription_renewal']['renewal_order_id'] ); $is_failed_renewal_order = apply_filters( 'woocommerce_subscriptions_is_failed_renewal_order', $renewal_order->has_status( 'failed' ), $cart_item['subscription_renewal']['renewal_order_id'], $renewal_order->get_status() ); if ( $is_failed_renewal_order ) { $contains_renewal = $cart_item; } } return apply_filters( 'wcs_cart_contains_failed_renewal_order_payment', $contains_renewal ); } /** * Get the subscription to which a renewal order relates. * * @param WC_Order|int $order The WC_Order object or ID of a WC_Order order. * @since 2.0 */ function wcs_get_subscriptions_for_renewal_order( $order ) { if ( ! is_a( $order, 'WC_Abstract_Order' ) ) { $order = wc_get_order( $order ); } $subscriptions = array(); // Only use the order if we actually found a valid order object if ( is_a( $order, 'WC_Abstract_Order' ) ) { $subscription_ids = wcs_get_objects_property( $order, 'subscription_renewal', 'multiple' ); foreach ( $subscription_ids as $subscription_id ) { if ( wcs_is_subscription( $subscription_id ) ) { $subscriptions[ $subscription_id ] = wcs_get_subscription( $subscription_id ); } } } return apply_filters( 'wcs_subscriptions_for_renewal_order', $subscriptions, $order ); }