You are here

function jqp_uninstall in jQuery Plugin Handler (JQP) 6.2

Implementation of hook_uninstall().

File

./jqp.install, line 12
Delete all javascript library entries from the system table

Code

function jqp_uninstall() {
  db_query("DELETE FROM {system} WHERE type = '%s'", 'javascript library');
}