You are here

function emaudio_odeo_thumbnail in Embedded Media Field 6.3

Same name and namespace in other branches
  1. 5 contrib/emaudio/providers/odeo.inc \emaudio_odeo_thumbnail()
  2. 6 contrib/emaudio/providers/odeo.inc \emaudio_odeo_thumbnail()

Implementation of hook emaudio_odeo_thumbnail().

Returns the external url for a thumbnail of a specific audio. TODO: make the args: ($embed, $field, $item), with $field/$item provided if we need it, but otherwise simplifying things.

Parameters

$field: The field of the requesting node.

$item: The actual content of the field from the requesting node.

Return value

A URL pointing to the thumbnail.

File

contrib/emaudio/providers/odeo.inc, line 106
This include processes Odeo audio files for use by emaudio.module.

Code

function emaudio_odeo_thumbnail($field, $item, $formatter, $node, $width, $height) {
  return '';
}