You are here

public function EmapiMedia::url in Embedded Media Field 6.3

Build the URL to the original location.

File

emapi/includes/emapi.class.media.inc, line 185
Base Embedded Media Object, to be extended by individual providers.

Class

EmapiMedia
@file Base Embedded Media Object, to be extended by individual providers.

Code

public function url() {
  return $this
    ->get_prefix_url() . $this
    ->get_value() . $this
    ->get_suffix_url();
}