You are here

function image_ncck_photobucket_embedded_link in Embedded Media Field 5

hook image_ncck_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

1 call to image_ncck_photobucket_embedded_link()
image_ncck_photobucket_image_title in contrib/image_ncck/providers/photobucket.inc
implement image_ncck_PROVIDER_image_title

File

contrib/image_ncck/providers/photobucket.inc, line 61

Code

function image_ncck_photobucket_embedded_link($code, $data) {
  return "http://s{$data['server']}.photobucket.com/albums/{$data['album']}/{$data['owner']}/?action=view&current={$code}";
}