CatchThemesThemePlugin.php
4 years ago
class-catch-scroll-progress-bar-activator.php
4 years ago
class-catch-scroll-progress-bar-deactivator.php
4 years ago
class-catch-scroll-progress-bar-i18n.php
4 years ago
class-catch-scroll-progress-bar-loader.php
4 years ago
class-catch-scroll-progress-bar.php
4 years ago
ctp-tabs-removal.php
4 years ago
index.php
4 years ago
class-catch-scroll-progress-bar-deactivator.php
37 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Fired during plugin deactivation |
| 5 | * |
| 6 | * @link www.catchplugins.com |
| 7 | * @since 1.0.0 |
| 8 | * |
| 9 | * @package Catch_Scroll_Progress_Bar |
| 10 | * @subpackage Catch_Scroll_Progress_Bar/includes |
| 11 | */ |
| 12 | |
| 13 | /** |
| 14 | * Fired during plugin deactivation. |
| 15 | * |
| 16 | * This class defines all code necessary to run during the plugin's deactivation. |
| 17 | * |
| 18 | * @since 1.0.0 |
| 19 | * @package Catch_Scroll_Progress_Bar |
| 20 | * @subpackage Catch_Scroll_Progress_Bar/includes |
| 21 | * @author Catch Plugins <www.catchplugins.com> |
| 22 | */ |
| 23 | class Catch_Scroll_Progress_Bar_Deactivator { |
| 24 | |
| 25 | /** |
| 26 | * Short Description. (use period) |
| 27 | * |
| 28 | * Long Description. |
| 29 | * |
| 30 | * @since 1.0.0 |
| 31 | */ |
| 32 | public static function deactivate() { |
| 33 | |
| 34 | } |
| 35 | |
| 36 | } |
| 37 |