Release v1.17.10

This commit is contained in:
Ronny Grobel
2026-04-21 07:55:14 +02:00
commit 84b970b04f
258 changed files with 107458 additions and 0 deletions

25
includes/Deactivator.php Executable file
View File

@@ -0,0 +1,25 @@
<?php
/**
* Plugin deactivation handler.
*
* @package KGV\VereinManager
*/
namespace KGV\VereinManager;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
class Deactivator {
/**
* Deactivate plugin.
*
* @return void
*/
public static function deactivate() {
Plugin::clear_daily_optimization_schedule();
flush_rewrite_rules( false );
}
}