IncludeTreeConditionEnforcerVisitor implements IncludeTreeVisitorInterface
FinalYes
Force condition verdicts.
This visitor is used in ext:tstemplate TypoScript modules and ext:backend page TSconfig backend modules to toggle on/off selected conditions.
This is a specific Backend implementation and is not considered part of the Public TYPO3 API.
Table of Contents
Interfaces
- IncludeTreeVisitorInterface
- A visitor that can be attached to IncludeTreeTraverser's.
Methods
- setEnabledConditions() : void
- visit() : void
- Main visit method called for each node.
- visitBeforeChildren() : void
- Gets called by the traversers *before* children are traversed. Useful for instance for the IncludeTreeConditionMatcherVisitor to evaluate a condition verdict *before* children are traversed (or not).
Methods
setEnabledConditions()
public
setEnabledConditions(array<string|int, mixed> $enabledConditions) : void
Parameters
- $enabledConditions : array<string|int, mixed>
visit()
Main visit method called for each node.
public
visit(IncludeInterface $include, int $currentDepth) : void
Parameters
- $include : IncludeInterface
- $currentDepth : int
visitBeforeChildren()
Gets called by the traversers *before* children are traversed. Useful for instance for the IncludeTreeConditionMatcherVisitor to evaluate a condition verdict *before* children are traversed (or not).
public
visitBeforeChildren(IncludeInterface $include, int $currentDepth) : void
Parameters
- $include : IncludeInterface
- $currentDepth : int