Neos\FluidAdaptor\ViewHelpers\Security\IfAuthenticatedViewHelper::render PHP Метод

render() публичный Метод

renders child if access to the given resource is allowed, otherwise renders child.
public render ( ) : string
Результат 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