redux-framework
Last commit date
ReduxCore
1 year ago
redux-core
1 year ago
redux-templates
1 year ago
sample
1 year ago
class-redux-framework-plugin.php
1 year ago
index.php
1 year ago
license.txt
1 year ago
readme.txt
1 year ago
redux-framework.php
1 year ago
uninstall.php
1 year ago
wpml-config.xml
1 year ago
uninstall.php
16 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Fired when the plugin is uninstalled. |
| 4 | * |
| 5 | * @package ReduxFramework\Uninstall |
| 6 | * @author Dovy Paukstys <info@simplerain.com> |
| 7 | * @since 3.0.0 |
| 8 | */ |
| 9 | |
| 10 | // If uninstall, not called from WordPress, then exit. |
| 11 | if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { |
| 12 | exit; |
| 13 | } |
| 14 | |
| 15 | // TODO: Define uninstall functionality here. |
| 16 |