You are here

function uif_plus_uninstall in User Import Framework Plus 7

Implements hook_uninstall().

File

./uif_plus.install, line 19
User import from a CSV file.

Code

function uif_plus_uninstall() {
  db_query('DELETE FROM {variable} WHERE name LIKE :uif_plus', array(
    ':uif_plus' => 'uif_plus_' . '%',
  ));
}