PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
dokan-lite
/
templates
/
orders
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?> <div class="dokan-panel dokan-panel-default"> <div class="dokan-panel-heading" style="overflow: hidden;"> <a class="title" data-toggle="collapse" data-parent="#accordion" href="#collapse-<?php echo esc_attr( $download->download_id ); ?>"> <?php echo wp_kses_post( '#' . esc_attr( absint( dokan_get_prop( $product, 'id' ) ) ) . ' — ' . apply_filters( 'woocommerce_admin_download_permissions_title', $product->get_title(), $download->product_id, $download->order_id, $download->order_key, $download->download_id ) . ' — ' . sprintf( __( 'File %d: %s', 'dokan-lite' ), $file_count, wc_get_filename_from_url( $product->get_file_download_path( $download->download_id ) ) ) ); ?> </a> <button rel="<?php echo esc_attr( absint( $download->product_id ) ) . ',' . esc_attr( $download->download_id ); ?>" class="revoke_access btn btn-danger btn-sm pull-right" data-order-id="<?php echo esc_attr( $download->order_id ); ?>" data-permission-id="<?php echo esc_attr( $download->permission_id ); ?>" data-nonce="<?php echo esc_attr( wp_create_nonce( 'revoke-access' ) ); ?>" > <?php esc_html_e( 'Revoke Access', 'dokan-lite' ); ?> </button> </div> <div id="collapse-<?php echo esc_attr( $download->download_id ); ?>" class="panel-collapse collapse"> <div class="panel-body"> <table cellpadding="0" cellspacing="0" class="wc-metabox-content"> <tbody> <tr> <td width="20%"> <label><?php esc_html_e( 'Downloaded', 'dokan-lite' ); ?></label><br> <?php echo wp_kses_post( sprintf( _n('%s time', '%s times', absint( $download->download_count ), 'dokan-lite'), absint( $download->download_count ) ) ); ?> </td> <td width="30%"> <label><?php esc_html_e( 'Downloads Remaining', 'dokan-lite' ); ?>:</label> <input type="hidden" name="product_id[<?php echo esc_attr( $loop ); ?>]" value="<?php echo esc_attr( absint( $download->product_id ) ); ?>" /> <input type="hidden" name="download_id[<?php echo esc_attr( $loop ); ?>]" value="<?php echo esc_attr( $download->download_id ); ?>" /> <input type="number" step="1" min="0" class="form-input" name="downloads_remaining[<?php echo esc_attr( $loop ); ?>]" value="<?php echo esc_attr( $download->downloads_remaining ); ?>" placeholder="<?php esc_attr_e( 'Unlimited', 'dokan-lite' ); ?>" /> </td> <td width="33%"> <label><?php esc_html_e( 'Access Expires', 'dokan-lite' ); ?>:</label> <input type="text" class="short datepicker" name="access_expires[<?php echo esc_attr( $loop ); ?>]" value="<?php echo esc_attr( $download->access_expires ) > 0 ? esc_attr( date_i18n( 'Y-m-d', strtotime( $download->access_expires ) ) ) : ''; ?>" maxlength="10" placeholder="<?php esc_attr_e( 'Never', 'dokan-lite' ); ?>" pattern="[0-9]{4}-(0[1-9]|1[012])-(0[1-9]|1[0-9]|2[0-9]|3[01])" /> </td> </tr> </tbody> </table> </div> </div> </div>
[+]
..
[-] orders.php
[edit]
[-] details.php
[edit]
[-] date-export.php
[edit]
[-] downloadable.php
[edit]
[-] orders-status-filter.php
[edit]
[-] order-fee-html.php
[edit]
[-] listing.php
[edit]
[-] order-download-permission-html.php
[edit]
[-] order-item-html.php
[edit]
[-] order-tax-html.php
[edit]