31 lines
510 B
PHP
31 lines
510 B
PHP
<?php
|
|
|
|
/**
|
|
* Fired during plugin deactivation.
|
|
*
|
|
* @link https://plugins360.com
|
|
* @since 1.0.0
|
|
*
|
|
* @package All_In_One_Video_Gallery
|
|
*/
|
|
// Exit if accessed directly
|
|
if ( !defined( 'WPINC' ) ) {
|
|
die;
|
|
}
|
|
/**
|
|
* AIOVG_Deactivator class.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
class AIOVG_Deactivator {
|
|
/**
|
|
* Called when the plugin is deactivated.
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
public static function deactivate() {
|
|
delete_option( 'rewrite_rules' );
|
|
}
|
|
|
|
}
|