You are here

function theme_emthumb_multiple in Embedded Media Field 5

Same name and namespace in other branches
  1. 6.3 contrib/emthumb/emthumb.module \theme_emthumb_multiple()
  2. 6 contrib/emthumb/emthumb.module \theme_emthumb_multiple()
  3. 6.2 contrib/emthumb/emthumb.module \theme_emthumb_multiple()

formats an array of images.

Parameters

images: array of individually themed images

Return value

html string

File

contrib/emthumb/emthumb.module, line 560

Code

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