You are here

facebook_pull.install in Facebook Pull 7.2

Same filename and directory in other branches
  1. 7.3 facebook_pull.install
  2. 7 facebook_pull.install

File

facebook_pull.install
View 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

Namesort descending Description
facebook_pull_uninstall Implements hook_uninstall().