20 lines
633 B
PHP
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.
|