You are here

backstretch.install in Backstretch 7.2

Contains install and update functions for Backstretch module.

File

backstretch.install
View source
<?php

/**
 * @file
 * Contains install and update functions for Backstretch module.
 */

/**
 * Implements hook_enable().
 */
function backstretch_enable() {

  // Clear Context's cache so we can see the reaction immediately.
  if (module_exists('context')) {
    context_invalidate_cache();
  }
}

Functions

Namesort descending Description
backstretch_enable Implements hook_enable().