You are here

function theme_soundcloudfield_formatter_link in SoundCloud field 6

Theme function for 'link' field formatter.

Parameters

$element:

Return value

string

File

./soundcloudfield.module, line 469
SoundCloud CCK field.

Code

function theme_soundcloudfield_formatter_link($element) {
  $output = l($element['#item']['safe'], $element['#item']['safe']);
  return $output;
}