You are here

function media_update_7221 in D7 Media 7.2

Same name and namespace in other branches
  1. 7.4 media.install \media_update_7221()
  2. 7.3 media.install \media_update_7221()

Enable the Media Bulk Upload submodule.

File

./media.install, line 1125
Install, update and uninstall functions for the Media module.

Code

function media_update_7221() {
  if (module_exists('multiform') && module_exists('plupload')) {
    module_enable(array(
      'media_bulk_upload',
    ));
  }
}