You are here

crumbs.install in Crumbs, the Breadcrumbs suite 7

Same filename and directory in other branches
  1. 6.2 crumbs.install
  2. 7.2 crumbs.install

Install, update and uninstall functions for the crumbs module.

File

crumbs.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the crumbs module.
 */

/**
 * Implements hook_uninstall().
 */
function crumbs_uninstall() {
  variable_del('crumbs');
  variable_del('crumbs_weights');
  variable_del('crumbs_show_current_page');
  variable_del('crumbs_node_parent_patterns');
}

Functions

Namesort descending Description
crumbs_uninstall Implements hook_uninstall().