function theme_image_gallery_count in Image 7
Same name and namespace in other branches
- 6 contrib/image_gallery/image_gallery.module \theme_image_gallery_count()
Theme the count of gallery items on a gallery list.
1 theme call to theme_image_gallery_count()
- image_gallery_handler_field_gallery_count::render in contrib/
image_gallery/ views/ image_gallery_handler_field_gallery_count.inc - Return field html.
File
- contrib/
image_gallery/ image_gallery.module, line 164
Code
function theme_image_gallery_count($count) {
return format_plural($count, 'There is 1 image in this gallery', 'There are @count images in this gallery');
}