You are here

outline_child_pages.install in Outline Designer 6

Same filename and directory in other branches
  1. 7 outline_child_pages/outline_child_pages.install

Install, update and uninstall functions for the outline_child_pages module.

File

outline_child_pages/outline_child_pages.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the outline_child_pages module.
 */
function outline_child_pages_install() {
}
function outline_child_pages_uninstall() {

  // Delete variables
  $variables = array(
    'outline_child_pages_type',
  );
  foreach ($variables as $variable) {
    variable_del($variable);
  }
}

Functions

Namesort descending Description
outline_child_pages_install @file Install, update and uninstall functions for the outline_child_pages module.
outline_child_pages_uninstall