function emimage_custom_url_embedded_link in Embedded Media Field 6
Same name and namespace in other branches
- 6.3 contrib/emimage/providers/custom_url.inc \emimage_custom_url_embedded_link()
This hook of the emimage_PROVIDER_embedded_link($code) returns a link to view the content at the provider's site.
Parameters
$code The string containing the content to watch: @return a string containing the URL to view the image at the original provider's site.
File
- contrib/
emimage/ providers/ custom_url.inc, line 111
Code
function emimage_custom_url_embedded_link($code, $data) {
return $code;
}