| Server IP : 91.240.85.141 / Your IP : 216.73.216.223 Web Server : nginx/1.28.0 System : Linux nuevo.ru 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : ( 1029) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/wpface_ru_usr/data/www/wpface.ru/wp-content/plugins/yookassa/ |
Upload File : |
<?php
/**
* Fired when the plugin is uninstalled.
*
* When populating this file, consider the following flow
* of control:
*
* - This method should be static
* - Check if the $_REQUEST content actually is the plugin name
* - Run an admin referrer check to make sure it goes through authentication
* - Verify the output of $_GET makes sense
* - Repeat with other user roles. Best directly by using the links/query string parameters.
* - Repeat things for multisite. Once for a single site in the network, once sitewide.
*
*
* @since 1.0.0
*
* @package YooKassa
*/
// If uninstall not called from WordPress, then exit.
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit();
} else {
delete_option('yookassa_shop_id');
delete_option('yookassa_shop_password');
delete_option('yookassa_pay_mode');
delete_option('yookassa_epl_installments');
delete_option('yookassa_add_installments_block');
delete_option('yookassa_success');
delete_option('yookassa_fail');
delete_option('yookassa_tax_rates_enum');
delete_option('yookassa_enable_hold');
delete_option('yookassa_description_template');
delete_option('yookassa_enable_receipt');
delete_option('yookassa_debug_enabled');
delete_option('yookassa_default_tax_rate');
delete_option('yookassa_force_clear_cart');
delete_option('yookassa_tax_rate');
delete_option('yookassa_nps_vote_time');
}