You are here

function easy_social_uninstall in Easy Social 7.2

Implements hook_uninstall().

File

./easy_social.install, line 17
Easy Social installation hooks.

Code

function easy_social_uninstall() {
  $result = db_select('variable', 'v')
    ->fields('v', array(
    'name',
  ))
    ->condition('name', db_like('easy_social_') . '%', 'LIKE')
    ->execute();
  foreach ($result as $row) {
    variable_del($row->name);
  }
}