deactivator.php in Automatic YouTube Gallery – Embed Auto-Updating YouTube Video Galleries, Feeds, Playlists & Channels 2.2.0, at includes/deactivator.php
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Fired during plugin deactivation |
| 5 | * |
| 6 | * @link https://plugins360.com |
| 7 | * @since 1.0.0 |
| 8 | * |
| 9 | * @package Automatic_YouTube_Gallery |
| 10 | */ |
| 11 | |
| 12 | // Exit if accessed directly |
| 13 | if ( ! defined( 'WPINC' ) ) { |
| 14 | die; |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * AYG_Deactivator class. |
| 19 | * |
| 20 | * @since 1.0.0 |
| 21 | */ |
| 22 | class AYG_Deactivator { |
| 23 | |
| 24 | /** |
| 25 | * Called when the plugin is deactivated. |
| 26 | * |
| 27 | * @since 1.0.0 |
| 28 | */ |
| 29 | public static function deactivate() { } |
| 30 | |
| 31 | } |
| 32 |