Hi All,
So with the plugin I am currently writing, there aren't really any settings as such however it does create templates and database tables.
My assumption would be to
So now what would I end up doing with activate and deactivate in these circumstances as these actions are more used when removing the plugin, or is it better to have these in activate and deactivate?
[/code]
So with the plugin I am currently writing, there aren't really any settings as such however it does create templates and database tables.
My assumption would be to
plugin_install() {
install tables
install tempate
}
plugin_uninstall() {
remove templates
remove tables
}
So now what would I end up doing with activate and deactivate in these circumstances as these actions are more used when removing the plugin, or is it better to have these in activate and deactivate?
[/code]