fanor51/headless-container-support

Extension that adds container support for TYPO3 Headless extension

Installs: 15 735

Dependents: 0

Suggesters: 0

Security: 0

Stars: 8

Watchers: 5

Forks: 4

Open Issues: 0

Type:typo3-cms-extension

3.1.1 2024-02-08 10:24 UTC

README

Install

Install as any other extension:

  • Composer: composer require fanor51/headless-container-support
TYPO3 Version v11 v12
This Version 2.* 3.*

Use

Take a look into Example/TypoScript/Container/50_wrapper.typoscript there is an example on how to configure the container. The special thing here is that we add a "new" data processor to the config. the processor is mainly the one from the container extension. Something was added only at the end

After this you need to overwrite the standard lib.content object with a where clause to exclude the "special" colPos´s from the container extension.

# PRELOAD EXTENSIONS SETTINGS
@import 'EXT:headless/Configuration/TypoScript/'

# Overwrite the default lib.content from the headless extension with added colPos where in YOUR Config Extension
# Add the colPos IDS from your Container Configuration to the where
lib.content = CONTENT_JSON
lib.content {
  table = tt_content
  select {
    orderBy = sorting
    where = colPos NOT IN (201,202,203)
  }
}

In this example we use the colPoses 201,202 and 203 for container contents which where setted in the container config under Configuration/TCA/Overrides/tt_content.php. An example for this you can find here: Example/TCA/Overrides/tt_content.php

In the end it should look like this:

image description

A complete json example is under: Docs/Json/Example.json

Customize

You can customize the names from the equivalent of the colPos in the TYPOSCRIPT like you need or want it.

image description

Credits

The development of the extension was supported by the TYPO3 agency brandung GmbH.