fiu.install in Fine Image Upload 8
Same filename and directory in other branches
Install, update, and uninstall functions for the fiu module.
File
fiu.installView 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
Name | Description |
---|---|
fiu_uninstall | Implements hook_uninstall(). |