outline_designer.install in Outline Designer 6
Same filename and directory in other branches
Install, update and uninstall functions for the outline_designer module.
File
outline_designer.installView 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
| 
            Name | 
                  Description | 
|---|---|
| outline_designer_install | @file Install, update and uninstall functions for the outline_designer module. | 
| outline_designer_uninstall |