---
title: "Breaking: #72361 - Removed deprecated content object wrappers"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-72361"
source: "Changelog/8.0/Breaking-72361-RemovedDeprecatedContentObjectWrappers.rst"
typo3-version: "8.0"
typo3-major: 8
type: "breaking"
issue: 72361
forge: "https://forge.typo3.org/issues/72361"
tags: ["PHP-API", "Frontend"]
rendered: "2026-09-19T12:12:50+00:00"
---

# Breaking: #72361 - Removed deprecated content object wrappers {#breaking-72361}

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

## Description {#description}

The following wrapper methods for ContentObject rendering within ContentObjectRenderer
have been removed:

```php
FLOWPLAYER()
TEXT()
CLEARGIF()
COBJ_ARRAY()
USER()
FILE()
FILES()
IMAGE()
IMG_RESOURCE()
IMGTEXT()
CONTENT()
RECORDS()
HMENU()
CTABLE()
OTABLE()
COLUMNS()
HRULER()
CASEFUNC()
LOAD_REGISTER()
FORM()
SEARCHRESULT()
TEMPLATE()
FLUIDTEMPLATE()
MULTIMEDIA()
MEDIA()
SWFOBJECT()
QTOBJECT()
SVG()
```

## Impact {#impact}

Using the methods above directly in any third party extension will result in a fatal error.

## Affected Installations {#affected-installations}

Instances which use custom calls to ContentObjects via the methods above.

## Migration {#migration}

Replace the direct method calls to `$contentObject->COBJECT()` with the common method.

Example for the SVG() ContentObject call:

```php
$cObj->cObjGetSingle('SVG', $conf);
```
