Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
woocommerce-subscriptions
/
includes
/
payment-retry
/
admin
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Automatic Failed Payment Retries Meta Box * * Display the automatic failed payment retries on the Edit Order screen for an order that has been automatically retried. * * @author Prospress * @category Admin * @package WooCommerce Subscriptions/Admin/Meta Boxes * @version 2.1 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } /** * WCS_Meta_Box_Payment_Retries Class */ class WCS_Meta_Box_Payment_Retries { /** * Outputs the Payment retry metabox. * * @param WC_Order|WP_Post $order The order object or post object. */ public static function output( $order ) { // For backwards compatibility the $order parameter could be a Post. if ( is_a( $order, 'WP_Post' ) ) { $order = wc_get_order( $order->ID ); } if ( ! wcs_is_order( $order ) ) { return; } WC()->mailer(); $retries = WCS_Retry_Manager::store()->get_retries_for_order( $order->get_id() ); include_once( dirname( __FILE__ ) . '/html-retries-table.php' ); do_action( 'woocommerce_subscriptions_retries_meta_box', $order->get_id(), $retries ); } }