Neos\FluidAdaptor\ViewHelpers\Security\IfAuthenticatedViewHelper::render PHP Méthode

render() public méthode

renders child if access to the given resource is allowed, otherwise renders child.
public render ( ) : string
Résultat string the rendered then/else child nodes depending on the access
    public function render()
    {
        if (static::evaluateCondition($this->arguments, $this->renderingContext)) {
            return $this->renderThenChild();
        }
        return $this->renderElseChild();
    }
IfAuthenticatedViewHelper