Receiving following error during uninstall...
Fatal error: Call to undefined function media_variable_del() in ....media_responsive.install on line 14

Comments

amaria’s picture

This is actually because I had disabled the Media module. Not sure what could be done about it. Drupal allows you to uninstall this module without Media.

manumad40’s picture

This error is also displayed when Media is enabled, that is every time you try to uninstall Media Responsive.

The only way to uninstall this module via the administrative interface is commenting out the line 14 into media_responsive.install before attempting it.

tswaters’s picture

Issue summary: View changes

Also in the latest dev of media 2.0, both media_variable_del and media_variable_set no longer exist.

In install :
variable_set('media__wysiwyg_default_view_mode', 'media_responsive');

and uninstall :
variable_del('media__wysiwyg_default_view_mode');

Katy Jockelson’s picture

#2 - thanks, helped me out.