class-wpel-activation.php
3 years ago
class-wpel-deactivate.php
3 years ago
class-wpel-uninstall.php
3 years ago
class-wpel-deactivate.php
40 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Class WPEL_Deactivate |
| 4 | * |
| 5 | * @package WPEL |
| 6 | * @category WordPress Plugin |
| 7 | * @version 2.3 |
| 8 | * @link https://www.webfactoryltd.com/ |
| 9 | * @license Dual licensed under the MIT and GPLv2+ licenses |
| 10 | */ |
| 11 | final class WPEL_Deactivate extends FWP_Register_Hook_Base_1x0x0 |
| 12 | { |
| 13 | |
| 14 | /** |
| 15 | * @var string |
| 16 | */ |
| 17 | protected $hook_type = 'deactivation'; |
| 18 | |
| 19 | /** |
| 20 | * Activate network |
| 21 | * @return void |
| 22 | */ |
| 23 | protected function network_procedure() |
| 24 | { |
| 25 | // network settings |
| 26 | delete_site_option( 'wpel-pointers' ); |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * Activate site |
| 31 | * @return void |
| 32 | */ |
| 33 | protected function site_procedure() |
| 34 | { |
| 35 | // delete options |
| 36 | delete_option( 'wpel-pointers' ); |
| 37 | } |
| 38 | |
| 39 | } |
| 40 |