You are here

function ResourceStreamWrapper::htmlUrl in D7 Media 6

Return the html accessible URL for a resource.

Parameters

$url: Stream wrapper resource url.

Return value

string

Overrides ResourceStreamWrapperInterface::htmlUrl

1 method overrides ResourceStreamWrapper::htmlUrl()
ResourcePublicStreamWrapper::htmlUrl in resource/ResourcePublicStreamWrapper.inc
Return the HTML Url of a public file.

File

resource/ResourceStreamWrapper.inc, line 82

Class

ResourceStreamWrapper
A base class for Resource Stream Wrappers.

Code

function htmlUrl($url) {
  return $url;
}