Dateien nach "/" hochladen

This commit is contained in:
2025-12-10 09:30:35 +00:00
parent a06320d61e
commit f1df08ce63
2 changed files with 433 additions and 0 deletions

14
uninstall.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
// uninstall.php
if (!defined('WP_UNINSTALL_PLUGIN')) {
exit;
}
// Alle Optionen löschen
delete_option('fsp_events');
delete_option('fsp_music_consent');
$fixed_events_keys = ['advent', 'christmas', 'newyear', 'halloween', 'easter'];
foreach ($fixed_events_keys as $key) {
delete_option("fsp_fixed_{$key}");
}