Neos\Neos\ViewHelpers\Backend\ConfigurationCacheVersionViewHelper::render PHP Method

render() public method

public render ( ) : string
return string The current cache version identifier
    public function render()
    {
        $version = $this->configurationCache->get('ConfigurationVersion');
        if ($version === false) {
            $version = time();
            $this->configurationCache->set('ConfigurationVersion', (string) $version);
        }
        return $version;
    }
ConfigurationCacheVersionViewHelper