You are here

function charts_graphs_uninstall in Charts and Graphs 6.2

Same name and namespace in other branches
  1. 7.2 charts_graphs.install \charts_graphs_uninstall()
  2. 7 charts_graphs.install \charts_graphs_uninstall()

Implementation of hook_uninstall().

File

./charts_graphs.install, line 12
Install file for Charts and Graphs module.

Code

function charts_graphs_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'charts_graphs_%%'");
  cache_clear_all('variables', 'cache');
}