outline_child_pages.install in Outline Designer 6
Same filename and directory in other branches
Install, update and uninstall functions for the outline_child_pages module.
File
outline_child_pages/outline_child_pages.installView 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
Name![]() |
Description |
---|---|
outline_child_pages_install | @file Install, update and uninstall functions for the outline_child_pages module. |
outline_child_pages_uninstall |