| 1 |
<?php |
| 2 |
|
| 3 |
namespace SyncBasalam\Actions\Controller; |
| 4 |
|
| 5 |
use SyncBasalam\Admin\Settings; |
| 6 |
|
| 7 |
defined('ABSPATH') || exit; |
| 8 |
class UpdateSettings extends ActionController |
| 9 |
{ |
| 10 |
public function __invoke() |
| 11 |
{ |
| 12 |
try { |
| 13 |
Settings::saveSettings(); |
| 14 |
} catch (\Exception $e) { |
| 15 |
wp_die('Error saving settings: ' . esc_html($e->getMessage())); |
| 16 |
} |
| 17 |
} |
| 18 |
} |
| 19 |
|