You are here

outline_child_pages.install in Outline Designer 7

Same filename and directory in other branches
  1. 6 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.
 */

/**
 * @todo Please document this function.
 * @see http://drupal.org/node/1354
 */
function outline_child_pages_install() {
}

/**
 * @todo Please document this function.
 * @see http://drupal.org/node/1354
 */
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 @todo Please document this function.
outline_child_pages_uninstall @todo Please document this function.