public function Local::getExternalUrl in Flysystem 7
Same name and namespace in other branches
- 8 src/Flysystem/Local.php \Drupal\flysystem\Flysystem\Local::getExternalUrl()
- 3.x src/Flysystem/Local.php \Drupal\flysystem\Flysystem\Local::getExternalUrl()
- 2.0.x src/Flysystem/Local.php \Drupal\flysystem\Flysystem\Local::getExternalUrl()
- 3.0.x src/Flysystem/Local.php \Drupal\flysystem\Flysystem\Local::getExternalUrl()
Returns a web accessible URL for the resource.
This function should return a URL that can be embedded in a web page and accessed from a browser. For example, the external URL of "youtube://xIpLd0WQKCY" might be "http://www.youtube.com/watch?v=xIpLd0WQKCY".
Parameters
string $uri: The URI to provide a URL for.
Return value
string Returns a string containing a web accessible URL for the resource.
Overrides FlysystemPluginBase::getExternalUrl
File
- src/
Flysystem/ Local.php, line 110 - Contains \Drupal\flysystem\Flysystem\Local.
Class
- Local
- Drupal plugin for the "Local" Flysystem adapter.
Namespace
Drupal\flysystem\FlysystemCode
public function getExternalUrl($uri) {
if ($this->publicPath === FALSE) {
return parent::getExternalUrl($uri);
}
$path = str_replace('\\', '/', $this->publicPath . '/' . $this
->getTarget($uri));
return $GLOBALS['base_url'] . '/' . drupal_encode_path($path);
}