PreviewUriBuilder
Substitution for `BackendUtility::getPreviewUrl` for generating links to Frontend URLs with a modified scope.
Table of Contents
Constants
- OPTION_SWITCH_FOCUS = 'switchFocus'
- OPTION_WINDOW_FEATURES = 'windowFeatures'
- OPTION_WINDOW_NAME = 'windowName'
- OPTION_WINDOW_SCOPE = 'windowScope'
- OPTION_WINDOW_SCOPE_GLOBAL = 'global'
- OPTION_WINDOW_SCOPE_LOCAL = 'local'
Properties
- $additionalQueryParameters : array<string|int, mixed>
- $context : Context
- $languageId : int
- $moduleLoading : bool
- $pageId : int
- $rootLine : array<string|int, mixed>
- $section : string
Methods
- __construct() : mixed
- buildDispatcherAttributes() : array<string|int, mixed>|null
- Builds attributes array (e.g. `['data-dispatch-action' => ...]`).
- buildDispatcherDataAttributes() : array<string|int, mixed>|null
- Builds attributes array (e.g. `['dispatch-action' => ...]`).
- buildImmediateActionElement() : string|null
- `<typo3-immediate-action>` does not have a specific meaning and is used to expose `data` attributes, see custom element in `ImmediateActionElement.ts`.
- buildUri() : UriInterface|null
- Builds preview URI.
- create() : static
- serializeDispatcherAttributes() : string|null
- Serialized attributes are processed with `htmlspecialchars` and ready to be used.
- withAdditionalQueryParameters() : static
- withLanguage() : static
- withModuleLoading() : static
- withRootLine() : static
- withSection() : static
- buildAttributes() : array<string|int, mixed>|null
- enrichOptions() : array<string|int, mixed>
- Handles options to used for opening preview URI in a new window/tab.
- getAdditionalQueryParametersForAccessRestrictedPages() : array<string|int, mixed>
- Creates ADMCMD parameters for the "viewpage" extension / frontend
- loadActionDispatcher() : void
- loadImmediateActionElement() : void
- prefixAttributeNames() : array<string|int, mixed>
Constants
OPTION_SWITCH_FOCUS
public
mixed
OPTION_SWITCH_FOCUS
= 'switchFocus'
OPTION_WINDOW_FEATURES
public
mixed
OPTION_WINDOW_FEATURES
= 'windowFeatures'
OPTION_WINDOW_NAME
public
mixed
OPTION_WINDOW_NAME
= 'windowName'
OPTION_WINDOW_SCOPE
public
mixed
OPTION_WINDOW_SCOPE
= 'windowScope'
OPTION_WINDOW_SCOPE_GLOBAL
public
mixed
OPTION_WINDOW_SCOPE_GLOBAL
= 'global'
OPTION_WINDOW_SCOPE_LOCAL
public
mixed
OPTION_WINDOW_SCOPE_LOCAL
= 'local'
Properties
$additionalQueryParameters
protected
array<string|int, mixed>
$additionalQueryParameters
= []
$context
protected
Context
$context
$languageId
protected
int
$languageId
= 0
$moduleLoading
protected
bool
$moduleLoading
= true
$pageId
protected
int
$pageId
$rootLine
protected
array<string|int, mixed>
$rootLine
= []
$section
protected
string
$section
= ''
Methods
__construct()
public
__construct(int $pageId) : mixed
Parameters
- $pageId : int
-
Page ID to be previewed
buildDispatcherAttributes()
Builds attributes array (e.g. `['data-dispatch-action' => ...]`).
public
buildDispatcherAttributes([array<string|int, mixed>|null $options = null ]) : array<string|int, mixed>|null
CAVE: Attributes are NOT XSS-protected and need to be put through htmlspecialchars
Parameters
- $options : array<string|int, mixed>|null = null
Return values
array<string|int, mixed>|nullbuildDispatcherDataAttributes()
Builds attributes array (e.g. `['dispatch-action' => ...]`).
public
buildDispatcherDataAttributes([array<string|int, mixed>|null $options = null ]) : array<string|int, mixed>|null
CAVE: Attributes are NOT XSS-protected and need to be put through htmlspecialchars
Parameters
- $options : array<string|int, mixed>|null = null
Return values
array<string|int, mixed>|nullbuildImmediateActionElement()
`<typo3-immediate-action>` does not have a specific meaning and is used to expose `data` attributes, see custom element in `ImmediateActionElement.ts`.
public
buildImmediateActionElement([array<string|int, mixed>|null $options = null ]) : string|null
Parameters
- $options : array<string|int, mixed>|null = null
Return values
string|nullbuildUri()
Builds preview URI.
public
buildUri([array<string|int, mixed>|null $options = null ][, Context|null $context = null ]) : UriInterface|null
Parameters
- $options : array<string|int, mixed>|null = null
- $context : Context|null = null
Return values
UriInterface|nullcreate()
public
static create(int $pageId) : static
Parameters
- $pageId : int
-
Page ID to be previewed
Return values
staticserializeDispatcherAttributes()
Serialized attributes are processed with `htmlspecialchars` and ready to be used.
public
serializeDispatcherAttributes([array<string|int, mixed>|null $options = null ]) : string|null
Parameters
- $options : array<string|int, mixed>|null = null
Return values
string|nullwithAdditionalQueryParameters()
public
withAdditionalQueryParameters(string|array<string|int, mixed> $additionalQueryParameters) : static
Parameters
- $additionalQueryParameters : string|array<string|int, mixed>
-
additional URI query parameters
Return values
staticwithLanguage()
public
withLanguage(int $language) : static
Parameters
- $language : int
-
particular language
Return values
staticwithModuleLoading()
public
withModuleLoading(bool $moduleLoading) : static
Parameters
- $moduleLoading : bool
-
whether to enable JavaScript module loading
Return values
staticwithRootLine()
public
withRootLine(array<string|int, mixed> $rootLine) : static
Parameters
- $rootLine : array<string|int, mixed>
-
(alternative) root-line of pages
Return values
staticwithSection()
public
withSection(string $section) : static
Parameters
- $section : string
-
particular section (anchor element)
Return values
staticbuildAttributes()
protected
buildAttributes([array<string|int, mixed>|null $options = null ]) : array<string|int, mixed>|null
Parameters
- $options : array<string|int, mixed>|null = null
Return values
array<string|int, mixed>|nullenrichOptions()
Handles options to used for opening preview URI in a new window/tab.
protected
enrichOptions([array<string|int, mixed>|null $options = null ]) : array<string|int, mixed>
-
switchFocus
(bool): whether to focus new window in browser -
windowName
(string): name of window for internal reference -
windowScope
(string):local
(current document)global
(whole backend)
Parameters
- $options : array<string|int, mixed>|null = null
Return values
array<string|int, mixed>getAdditionalQueryParametersForAccessRestrictedPages()
Creates ADMCMD parameters for the "viewpage" extension / frontend
protected
getAdditionalQueryParametersForAccessRestrictedPages(array<string|int, mixed> $pageInfo, Context $context, array<string|int, mixed> $rootLine) : array<string|int, mixed>
Parameters
- $pageInfo : array<string|int, mixed>
- $context : Context
- $rootLine : array<string|int, mixed>
Return values
array<string|int, mixed>loadActionDispatcher()
protected
loadActionDispatcher() : void
loadImmediateActionElement()
protected
loadImmediateActionElement() : void
prefixAttributeNames()
protected
prefixAttributeNames(string $prefix, array<string|int, mixed> $attributes) : array<string|int, mixed>
Parameters
- $prefix : string
- $attributes : array<string|int, mixed>