---
title: "Important: #95298 - Fluid ViewHelpers will be declared final in v12"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:important-95298"
source: "Changelog/11.5/Important-95298-FluidViewhelpersWillBeDeclaredFinalInV12.rst"
typo3-version: "11.5"
typo3-major: 11
type: "important"
issue: 95298
forge: "https://forge.typo3.org/issues/95298"
tags: ["Fluid", "PHP-API", "ext:fluid"]
rendered: "2026-09-18T17:00:34+00:00"
---

# Important: #95298 - Fluid ViewHelpers will be declared final in v12 {#important-95298}

See [forge#95298](https://forge.typo3.org/issues/95298)

## Description {#description}

This is a notice for an upcoming change in TYPO3 v12:

All Fluid ViewHelper classes delivered by Core extensions will be declared
`final` in TYPO3 v12, third party extensions can no longer extend them
with own variants.

The Core takes this step to clarify that single ViewHelpers are not part of the
PHP API, their internal handling may change any time, which is not considered
breaking. Fluid delivers a series of abstract classes to provide base functionality
for common ViewHelper needs. Those can be used by third party ViewHelpers if
not marked `@internal`. TYPO3 v12 will fine-tune these abstracts and may
extract specific ViewHelper code to abstracts if the code is generally useful
for extension developers with own view-helpers.

Using ViewHelpers provided by Core extensions in Fluid templates is of course
fine as long as they are not marked `@internal`. Arguments to casual ViewHelpers
are considered API and are subject of the general Core deprecation strategy. In
general, the base extensions `EXT:fluid`, `EXT:core`, `EXT:frontend` and `EXT:backend`
deliver various general purpose ViewHelpers that can be used, while specific extensions
like `EXT:beuser` add `@internal` ViewHelpers that should not be used in own templates.

Developers are encouraged to adapt own ViewHelpers towards this change with
TYPO3 v11 compatible extensions already, it will simplify compatibility with TYPO3 v12 later.
