google-site-kit
Last commit date
dist
2 days ago
gtg
7 months ago
includes
2 days ago
third-party
2 days ago
google-site-kit.php
2 days ago
readme.txt
2 days ago
uninstall.php
1 year ago
uninstall.php
21 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Uninstallation script for the plugin. |
| 4 | * |
| 5 | * @package Google\Site_Kit |
| 6 | * @copyright 2021 Google LLC |
| 7 | * @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 |
| 8 | * @link https://sitekit.withgoogle.com |
| 9 | */ |
| 10 | |
| 11 | // Prevent execution from directly accessing the file. |
| 12 | if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
| 13 | exit; |
| 14 | } |
| 15 | |
| 16 | // Load plugin main file to bootstrap infrastructure and add hooks. |
| 17 | require_once __DIR__ . '/google-site-kit.php'; |
| 18 | |
| 19 | // Fire action to trigger uninstallation logic. |
| 20 | do_action( 'googlesitekit_uninstallation' ); |
| 21 |