You are here

function ace_editor_uninstall in Ace Code Editor 7

Implements hook_uninstall().

File

./ace_editor.install, line 52
Install, update and uninstall functions for the module.

Code

function ace_editor_uninstall() {

  // Remove the associated variables.
  variable_del('ace_editor_assets');
  variable_del('ace_editor_autocomplete');
  variable_del('ace_editor_autowrap');
  variable_del('ace_editor_codefolding');
  variable_del('ace_editor_default_syntax');
  variable_del('ace_editor_filter_formats');
  variable_del('ace_editor_fontsize');
  variable_del('ace_editor_invisibles');
  variable_del('ace_editor_linehighlighting');
  variable_del('ace_editor_line_numbers');
  variable_del('ace_editor_printmargin');
  variable_del('ace_editor_tabsize');
  variable_del('ace_editor_theme');
}