| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- if ( ! defined( 'ABSPATH' ) ) {
- exit;
- }
- ?>
- <div class="wc-metabox closed">
- <h3 class="fixed">
- <button type="button" data-permission_id="<?php echo esc_attr( $download->get_id() ); ?>" rel="<?php echo esc_attr( $download->get_product_id() ) . ',' . esc_attr( $download->get_download_id() ); ?>" class="revoke_access button"><?php esc_html_e( 'Revoke access', 'woocommerce' ); ?></button>
- <div class="handlediv" aria-label="<?php esc_attr_e( 'Click to toggle', 'woocommerce' ); ?>"></div>
- <strong>
- <?php
- printf(
- '#%s — %s — %s: %s — ',
- esc_html( $product->get_id() ),
- esc_html( apply_filters( 'woocommerce_admin_download_permissions_title', $product->get_name(), $download->get_product_id(), $download->get_order_id(), $download->get_order_key(), $download->get_download_id() ) ),
- esc_html( $file_count ),
- esc_html( wc_get_filename_from_url( $product->get_file_download_path( $download->get_download_id() ) ) )
- );
- printf( _n( 'Downloaded %s time', 'Downloaded %s times', $download->get_download_count(), 'woocommerce' ), esc_html( $download->get_download_count() ) )
- ?>
- </strong>
- </h3>
- <table cellpadding="0" cellspacing="0" class="wc-metabox-content">
- <tbody>
- <tr>
- <td>
- <label><?php esc_html_e( 'Downloads remaining', 'woocommerce' ); ?></label>
- <input type="hidden" name="permission_id[<?php echo esc_attr( $loop ); ?>]" value="<?php echo esc_attr( $download->get_id() ); ?>" />
- <input type="number" step="1" min="0" class="short" name="downloads_remaining[<?php echo esc_attr( $loop ); ?>]" value="<?php echo esc_attr( $download->get_downloads_remaining() ); ?>" placeholder="<?php esc_attr_e( 'Unlimited', 'woocommerce' ); ?>" />
- </td>
- <td>
- <label><?php esc_html_e( 'Access expires', 'woocommerce' ); ?></label>
- <input type="text" class="short date-picker" name="access_expires[<?php echo esc_attr( $loop ); ?>]" value="<?php echo ! is_null( $download->get_access_expires() ) ? esc_attr( date_i18n( 'Y-m-d', $download->get_access_expires()->getTimestamp() ) ) : ''; ?>" maxlength="10" placeholder="<?php esc_attr_e( 'Never', 'woocommerce' ); ?>" pattern="<?php echo esc_attr( apply_filters( 'woocommerce_date_input_html_pattern', '[0-9]{4}-(0[1-9]|1[012])-(0[1-9]|1[0-9]|2[0-9]|3[01])' ) ); ?>" />
- </td>
- <td>
- <label><?php esc_html_e( 'Customer download link', 'woocommerce' ); ?></label>
- <?php
- $download_link = add_query_arg(
- array(
- 'download_file' => $download->get_product_id(),
- 'order' => $download->get_order_key(),
- 'email' => urlencode( $download->get_user_email() ),
- 'key' => $download->get_download_id(),
- ), trailingslashit( home_url() )
- );
- ?>
- <a id="copy-download-link" class="button" href="<?php echo esc_url( $download_link ); ?>" data-tip="<?php esc_attr_e( 'Copied!', 'woocommerce' ); ?>" data-tip-failed="<?php esc_attr_e( 'Copying to clipboard failed. You should be able to right-click the button and copy.', 'woocommerce' ); ?>"><?php esc_html_e( 'Copy link', 'woocommerce' ); ?></a>
- </td>
- <td>
- <label><?php esc_html_e( 'Customer download log', 'woocommerce' ); ?></label>
- <?php
- $report_url = add_query_arg(
- 'permission_id',
- rawurlencode( $download->get_id() ),
- admin_url( 'admin.php?page=wc-reports&tab=orders&report=downloads' )
- );
- echo '<a class="button" href="' . esc_url( $report_url ) . '">';
- esc_html_e( 'View report', 'woocommerce' );
- echo '</a>';
- ?>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
|