You are here

function theme_emthumb_multiple in Embedded Media Field 6

Same name and namespace in other branches
  1. 5 contrib/emthumb/emthumb.module \theme_emthumb_multiple()
  2. 6.3 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 772
Allows for custom thumbnail overrides to Embedded Media Field.

Code

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