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'
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);
}
}