It would be really nice if the
For example;
Which has the logic;
If $entity is null, or if
This would essentially simplify this style of logic significantly;
??
operator (aka null coalescing operator) was supported in XF templates.For example;
PHP:
$entity.property ?? 'default'
If $entity is null, or if
property
does not exist in $entity, or $entity->property
is null, then the value of 'default' is returned.This would essentially simplify this style of logic significantly;
PHP:
($entity && $reaction.isValidKey('property') && $reaction.property !== null) ? $reaction.property : 'default'
Upvote
19