or¶
Or ViewHelper
If content is null use alternative text.
Usage of f:or¶
{f:variable(name:'fallback',value:'this is not the variable you\'re looking for')}
{undefinedVariable -> f:or(alternative:fallback)}
Usage of ternary operator¶
In some cases (e.g. when you want to check for empty instead of null) it might be more handy to use a ternary operator instead of f:or
{emptyVariable ?: 'this is an alterative text'}