37 lines
660 B
PHP
37 lines
660 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Fired during plugin deactivation
|
||
|
|
*
|
||
|
|
* @link https://https://dev.rapidev.tech/
|
||
|
|
* @since 1.0.0
|
||
|
|
*
|
||
|
|
* @package Aw_Rider_Traking
|
||
|
|
* @subpackage Aw_Rider_Traking/includes
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Fired during plugin deactivation.
|
||
|
|
*
|
||
|
|
* This class defines all code necessary to run during the plugin's deactivation.
|
||
|
|
*
|
||
|
|
* @since 1.0.0
|
||
|
|
* @package Aw_Rider_Traking
|
||
|
|
* @subpackage Aw_Rider_Traking/includes
|
||
|
|
* @author Abdul Wahab <admin@dev.rapidev.tech>
|
||
|
|
*/
|
||
|
|
class Aw_Rider_Traking_Deactivator {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Short Description. (use period)
|
||
|
|
*
|
||
|
|
* Long Description.
|
||
|
|
*
|
||
|
|
* @since 1.0.0
|
||
|
|
*/
|
||
|
|
public static function deactivate() {
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|