You are here

fiu.install in Fine Image Upload 8.2

Same filename and directory in other branches
  1. 8 fiu.install

Install, update, and uninstall functions for the fiu module.

File

fiu.install
View source
<?php

/**
 * @file
 * Install, update, and uninstall functions for the fiu module.
 */
use Drupal\image\Entity\ImageStyle;

/**
 * Implements hook_uninstall().
 */
function fiu_uninstall() {
  ImageStyle::load('fine_image')
    ->delete();
}

Functions

Namesort descending Description
fiu_uninstall Implements hook_uninstall().