FluidTYPO3\Vhs\ViewHelpers\Security\AbstractSecurityViewHelper::renderThenChild PHP Метод

renderThenChild() защищенный Метод

Returns value of "then" attribute. If then attribute is not set, iterates through child nodes and renders ThenViewHelper. If then attribute is not set and no ThenViewHelper and no ElseViewHelper is found, all child nodes are rendered
protected renderThenChild ( ) : string
Результат string rendered ThenViewHelper or contents of if no ThenViewHelper was found
    protected function renderThenChild()
    {
        if (true === $this->isFrontendContext()) {
            $GLOBALS['TSFE']->no_cache = 1;
        }
        return parent::renderThenChild();
    }