dispatch(); $messages = array_merge( Advanced_Ads_Import::get_instance()->get_messages(), Advanced_Ads_Export::get_instance()->get_messages() ); include ADVADS_BASE_PATH . 'modules/import-export/views/page.php'; } } add_action( 'advanced-ads-cleanup-import-file', 'advads_delete_old_import_file' ); /** * Delete old import file via cron * */ function advads_delete_old_import_file( $path ) { //error_log( 'delete_old_xml_file ' . $path ); if ( file_exists( $path ) ) { @unlink( $path ); } }