You are here

function prev_next_uninstall in Previous/Next API 7

Same name and namespace in other branches
  1. 6 prev_next.install \prev_next_uninstall()
  2. 7.2 prev_next.install \prev_next_uninstall()

@todo Please document this function.

See also

http://drupal.org/node/1354

File

./prev_next.install, line 15
The (un)install and update code for the prev_next module.

Code

function prev_next_uninstall() {
  db_delete('variable')
    ->condition('name', 'prev_next%%', 'LIKE')
    ->execute();
}