You are here

outline_designer.install in Outline Designer 6

Install, update and uninstall functions for the outline_designer module.

File

outline_designer.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the outline_designer module.
 */
function outline_designer_install() {
}
function outline_designer_uninstall() {

  // Delete variables
  $variables = array(
    'outline_designer_theme',
    'outline_designer_collapse_toggle',
    'outline_designer_context_menu_exclusion_matrix',
  );
  foreach (node_get_types() as $type_name => $type) {
    $variables[] = 'outline_designer_' . $type_name . '_icon';
  }
  foreach ($variables as $variable) {
    variable_del($variable);
  }
}

Functions

Namesort descending Description
outline_designer_install @file Install, update and uninstall functions for the outline_designer module.
outline_designer_uninstall