public function FlysystemPluginInterface::getExternalUrl in Flysystem 3.0.x
Same name and namespace in other branches
- 8 src/Plugin/FlysystemPluginInterface.php \Drupal\flysystem\Plugin\FlysystemPluginInterface::getExternalUrl()
- 7 src/Plugin/FlysystemPluginInterface.php \Drupal\flysystem\Plugin\FlysystemPluginInterface::getExternalUrl()
- 3.x src/Plugin/FlysystemPluginInterface.php \Drupal\flysystem\Plugin\FlysystemPluginInterface::getExternalUrl()
- 2.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
Namespace
Drupal\flysystem\PluginCode
public function getExternalUrl($uri);