Файловый менеджер - Редактировать - /home/harasnat/www/horse/wp-content/plugins/mollie-payments-for-woocommerce/src/Uninstall/CleanDb.php
Назад
<?php declare (strict_types=1); namespace Mollie\WooCommerce\Uninstall; use Mollie\WooCommerce\Shared\SharedDataDictionary; class CleanDb { /** * @var array */ protected $gatewayClassnames; /** * CleanDb constructor. */ public function __construct(array $gatewayClassnames) { $this->gatewayClassnames = $gatewayClassnames; } public function cleanAll() { $options = $this->allMollieOptionNames(); $this->deleteSiteOptions($options); $this->cleanScheduledJobs(); } /** * @param array $options */ protected function deleteSiteOptions(array $options): void { foreach ($options as $option) { delete_option($option); } } protected function cleanScheduledJobs() { as_unschedule_action('mollie_woocommerce_cancel_unpaid_orders'); } protected function allMollieOptionNames(): array { $names = SharedDataDictionary::MOLLIE_OPTIONS_NAMES; foreach ($this->gatewayClassnames as $gateway) { $option = strtolower($gateway) . "_settings"; $names[] = $option; } return $names; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка