uri.external

A view helper for creating URIs to external targets. Currently the specified URI is simply passed through.

Examples

<f:uri.external uri="http://www.typo3.org" />

Output:

http://www.typo3.org

custom default scheme:

<f:uri.external uri="typo3.org" defaultScheme="ftp" />

Output:

ftp://typo3.org

Arguments

uri

DataType
string
Required
true
Description
Target URI

defaultScheme

DataType
string
Default
‘http’
Required
true
Description
Scheme the href attribute will be prefixed with if specified $uri does not contain a scheme already