You are here

function draggableviews_uninstall in DraggableViews 6.3

Same name and namespace in other branches
  1. 6 draggableviews.install \draggableviews_uninstall()
  2. 6.2 draggableviews.install \draggableviews_uninstall()
  3. 7 draggableviews.install \draggableviews_uninstall()

Implements of hook_uninstall().

File

./draggableviews.install, line 99
Draggableviews defines a new database schema for saving the collapsed/expand state of views.

Code

function draggableviews_uninstall() {
  drupal_uninstall_schema('draggableviews');
  variable_del('draggableviews_repaired_msg');
}