Browse
For agents
About
Debug Log Manager – Conveniently Monitor and Inspect Errors
/
1.5.3
Debug Log Manager – Conveniently Monitor and Inspect Errors
v1.5.3
Switch version
2.5.2
2.5.1
trunk
1.0.0
1.0.1
1.1.0
1.2.0
1.3.0
1.3.1
1.3.3
1.4.0
1.5.0
1.5.1
1.5.2
1.5.3
1.6.0
1.6.1
1.6.2
1.6.3
1.6.4
1.7.0
1.8.0
1.8.2
1.8.3
1.8.4
All 49 releases
Overview
Code
debug-log-manager
/
classes
/
class-deactivation.php
class-deactivation.php
in Debug Log Manager – Conveniently Monitor and Inspect Errors 1.5.3, at classes/class-deactivation.php
24 lines
307 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
namespace
DLM
\
Classes
;
4
5
/**
6
* Plugin Deactivation
7
*
8
*
@since
1.0.0
9
*/
10
class
Deactivation
{
11
12
/**
13
* Code that runs on plugin deactivation
14
*
15
*
@since
1.0.0
16
*/
17
public
function
deactivate
(
)
{
18
19
delete_option
(
'
debug_log_manager
'
)
;
20
delete_option
(
'
debug_log_manager_autorefresh
'
)
;
21
22
}
23
24
}