You are here

function mediafront_get_field_value in MediaFront 7.2

Returns the field values for a media.

1 call to mediafront_get_field_value()
mediafront_get_node in ./mediafront.module
Provided a type, entity, and fields; this creaets a player node.

File

./mediafront.module, line 640

Code

function mediafront_get_field_value($type, $entity, $field) {
  $func = 'mediafront_get_' . $type . '_field_value';
  return $func($entity, $field);
}