function media_gallery_styles_default_styles in Media Gallery 7
Same name and namespace in other branches
- 7.2 media_gallery.module \media_gallery_styles_default_styles()
Implements hook_styles_default_styles().
File
- ./
media_gallery.module, line 1569
Code
function media_gallery_styles_default_styles() {
return array(
'file' => array(
'styles' => array(
'media_gallery_thumbnail' => array(
'label' => 'Media gallery thumbnail',
'description' => 'A square thumbnail for display within a Media Gallery.',
),
'media_gallery_large' => array(
'label' => 'Media gallery large',
'description' => 'A large format for display within a Media Gallery.',
),
),
),
);
}