You are here

mobile_switch_block.install in Mobile Switch Block 7.2

Same filename and directory in other branches
  1. 6 mobile_switch_block.install
  2. 7 mobile_switch_block.install

Install, update and uninstall functions for the Mobile Switch Block module.

File

mobile_switch_block.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the Mobile Switch Block module.
 */

/**
 * Implements hook_uninstall().
 */
function mobile_switch_block_uninstall() {
  $results = db_select('variable', 'v')
    ->fields('v', array(
    'name',
  ))
    ->condition('name', '%mobile_switch_block%', 'LIKE')
    ->execute()
    ->fetchAll();
  foreach ($results as $result) {
    variable_del($result->name);
  }
}

Functions