Plugin uninstall,php

From Jomres v4 manual

Jump to: navigation, search

Do whatever you need to do here to drop any plugin's database tables/clean up files that might be been put outside of the remote_plugins/dummy_third_party_plugin directory by this plugin. Jomres will handle the removal of the dummy_third_party_plugin remote plugins folder itself.

eg.

  1. $table_name = " #__jomres_thirdpartyplugin_dummy_third_party_plugin";
  2.  
  3. $query= "DROP TABLE IF EXISTS `".$table_name."`";
  4. echo "Dropping table ".$table_name." <br>";
  5. if (!doInsertSql($query,'') )
  6. echo "<b>Error, unable to drop table ".$table_name."</b><br>";
  7. }
Personal tools