You are here

function theme_imagefield_formatter_url in ImageField 5.2

1 theme call to theme_imagefield_formatter_url()
imagefield_field_formatter in ./imagefield.module
Implementation of hook_field_formatter().

File

./imagefield.module, line 1008
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_formatter_url($url, $attributes = array()) {
  $attributes['class'] .= ' imagefield-formatter-path';
  return '<span ' . drupal_attributes($attributes) . '>' . $url . '</span>';
}