'blue', 'mail_text' => $mail_text, ); update_option( 'atmention_options', $default_options ); } /** * Deletes the atmention options on uninstall */ public static function on_uninstall() { if ( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) { exit(); } delete_option( 'atmention_options' ); } }