PluginProbe
OPcache Manager / 3.3.0
OPcache Manager v3.3.0
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.2.0 1.3.0 1.3.1 1.3.2 2.0.0 2.1.0 2.10.0 2.11.0 2.12.0 2.13.0 2.13.1 2.14.0 2.2.0 2.3.0 2.3.1 2.3.2 2.4.0 2.5.0 2.6.0 All 36 releases
opcache-manager / includes / plugin / class-deactivator.php

class-deactivator.php in OPcache Manager 3.3.0, at includes/plugin/class-deactivator.php

34 lines 528 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin deactivation handling.
4 *
5 * @package Plugin
6 * @author Pierre Lannoy <https://pierre.lannoy.fr/>.
7 * @since 1.0.0
8 */
9
10 namespace OPcacheManager\Plugin;
11
12 /**
13 * Fired during plugin deactivation.
14 *
15 * This class defines all code necessary to run during the plugin's deactivation.
16 *
17 * @package Plugin
18 * @author Pierre Lannoy <https://pierre.lannoy.fr/>.
19 * @since 1.0.0
20 */
21 class Deactivator {
22
23
24 /**
25 * Deactivate the plugin.
26 *
27 * @since 1.0.0
28 */
29 public static function deactivate() {
30
31 }
32
33 }
34