You are here

function media_sharestream_update_7100 in Media: ShareStream 7

Delete preview.png out of the 'media-youtube' folder in the files directory.

File

./media_sharestream.install, line 56
Install, update and uninstall functions for the Media: ShareStream module.

Code

function media_sharestream_update_7100(&$sandbox) {

  // The preview image was initially saved to the wrong folder: media-youtube.
  $preview = 'public://media-youtube/preview.png';
  if (file_exists($preview)) {
    file_unmanaged_delete($preview);
  }
}