| 1 |
<?php |
| 2 |
|
| 3 |
namespace Booktics; |
| 4 |
|
| 5 |
/** |
| 6 |
* Activation class |
| 7 |
* |
| 8 |
* @package Booktics |
| 9 |
*/ |
| 10 |
class Activate { |
| 11 |
/** |
| 12 |
* Activation hook |
| 13 |
* |
| 14 |
* @return void |
| 15 |
*/ |
| 16 |
public static function handle(): void { |
| 17 |
Installer::run(); |
| 18 |
self::set_default_options(); |
| 19 |
} |
| 20 |
|
| 21 |
private static function set_default_options(): void { |
| 22 |
if ( function_exists( 'booktics_update_option' ) ) { |
| 23 |
booktics_update_option( 'appointment_status', 'pending' ); |
| 24 |
booktics_update_option( 'appointment_statuses_for_blocked_slot', array( 'pending', 'approved' ) ); |
| 25 |
} |
| 26 |
} |
| 27 |
} |
| 28 |
|