You are here

function image_slider_uninstall in Image sliders 8

Implements hook_uninstall().

File

./image_slider.install, line 13
Install, update and uninstall functions for the image_slider module.

Code

function image_slider_uninstall() {
  ImageStyle::load('image_slider_gallery')
    ->delete();
  ImageStyle::load('image_slider_vertical_thumb_gallery')
    ->delete();
}