---
title: "Feature: #56644 - Hook for InlineRecordContainer::checkAccess()"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-56644"
source: "Changelog/7.4/Feature-56644-AddHookToInlineRecordContainerCheckAccess.rst"
typo3-version: "7.4"
typo3-major: 7
type: "feature"
issue: 56644
forge: "https://forge.typo3.org/issues/56644"
tags: ["PHP-API", "Backend"]
rendered: "2026-09-17T12:41:04+00:00"
---

# Feature: #56644 - Hook for InlineRecordContainer::checkAccess() {#feature-56644-hook-for-inlinerecordcontainer-checkaccess}

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

## Description {#description}

Hook to post-process `InlineRecordContainer::checkAccess` result.
`InlineRecordContainer::checkAccess` is used to check the access to related inline records. It's implemented in the
same way as the hook $GLOBALS\['TYPO3_CONF_VARS'\]\['SC_OPTIONS'\]\['typo3/alt_doc.php'\]\['makeEditForm_accessCheck'\]
in the EditDocumentController.

Register it like this:

```php
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_tceforms_inline.php']['checkAccess'][] = 'My\\Package\\HookClass->hookMethod';
```
