# timetics/1.0.58/uninstall.php

Timetics – Appointment Booking Calendar &amp; Scheduling, version 1.0.58. 11 lines.

- Page: https://pluginprobe.com/plugins/timetics/1.0.58/code/uninstall.php
- Raw: https://pluginprobe.com/plugins/timetics/1.0.58/raw/uninstall.php
- Modified: 2026-06-11T08:51:10+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/timetics/1.0.58/code/uninstall.php#L10-L20`.

```php
<?php
/**
 * Fires when the user deletes the plugin from the Plugins screen.
 * Clears onboarding flags so a reinstall re-triggers the onboarding flow.
 */

defined( 'WP_UNINSTALL_PLUGIN' ) || exit;

delete_option( 'timetics_onboard_setup' );
delete_option( 'timetics_onboard_settings' );

```
