You are here

open_readspeaker.install in Open ReadSpeaker 7

Same filename and directory in other branches
  1. 8 open_readspeaker.install

Installation file.

File

open_readspeaker.install
View source
<?php

/**
 * @file
 * Installation file.
 */

/**
 * Implements hook_uninstall().
 */
function open_readspeaker_uninstall() {
  db_delete('variable')
    ->condition('name', 'open_readspeaker_%', 'LIKE')
    ->execute();
  cache_clear_all('variables', 'cache');
}

Functions

Namesort descending Description
open_readspeaker_uninstall Implements hook_uninstall().