You are here

function media_browser_plus_folder_update_file_locations_batch_complete in Media Browser Plus 7

Same name and namespace in other branches
  1. 7.2 includes/media_browser_plus.folders.inc \media_browser_plus_folder_update_file_locations_batch_complete()

Called on completion of the batch

Parameters

type $success:

type $results:

type $operations:

1 string reference to 'media_browser_plus_folder_update_file_locations_batch_complete'
media_browser_plus_folder_save_folder in includes/media_browser_plus.folders.inc
@todo Document what this function is does.

File

includes/media_browser_plus.folders.inc, line 542
Folder manipulation functions

Code

function media_browser_plus_folder_update_file_locations_batch_complete($success, $results, $operations) {
  if ($success) {
    drupal_set_message(t('Successfully updated all URIs'));
  }
  else {
    drupal_set_message(t('Error during media batch'), 'error');
  }
}