function uif_uninstall in User Import Framework 7
Same name and namespace in other branches
- 6 uif.install \uif_uninstall()
Implementation of hook_uninstall().
File
- ./
uif.install, line 19 - Simple, extensible user import from a CSV file.
Code
function uif_uninstall() {
db_query('DELETE FROM {variable} WHERE name LIKE :uif', array(
':uif' => 'uif_' . '%',
));
}