You are here

function entity_property_verbatim_get_url in Video Embed Field 7.2

Gets the property just as it is set in the data and converts to absolute url.

1 string reference to 'entity_property_verbatim_get_url'
video_embed_field_data_property_info in ./video_embed_field.field.inc
Defines info for the properties of the video_embed_field data structure.

File

./video_embed_field.field.inc, line 82
Implement a video field.

Code

function entity_property_verbatim_get_url($data, array $options, $name, $type, $info) {
  $property = entity_property_verbatim_get($data, $options, $name, $type, $info);
  return file_create_url($property);
}