facebook_pull.install in Facebook Pull 7.2
Same filename and directory in other branches
File
facebook_pull.installView source
<?php
/**
* Implements hook_uninstall().
*/
function facebook_pull_uninstall() {
// We should delete variables and stuff and things.
db_delete('variable')
->condition('name', db_like('facebook_pull_') . '%', 'LIKE')
->execute();
cache_clear_all('variables', 'cache_bootstrap');
}
Functions
Name | Description |
---|---|
facebook_pull_uninstall | Implements hook_uninstall(). |