woocommerce/templates/myaccount/my-downloads.php

50 lines
1.8 KiB
PHP
Raw Normal View History

<?php
/**
* My Orders
*
* Shows recent orders on the account page
*
2015-10-03 07:58:08 +00:00
* This template can be overridden by copying it to yourtheme/woocommerce/myaccount/my-downloads.php
*
* HOWEVER, on occasion WooCommerce will need to update template files and you (the theme developer)
* will need to copy the new files to your theme to maintain compatibility. We try to do this
* as little as possible, but it does happen. When this occurs the version of the template file will
* be bumped and the readme will list any important changes.
*
* @see http://docs.woothemes.com/document/template-structure/
* @author WooThemes
* @package WooCommerce/Templates
2012-12-23 12:19:56 +00:00
* @version 2.0.0
*/
2014-04-23 10:35:43 +00:00
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
2014-04-23 10:35:43 +00:00
}
2013-11-25 14:01:32 +00:00
if ( $downloads = WC()->customer->get_downloadable_products() ) : ?>
<?php do_action( 'woocommerce_before_available_downloads' ); ?>
<h2><?php echo apply_filters( 'woocommerce_my_account_my_downloads_title', __( 'Available Downloads', 'woocommerce' ) ); ?></h2>
2012-12-23 12:19:56 +00:00
<ul class="digital-downloads">
<?php foreach ( $downloads as $download ) : ?>
<li>
<?php
do_action( 'woocommerce_available_download_start', $download );
2012-12-23 12:19:56 +00:00
if ( is_numeric( $download['downloads_remaining'] ) )
echo apply_filters( 'woocommerce_available_download_count', '<span class="count">' . sprintf( _n( '%s download remaining', '%s downloads remaining', $download['downloads_remaining'], 'woocommerce' ), $download['downloads_remaining'] ) . '</span> ', $download );
2012-12-23 12:19:56 +00:00
echo apply_filters( 'woocommerce_available_download_link', '<a href="' . esc_url( $download['download_url'] ) . '">' . $download['download_name'] . '</a>', $download );
2012-12-23 12:19:56 +00:00
do_action( 'woocommerce_available_download_end', $download );
?>
</li>
<?php endforeach; ?>
</ul>
<?php do_action( 'woocommerce_after_available_downloads' ); ?>
<?php endif; ?>