49 lines
1.5 KiB
PHP
49 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* View Subscription
|
|
*
|
|
* Shows the details of a particular subscription on the account page
|
|
*
|
|
* @author Prospress
|
|
* @package WooCommerce_Subscription/Templates
|
|
* @version 2.2.19
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
if ( empty( $subscription ) ) {
|
|
global $wp;
|
|
|
|
if ( ! isset( $wp->query_vars['view-subscription'] ) || 'shop_subscription' != get_post_type( absint( $wp->query_vars['view-subscription'] ) ) || ! current_user_can( 'view_order', absint( $wp->query_vars['view-subscription'] ) ) ) {
|
|
echo '<div class="woocommerce-error">' . esc_html__( 'Invalid Subscription.', 'woocommerce-subscriptions' ) . ' <a href="' . esc_url( wc_get_page_permalink( 'myaccount' ) ) . '" class="wc-forward">'. esc_html__( 'My Account', 'woocommerce-subscriptions' ) .'</a>' . '</div>';
|
|
return;
|
|
}
|
|
|
|
$subscription = wcs_get_subscription( $wp->query_vars['view-subscription'] );
|
|
}
|
|
|
|
wc_print_notices();
|
|
|
|
/**
|
|
* Gets subscription details table template
|
|
* @param WC_Subscription $subscription A subscription object
|
|
* @since 2.2.19
|
|
*/
|
|
do_action( 'woocommerce_subscription_details_table', $subscription );
|
|
|
|
/**
|
|
* Gets subscription totals table template
|
|
* @param WC_Subscription $subscription A subscription object
|
|
* @since 2.2.19
|
|
*/
|
|
do_action( 'woocommerce_subscription_totals_table', $subscription );
|
|
|
|
do_action( 'woocommerce_subscription_details_after_subscription_table', $subscription );
|
|
|
|
wc_get_template( 'order/order-details-customer.php', array( 'order' => $subscription ) );
|
|
?>
|
|
|
|
<div class="clear"></div>
|