You are here

jqp.install in jQuery Plugin Handler (JQP) 6.2

Delete all javascript library entries from the system table

File

jqp.install
View source
<?php

/**
 * @file
 *
 * Delete all javascript library entries from the system table
 */

/**
 * Implementation of hook_uninstall().
 */
function jqp_uninstall() {
  db_query("DELETE FROM {system} WHERE type = '%s'", 'javascript library');
}

Functions

Namesort descending Description
jqp_uninstall Implementation of hook_uninstall().