wc_get_customer_download_permissions دریافت اجازه نامه دانلود برای مشتری
تابع ووکامرسی wc_get_customer_download_permissions – دریافت اجازه نامه دانلود برای مشتری از طریق دیتابیس
Syntax – سینتکس
(array) wc_get_customer_download_permissions( (int) $customer_id );
Parameters – پارامتر ها (1)
- 1- $customer_id (int)
Usage – نحوه استفاده
if ( !function_exists( 'wc_get_customer_download_permissions' ) ) { require_once ABSPATH . PLUGINDIR . 'woocommerce/includes/wc-user-functions.php'; } // The customer id. $customer_id = -1; // NOTICE! Understand what this does before running. $result = wc_get_customer_download_permissions($customer_id);
Defined – محل تعریف
/includes/wc-user-functions.php
function wc_get_customer_download_permissions( $customer_id ) { $data_store = WC_Data_Store::load( 'customer-download' ); return apply_filters( 'woocommerce_permission_list', $data_store->get_downloads_for_customer( $customer_id ), $customer_id ); }
versions – نسخه ها
از نسخه : 3.0.2
نسخه فعلی : 3.0.6
دیگر نسخه ها : 3.0.6 , 3.0.5 , 3.0.4 , 3.0.3 , 3.0.2
ارسال نظر