You are here

function theme_media_gallery_extra_license in Media Gallery Extra 7

Wrapper for enable/disable theme_media_gallery_license() output.

1 string reference to 'theme_media_gallery_extra_license'
media_gallery_extra_theme_registry_alter in ./media_gallery_extra.module
Implements hook_theme_registry_alter().

File

./media_gallery_extra.module, line 124
Provides additional features and improvements for the media gallery module.

Code

function theme_media_gallery_extra_license($variables) {
  if (variable_get('media_gallery_extra_license_enable', 1)) {
    return theme_media_gallery_license($variables);
  }
}