public function StreamWrapperInterface::getExternalUrl in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/StreamWrapper/StreamWrapperInterface.php \Drupal\Core\StreamWrapper\StreamWrapperInterface::getExternalUrl()
- 9 core/lib/Drupal/Core/StreamWrapper/StreamWrapperInterface.php \Drupal\Core\StreamWrapper\StreamWrapperInterface::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".
Return value
string Returns a string containing a web accessible URL for the resource.
3 methods override StreamWrapperInterface::getExternalUrl()
- DummyExternalReadOnlyWrapper::getExternalUrl in core/
modules/ file/ tests/ file_test/ src/ StreamWrapper/ DummyExternalReadOnlyWrapper.php - @inheritDoc
- DummyReadOnlyStreamWrapper::getExternalUrl in core/
modules/ file/ tests/ file_test/ src/ StreamWrapper/ DummyReadOnlyStreamWrapper.php - Override getExternalUrl().
- DummyStreamWrapper::getExternalUrl in core/
modules/ file/ tests/ file_test/ src/ StreamWrapper/ DummyStreamWrapper.php - Override getExternalUrl().
File
- core/
lib/ Drupal/ Core/ StreamWrapper/ StreamWrapperInterface.php, line 151
Class
- StreamWrapperInterface
- Defines a Drupal stream wrapper extension.
Namespace
Drupal\Core\StreamWrapperCode
public function getExternalUrl();