first step in making api keys modifiable in admin : using getter and setter instead of const

This commit is contained in:
asus
2024-03-20 10:10:48 +01:00
parent f9788fa96e
commit 4eee697078
5 changed files with 41 additions and 10 deletions

View File

@@ -19,7 +19,7 @@ function paypal_shortcode_content_CIPF() {
PLGNTLS_class::debug_infos();
$slug_paypal_redirection_success = PLGNTLS_class::SLUG_PAYPAL_REDIRECTION_SUCCESS;
$slug_paypal_redirection_failure = PLGNTLS_class::SLUG_PAYPAL_REDIRECTION_FAILURE;
$paypal_client_id = PLGNTLS_class::PAYPAL_CLIENT_ID;
$paypal_client_id = PLGNTLS_class::get_paypal_client_id();
$paypal_message_success = PLGNTLS_class::PAYPAL_MESSAGE_SUCCESS;
$paypal_message_failure = PLGNTLS_class::PAYPAL_MESSAGE_FAILURE;