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

@ -25,7 +25,7 @@ function edd_admin_header() {
$current_page = ! empty( $_GET['page'] ) ? $_GET['page'] : '';
$is_single_view = (bool) apply_filters( 'edd_admin_is_single_view', ! empty( $_GET['view'] ) );
$page_title = '';
$page_title = __( 'Downloads', 'easy-digital-downloads' );
switch( $current_page ) {
case 'edd-settings':
$page_title = __( 'Settings', 'easy-digital-downloads' );
@ -45,18 +45,19 @@ function edd_admin_header() {
case 'edd-tools':
$page_title = __( 'Tools', 'easy-digital-downloads' );
break;
case 'edd-addons':
$page_title = __( 'View Extensions', 'easy-digital-downloads' );
if ( edd_is_pro() ) {
$page_title = __( 'Manage Extensions', 'easy-digital-downloads' );
}
break;
default:
if ( ! empty( $_GET['page'] ) ) {
$page_title = ucfirst( str_replace( array( 'edd-', 'fes-' ), '', $current_page ) );
} else {
if ( ! empty( $_GET['post_type'] ) ) {
$post_type = get_post_type_object( $_GET['post_type'] );
$page_title = $post_type->labels->name;
} else {
$page_title = __( 'Downloads', 'easy-digital-downloads' );
}
} elseif ( ! empty( $_GET['post_type'] ) ) {
$post_type = get_post_type_object( $_GET['post_type'] );
$page_title = $post_type->labels->name;
}
break;
}
@ -223,7 +224,11 @@ function edd_options_page_secondary_nav( $active_tab = '', $section = '', $secti
// Add to links array
$links[ $section_id ] = '<li class="' . esc_attr( $class ) . '"><a class="' . esc_attr( $class ) . '" href="' . esc_url( $tab_url ) . '">' . esc_html( $section_name ) . '</a><li>';
} ?>
}
if ( count( $links ) < 2 ) {
return;
}
?>
<div class="wp-clearfix">
<ul class="subsubsub edd-settings-sub-nav">