You are here

function theme_imagefield_multiple in ImageField 5.2

Same name and namespace in other branches
  1. 5 imagefield.module \theme_imagefield_multiple()

Formats an array of images.

Parameters

images: array of individually themed images

Return value

html string

File

./imagefield.module, line 1062
Defines an image field type. imagefield uses content.module to store the fid, and the drupal files table to store the actual file data.

Code

function theme_imagefield_multiple($images) {
  return implode("\n", $images);
}