PluginProbe ʕ •ᴥ•ʔ
Zenchef widget integration / trunk
Zenchef widget integration vtrunk
1.0.1 1.2.0 trunk 1.0.0
zenchef-widget-integration / src / uninstall_plugin.php
zenchef-widget-integration / src Last commit date
Backoffice 1 month ago View 1 year ago Widget 1 month ago register_backoffice_hooks.php 1 month ago register_global_hooks.php 1 month ago uninstall_plugin.php 1 year ago
uninstall_plugin.php
16 lines
1 <?php
2
3 namespace Zenchef\Widget;
4
5 use function Zenchef\Widget\Widget\Backoffice\remove_settings;
6
7 /**
8 * @return void
9 */
10 function uninstall_plugin()
11 {
12 require_once ROOT_PATH . 'src/Widget/Backoffice/remove_settings.php';
13
14 remove_settings();
15 }
16