zenchef-widget-integration
Last commit date
js
1 year ago
languages
1 year ago
src
1 month ago
views
1 month ago
README.md
1 year ago
README.txt
1 month ago
configuration.php
1 month ago
index.php
1 year ago
uninstall.php
1 year ago
zenchef-widget-integration.php
1 month ago
uninstall.php
14 lines
| 1 | <?php |
| 2 | |
| 3 | use function Zenchef\Widget\uninstall_plugin; |
| 4 | use const Zenchef\Widget\ROOT_PATH; |
| 5 | |
| 6 | if (!defined('WP_UNINSTALL_PLUGIN') || WP_UNINSTALL_PLUGIN !== 'zenchef-widget-integration/zenchef-widget-integration.php') { |
| 7 | die; |
| 8 | } |
| 9 | |
| 10 | require_once __DIR__ . '/configuration.php'; |
| 11 | require_once ROOT_PATH . 'src/uninstall_plugin.php'; |
| 12 | |
| 13 | uninstall_plugin(); |
| 14 |