Skip to content

TYPO3 14 missing Plugin tab #20

@j-schmidt-magenta-mannheim

Description

Existing configurations keep working in TYPO3 14, but changes to the pages and recursive fields are no longer possible from the backend due to missing TCA because the Plugin tab is omitted.

jn_phpcontentelement/Configuration/TCA/Overrides/tt_content.php must read similarly to this:

<?php
use TYPO3\CMS\Extbase\Utility\ExtensionUtility;

defined('TYPO3') or die();

(function () {
    ExtensionUtility::registerPlugin(
        'JnPhpcontentelement',
        'Phpcelist',
        '[joppnet] PHP Content Element'
    );

    // Re-add the "Startingpoint" and "Recursive" fields that were part of the
    // old list CType plugin tab — TYPO3 14 no longer includes them automatically.
    $GLOBALS['TCA']['tt_content']['types']['jnphpcontentelement_phpcelist']['showitem'] .=
    ',--div--;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:tabs.plugin,pages,recursive';
})();

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions