WC_Meta_Box_Order_Downloads::output( WP_Post $post )

Output the metabox.


Description Description


Parameters Parameters

$post

(Required)


Top ↑

Source Source

File: includes/admin/meta-boxes/class-wc-meta-box-order-downloads.php

25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
public static function output( $post ) {
    ?>
    <div class="order_download_permissions wc-metaboxes-wrapper">
 
        <div class="wc-metaboxes">
            <?php
            $data_store           = WC_Data_Store::load( 'customer-download' );
            $download_permissions = $data_store->get_downloads(
                array(
                    'order_id' => $post->ID,
                    'orderby'  => 'product_id',
                )
            );
 
            $product      = null;
            $loop         = 0;
            $file_counter = 1;
 
            if ( $download_permissions && sizeof( $download_permissions ) > 0 ) {
                foreach ( $download_permissions as $download ) {
                    if ( ! $product || $product->get_id() !== $download->get_product_id() ) {
                        $product      = wc_get_product( $download->get_product_id() );
                        $file_counter = 1;
                    }
 
                    // don't show permissions to files that have since been removed.
                    if ( ! $product || ! $product->exists() || ! $product->has_file( $download->get_download_id() ) ) {
                        continue;
                    }
 
                    // Show file title instead of count if set.
                    $file       = $product->get_file( $download->get_download_id() );
                    $file_count = isset( $file['name'] ) ? $file['name'] : sprintf( __( 'File %d', 'woocommerce' ), $file_counter );
 
                    include 'views/html-order-download-permission.php';
 
                    $loop++;
                    $file_counter++;
                }
            }
            ?>
        </div>
 
        <div class="toolbar">
            <p class="buttons">
                <select id="grant_access_id" class="wc-product-search" name="grant_access_id[]" multiple="multiple" style="width: 400px;" data-placeholder="<?php esc_attr_e( 'Search for a downloadable product&hellip;', 'woocommerce' ); ?>" data-action="woocommerce_json_search_downloadable_products_and_variations"></select>
                <button type="button" class="button grant_access">
                    <?php _e( 'Grant access', 'woocommerce' ); ?>
                </button>
            </p>
            <div class="clear"></div>
        </div>
 
    </div>
    <?php
}


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.