# booktics/trunk/base/deactivate.php

Booktics – Appointment Booking Calendar for Service Businesses, version trunk. 24 lines.

- Page: https://pluginprobe.com/plugins/booktics/trunk/code/base/deactivate.php
- Raw: https://pluginprobe.com/plugins/booktics/trunk/raw/base/deactivate.php
- Modified: 2026-03-09T09:31:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/booktics/trunk/code/base/deactivate.php#L10-L20`.

```php
<?php

namespace Booktics;

if ( ! defined( 'ABSPATH' ) ) {
    exit;
}

/**
 * Deactivation class
 *
 * @package Booktics
 */
class Deactivate {
    /**
     * Deactivation hook
     *
     * @return  void
     */
    public static function handle(): void {
        // TODO: Implement deactivation actions.
    }
}

```
