You are here

function thunder_media_uninstall in Thunder 8.2

Uninstall the thunder media integration.

File

modules/thunder_media/thunder_media.install, line 35
Contains.

Code

function thunder_media_uninstall() {

  // Enable default media view.
  if ($thunder_media_view = View::load('thunder_media')) {
    $thunder_media_view
      ->setStatus(FALSE)
      ->save();
  }
  if ($media_view = View::load('media')) {
    $media_view
      ->setStatus(TRUE)
      ->save();
  }
}