WC_Download_Handler::check_downloads_remaining PHP Méthode

check_downloads_remaining() private static méthode

Check if there are downloads remaining.
private static check_downloads_remaining ( WC_Customer_Download $download )
$download WC_Customer_Download
    private static function check_downloads_remaining($download)
    {
        if (0 >= $download->get_downloads_remaining()) {
            self::download_error(__('Sorry, you have reached your download limit for this file', 'woocommerce'), '', 403);
        }
    }