updated plugin Easy Digital Downloads version 3.1.1.2

This commit is contained in:
2023-03-17 22:34:04 +00:00
committed by Gitium
parent e8a66564bd
commit 19e086d1c4
647 changed files with 20986 additions and 27305 deletions
wp-content/plugins/easy-digital-downloads
assets
css
images
js
admin
edd-admin-customers.jsedd-admin-dashboard.jsedd-admin-discounts.jsedd-admin-downloads.jsedd-admin-email-tags.jsedd-admin-extension-manager.jsedd-admin-licensing.jsedd-admin-notes.jsedd-admin-notices.jsedd-admin-onboarding.jsedd-admin-orders.jsedd-admin-orders.js.mapedd-admin-pass-handler.jsedd-admin-payments.jsedd-admin-reports.jsedd-admin-settings.jsedd-admin-tax-rates.jsedd-admin-tax-rates.js.mapedd-admin-tools-export.jsedd-admin-tools-import.jsedd-admin-tools.jsedd-admin-upgrades.jsedd-admin.jsedd-ajax.jsedd-checkout-global.js
frontend
checkout
components
agree-to-terms
index.jsutils.js
edd-ajax.js
gateways
packages
paypal-checkout.js
utils
lite
easy-digital-downloads.php
includes
admin
ajax-functions.php
blocks
class-easy-digital-downloads.phpclass-edd-cli.phpclass-edd-license-handler.phpclass-edd-requirements-check.phpclass-stats.phpcomponent-functions.php
database
deprecated-functions.phpdiscount-functions.phpdownload-functions.php
emails
extensions
formatting.php
gateways
paypal-standard.php
paypal
stripe
assets
edd-stripe.php
includes
vendor
autoload.php
composer
stripe
stripe-php
CHANGELOG.mdMakefileREADME.mdVERSIONcomposer.jsoninit.php
lib
Account.php
ApiOperations
ApiRequestor.phpApiResource.phpApplicationFee.phpApplicationFeeRefund.phpBalance.phpBalanceTransaction.phpBankAccount.phpBaseStripeClient.phpBaseStripeClientInterface.php
BillingPortal
BitcoinReceiver.phpCapability.phpCard.phpCashBalance.phpCharge.php
Checkout
Collection.phpCoupon.phpCreditNote.phpCreditNoteLineItem.phpCustomer.phpDiscount.phpEphemeralKey.phpErrorObject.phpEvent.phpFile.php
FinancialConnections
FundingInstructions.php
HttpClient
Identity
Invoice.phpInvoiceItem.phpInvoiceLineItem.php
Issuing
LineItem.phpOrder.phpPaymentIntent.phpPaymentLink.phpPaymentMethod.phpPayout.phpPerson.phpPlan.phpPrice.phpProduct.phpPromotionCode.phpQuote.php
Radar
Recipient.phpRefund.php
Reporting
Review.phpSKU.phpSearchResult.php
Service
AbstractService.phpAccountService.phpApplePayDomainService.phpApplicationFeeService.phpBalanceTransactionService.php
BillingPortal
ChargeService.php
Checkout
CoreServiceFactory.phpCountrySpecService.phpCouponService.phpCreditNoteService.phpCustomerService.phpDisputeService.phpEventService.phpExchangeRateService.phpFileLinkService.phpFileService.php
FinancialConnections
Identity
InvoiceItemService.phpInvoiceService.php
Issuing
OrderReturnService.phpOrderService.phpPaymentIntentService.phpPaymentLinkService.phpPaymentMethodService.phpPayoutService.phpPlanService.phpPriceService.phpProductService.phpPromotionCodeService.phpQuoteService.php
Radar
RefundService.php
Reporting
ReviewService.phpSetupAttemptService.phpSetupIntentService.phpShippingRateService.php
Sigma
SkuService.phpSubscriptionItemService.phpSubscriptionScheduleService.phpSubscriptionService.phpTaxCodeService.phpTaxRateService.php
Terminal
TestHelpers
TopupService.phpTransferService.phpWebhookEndpointService.php
SetupAttempt.phpSetupIntent.phpShippingRate.phpSingletonApiResource.phpSource.phpStripe.phpStripeClient.phpStripeClientInterface.phpStripeObject.phpStripeStreamingClientInterface.phpSubscription.phpSubscriptionItem.phpSubscriptionSchedule.phpTaxCode.phpTaxId.phpTaxRate.php
Terminal
TestHelpers
Token.phpTopup.phpTransfer.phpTransferReversal.php
Util
WebhookSignature.php
phpstan-baseline.neonphpstan.neon.distupdate_certs.php
install.phpmisc-functions.php
orders
functions
payments
process-purchase.phpscripts.phpshortcodes.phptemplate-functions.phpuser-functions.php
users
languages
readme.txt
src
templates
uninstall.php
vendor

@ -2116,3 +2116,22 @@ function edd_clear_user_history_cache( $payment_id, $new_status, $old_status ) {
delete_transient( 'edd_user_' . $payment->user_id . '_purchases' );
}
}
/**
* Filters the WHERE SQL query for the edd_download_search.
* This searches the download titles only, not the excerpt/content.
*
* @since 3.1.0.2
* @deprecated 3.1.0.5
* @param string $where
* @param WP_Query $wp_query
* @return string
*/
function edd_ajax_filter_download_where( $where, $wp_query ) {
_edd_deprecated_function( __FUNCTION__, '3.1.0.5' );
$search = new EDD\Downloads\Search();
return $search->filter_where( $where, $wp_query );
}