open_readspeaker.install in Open ReadSpeaker 7
Same filename and directory in other branches
Installation file.
File
open_readspeaker.installView 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
Name | Description |
---|---|
open_readspeaker_uninstall | Implements hook_uninstall(). |