mirror of
https://github.com/debba/avadaforms-excel-export.git
synced 2025-08-18 19:51:14 +08:00
36 lines
675 B
PHP
36 lines
675 B
PHP
<?php
|
|
|
|
/**
|
|
* Fired during plugin deactivation
|
|
*
|
|
* @link https://www.dueclic.com
|
|
* @since 1.0.0
|
|
*
|
|
* @package Avadaforms_Excel_Export
|
|
* @subpackage Avadaforms_Excel_Export/includes
|
|
*/
|
|
|
|
/**
|
|
* Fired during plugin deactivation.
|
|
*
|
|
* This class defines all code necessary to run during the plugin's deactivation.
|
|
*
|
|
* @since 1.0.0
|
|
* @package Avadaforms_Excel_Export
|
|
* @subpackage Avadaforms_Excel_Export/includes
|
|
* @author dueclic <info@dueclic.com>
|
|
*/
|
|
class Avadaforms_Excel_Export_Deactivator {
|
|
|
|
/**
|
|
* Short Description. (use period)
|
|
*
|
|
* Long Description.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function deactivate() {
|
|
|
|
}
|
|
|
|
}
|