function theme_linkimagefield_multiple in Link Image Field 5
formats an array of images.
Parameters
images: array of individually themed images
Return value
html string
File
- ./
linkimagefield.module, line 661 - Defines an link image field type. linkimagefield uses content.module to store the fid, and the drupal files table to store the actual file data.
Code
function theme_linkimagefield_multiple($images) {
return implode("\n", $images);
}