You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
386 B
PHP
17 lines
386 B
PHP
<?php
|
|
|
|
// if uninstall.php is not called by WordPress, then die
|
|
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
|
die();
|
|
}
|
|
|
|
if ( get_option( 'awsm_delete_data_on_uninstall' ) !== 'delete_data' ) {
|
|
return;
|
|
}
|
|
|
|
require_once dirname( __FILE__ ) . '/inc/class-awsm-job-openings-uninstall.php';
|
|
|
|
if ( class_exists( 'AWSM_Job_Openings_Uninstall' ) ) {
|
|
AWSM_Job_Openings_Uninstall::uninstall();
|
|
}
|