woocommerce-subscriptions/templates/html-early-renewal-modal-co...

52 lines
1.8 KiB
PHP

<?php
/**
* The template for displaying the early renewal modal.
*
* @since 2.6.0
* @version 2.6.0
* @var WC_Subscription $subscription The subscription being renewed early.
* @var WC_DateTime|null $new_next_payment_date The subscription's new next payment date after if the subscription is renewed early. Will be a WC_DateTime object or null if no next payment will occur.
* @var array $totals The subscription's totals array used to display the subscription totals table.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
$include_item_removal_links = $include_switch_links = false;
?>
<div class="wcs_early_renew_modal_totals_table">
<?php do_action( 'woocommerce_subscription_totals', $subscription, $include_item_removal_links, $totals, $include_switch_links ); ?>
</div>
<p class="wcs_early_renew_modal_note">
<?php
if ( ! empty( $new_next_payment_date ) ) {
echo wp_kses_post(
sprintf(
// Translators: 1: new next payment date.
__( 'By renewing your subscription early your next payment will be %s.', 'woocommerce-subscriptions' ),
'<strong>' . esc_html( date_i18n( wc_date_format(), $new_next_payment_date->getOffsetTimestamp() ) ) . '</strong>'
)
);
} else {
echo wp_kses_post(
sprintf(
// Translators: 1: currently schedulednext payment date.
__( 'By renewing your subscription early, your scheduled next payment on %1$s will be cancelled.', 'woocommerce-subscriptions' ),
'<strong>' . esc_html( date_i18n( wc_date_format(), $subscription->get_time( 'next_payment', 'site' ) ) ) . '</strong>'
)
);
}
?>
<br>
<?php
echo wp_kses_post(
sprintf(
// Translators: 1: opening link tag 2: closing link tag.
__( '%1$sClick here to renew early via the checkout.%2$s', 'woocommerce-subscriptions' ),
'<a href="' . esc_url( wcs_get_early_renewal_url( $subscription ) ) . '">',
'</a>'
)
)
?>
</p>