You are here

imagefield_extended.install in ImageField Extended 6.3

Same filename and directory in other branches
  1. 6.4 imagefield_extended.install

Standard installation hooks.

File

imagefield_extended.install
View source
<?php

/**
 * @file
 * Standard installation hooks.
 */

/**
 * Implementation of hook_uninstall().
 */
function imagefield_extended_uninstall() {
  variable_del('imagefield_extended_textfields');
  variable_del('imagefield_extended_checkboxes');
}

/**
 * Implementation of hook_update_63XX().
 */
function imagefield_extended_update_6300() {
  cache_clear_all();
  return array();
}

Functions

Namesort descending Description
imagefield_extended_uninstall Implementation of hook_uninstall().
imagefield_extended_update_6300 Implementation of hook_update_63XX().