Dateien nach "/" hochladen
This commit is contained in:
14
uninstall.php
Normal file
14
uninstall.php
Normal 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}");
|
||||
}
|
||||
Reference in New Issue
Block a user