---
title: "Feature: #70002 - Make it possible to register own icons for file extensions"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-70002"
source: "Changelog/7.5/Feature-70002-MakeItPossibleToRegisterOwnIconsForFileExtensions.rst"
modified: "2026-09-14T09:47:36+00:00"
---

# Feature: #70002 - Make it possible to register own icons for file extensions

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

## Description

The IconRegistry has been extended with a mapping of file extensions.

## Impact

It is now possible to register or overwrite the iconIdentifier for a file extension.

```php
$iconRegistry = GeneralUtility::makeInstance(IconRegistry::class);
$iconRegistry->registerFileExtension('log', 'icon-identifier-for-log-files');
```
