PluginProbe ʕ •ᴥ•ʔ
Browse
Analyzed
Analysis
Zenchef widget integration
/
1.3.0
Zenchef widget integration
v1.3.0
Switch version
1.3.0
1.0.1
1.2.0
trunk
1.0.0
Overview
Code
Analysis
zenchef-widget-integration
/
src
/
uninstall_plugin.php
zenchef-widget-integration
/
src
Last commit date
Backoffice
2 months ago
View
2 weeks ago
Widget
2 weeks ago
register_backoffice_hooks.php
2 months ago
register_global_hooks.php
2 weeks ago
uninstall_plugin.php
2 years 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