robotstxt-smtp-amazonses/uninstall.php
2026-02-09 11:58:59 +00:00

20 lines
633 B
PHP

<?php
/**
* Uninstall routines for the Amazon SES extension.
*
* This add-on does not perform any cleanup on uninstall. All data cleanup
* (including Amazon SES credentials stored in the main SMTP plugin options)
* is handled by the core SMTP plugin when it is uninstalled.
*
* This ensures that:
* - If only the Amazon SES add-on is removed, the configuration remains intact
* - If the core SMTP plugin is removed, all data (including add-on data) is cleaned up
*
* @package Robotstxt_SMTP_AmazonSES
*/
if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
exit;
}
// No cleanup needed - handled by core SMTP plugin uninstall.