| 1 |
<?php |
| 2 |
/** |
| 3 |
* Install |
| 4 |
* |
| 5 |
* @package AutomatorWP\Install |
| 6 |
* @author AutomatorWP <contact@automatorwp.com>, Ruben Garcia <rubengcdev@gmail.com> |
| 7 |
* @since 1.0.0 |
| 8 |
*/ |
| 9 |
// Exit if accessed directly |
| 10 |
if( !defined( 'ABSPATH' ) ) exit; |
| 11 |
|
| 12 |
/** |
| 13 |
* AutomatorWP uninstallation |
| 14 |
* |
| 15 |
* @since 1.0.0 |
| 16 |
*/ |
| 17 |
function automatorwp_uninstall() { |
| 18 |
|
| 19 |
// Clear scheduled events |
| 20 |
automatorwp_clear_scheduled_events(); |
| 21 |
|
| 22 |
} |
| 23 |
|