This is more of a “best practices” than a question, but I was wondering, what to people typically remove when their plugin is removed? I have a plugin that does the following:
- registers custom post types
- registers custom taxonomies
- uses custom options
Right now my plugin removes all of the custom options as they are installed by the plugin and used mostly internally. Since the posts for the custom post type and terms for the custom taxonomy are added by the user, would be be appropriate to remove these?
In another answer I wrote about uninstall/activate/deactivate/upgrade routines. I guess most of the comments already tell it, but to sum it up:
On Uninstall the user simply wants to get rid of the plugin, so it’s fair to not leave any mess. Remove everything including tables, etc. Ok, if you got tables, you should maybe tell the user what your plugin is going to do. A simple
alert()
should do the trick.I think it’s important that you remove custom options by default (or maybe even give the user the chance to export/import them, depending on the depth/scope of your plug-in).
The user should definitely be prompted before deleting custom posts and taxonomies though (i.e. “Would you also like to delete…”). Maybe they wish to re-use the data with their own functions, another plug-in or otherwise.