You are here

public function FlysystemPluginInterface::getExternalUrl in Flysystem 8

Same name and namespace in other branches
  1. 7 src/Plugin/FlysystemPluginInterface.php \Drupal\flysystem\Plugin\FlysystemPluginInterface::getExternalUrl()
  2. 3.x src/Plugin/FlysystemPluginInterface.php \Drupal\flysystem\Plugin\FlysystemPluginInterface::getExternalUrl()
  3. 2.0.x src/Plugin/FlysystemPluginInterface.php \Drupal\flysystem\Plugin\FlysystemPluginInterface::getExternalUrl()
  4. 3.0.x src/Plugin/FlysystemPluginInterface.php \Drupal\flysystem\Plugin\FlysystemPluginInterface::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.

2 methods override FlysystemPluginInterface::getExternalUrl()
Local::getExternalUrl in src/Flysystem/Local.php
Returns a web accessible URL for the resource.
Missing::getExternalUrl in src/Flysystem/Missing.php
Returns a web accessible URL for the resource.

File

src/Plugin/FlysystemPluginInterface.php, line 33

Class

FlysystemPluginInterface

Namespace

Drupal\flysystem\Plugin

Code

public function getExternalUrl($uri);