Attention

TYPO3 v8 has reached its end-of-life March 31st, 2020 and is not maintained by the community anymore. Looking for a stable version? Use the version switch on the top left.

There is no further ELTS support. It is recommended that you upgrade your project and use a supported version of TYPO3.

Create Custom Content Elements

This page explains how to create your own custom content element types, in addition to the content elements already supplied by TYPO3. You can find more code examples in the system extension fluid_styled_content.

A content element can be based on already available fields in the tt_content table and/or extra fields you can add to the tt_content table. This is done the same way as you do for your own extensions by extending TCA. Depending on the data in the tt_content table, you can send the data immediately to the FLUIDTEMPLATE or use a data processor in front to do some data manipulation. The content elements in the extension "fluid_styled_content" are using both as well. A data processor is sometimes used to convert a string (like the bodytext field in content element "table") to an array or fetch a related record (e.g. a FAL file), so Fluid does not have to deal with this manipulation or transformation.

Prerequisites

Some of the following steps (specifically the ones using lib.contentElement) require the system extension fluid_styled_content. If you do not use fluid_styled_content, you must create and initialize the lib.contentElement TypoScript object yourself.

Use an Extension

We recommend to create your own extension for adding content elements. The following example uses the extension key your_extension_key. If you have plans to publish your extension, do not forget to check for the availability of your desired key and register it at the "extension keys" page (prior login at typo3.org is required).

1. Register the Content Element

First add your new content element to the "New Content Element Wizard" and define its CType in PageTSconfig. The example content element is called yourextensionkey_newcontentelement:

Tip

This is handled in more detail in Add Elements to the Content Element Wizard.

mod.wizards.newContentElement.wizardItems.common {
    elements {
        yourextensionkey_newcontentelement {
            iconIdentifier = your-icon-identifier
            title = LLL:EXT:your_extension_key/Resources/Private/Language/Tca.xlf:yourextensionkey_newcontentelement.wizard.title
            description = LLL:EXT:your_extension_key/Resources/Private/Language/Tca.xlf:yourextensionkey_newcontentelement.wizard.description
            tt_content_defValues {
                CType = yourextensionkey_newcontentelement
            }
        }
    }
    show := addToList(yourextensionkey_newcontentelement)
}

You need to register the icon identifier with the icon API in your ext_localconf.php.

Then you need to add the content element to the "Type" dropdown, where you can select the type of content element in the file Configuration/TCA/Overrides/tt_content.php:

// Adds the content element to the "Type" dropdown
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPlugin(
    [
        'LLL:EXT:your_extension_key/Resources/Private/Language/Tca.xlf:yourextensionkey_newcontentelement',
        'yourextensionkey_newcontentelement',
        'EXT:your_extension_key/Resources/Public/Icons/ContentElements/yourextensionkey_newcontentelement.gif',
    ],
    'CType',
    'your_extension_key'
);

2. Configure Fields

Then you need to configure the backend fields for your new content element in the file Configuration/TCA/Overrides/tt_content.php:

// Configure the default backend fields for the content element
$GLOBALS['TCA']['tt_content']['types']['yourextensionkey_newcontentelement'] = [
    'showitem' => '
        --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:general,
            --palette--;;general,
            --palette--;;headers,
            bodytext;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:bodytext_formlabel,
        --div--;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:tabs.appearance,
            --palette--;;frames,
            --palette--;;appearanceLinks,
        --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:language,
            --palette--;;language,
        --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:access,
            --palette--;;hidden,
            --palette--;;access,
        --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:categories,
            categories,
        --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:notes,
            rowDescription,
        --div--;LLL:EXT:core/Resources/Private/Language/Form/locallang_tabs.xlf:extended,
    ',
    'columnsOverrides' => [
        'bodytext' => [
            'config' => [
                'enableRichtext' => true,
                'richtextConfiguration' => 'default',
            ],
        ],
    ],
];

3. Configure the Frontend Template

Since TypoScript configuration is needed as well,add an entry in the static template list found in sys_templates for static TypoScript in Configuration/TCA/Overrides/sys_template.php:

// Add an entry in the static template list found in sys_templates for static TS
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile(
    'your_extension_key',
    'Configuration/TypoScript',
    'Your description'
);

As defined in Configuration/TCA/Overrides/sys_template.php, the file setup.typoscript is in the directory Configuration/TypoScript/ of your own extension.

To ensure your custom content element templates can be found you need to extend the global templateRootPaths with a path within your extension:

lib.contentElement {
    templateRootPaths {
        200 = EXT:your_extension_key/Resources/Private/Templates/
    }
}

Note

The :lib.contentElement path is defined in EXT:fluid_styled_content/Configuration/TypoScript/Helper/ContentElement.typoscript.

You can use an arbitrary index (200 here), just make sure it is unique. If you use partials and layouts, you need to do the same for partialRootPaths and layoutRootPaths.

Now you can register the rendering of your custom content element using a Fluid template:

tt_content {
    yourextensionkey_newcontentelement =< lib.contentElement
    yourextensionkey_newcontentelement {
        templateName = NewContentElement
    }
}

In this example a FLUIDTEMPLATE content object is created using a reference from lib.contentElement with a template identified by the templateName NewContentElement. This will load a NewContentElement.html template file from the templateRootPaths.

For the final rendering you need a Fluid template. This template will be located at the directory and file name which you have entered in setup.typoscript using the parameter templateName. Now we can use the tt_content fields in the Fluid template by accessing them via the data variable. The following example shows the text entered in the richtext enabled field bodytext formatted using the defined richtext configuration:

<div>{data.bodytext -> f:format.html()}</div>

4. Optional: Configure Custom Backend Preview

If you want to generate a special preview in the backend "Web > Page" module, you can use a hook for this:

// Register for hook to show preview of tt_content element of CType="yourextensionkey_newcontentelement" in page module
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['cms/layout/class.tx_cms_layout.php']['tt_content_drawItem']['yourextensionkey_newcontentelement'] =
   \Vendor\YourExtensionKey\Hooks\PageLayoutView\NewContentElementPreviewRenderer::class;

The preview renderer NewContentElementPreviewRenderer.php, for the backend, has been put in the directory Classes/Hooks/PageLayoutView/ and could look like this:

<?php
namespace Vendor\YourExtensionKey\Hooks\PageLayoutView;

/*
 * This file is part of the TYPO3 CMS project.
 *
 * It is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License, either version 2
 * of the License, or any later version.
 *
 * For the full copyright and license information, please read the
 * LICENSE.txt file that was distributed with this source code.
 *
 * The TYPO3 project - inspiring people to share!
 */

use \TYPO3\CMS\Backend\View\PageLayoutViewDrawItemHookInterface;
use \TYPO3\CMS\Backend\View\PageLayoutView;

/**
 * Contains a preview rendering for the page module of CType="yourextensionkey_newcontentelement"
 */
class NewContentElementPreviewRenderer implements PageLayoutViewDrawItemHookInterface
{

    /**
     * Preprocesses the preview rendering of a content element of type "My new content element"
     *
     * @param \TYPO3\CMS\Backend\View\PageLayoutView $parentObject Calling parent object
     * @param bool $drawItem Whether to draw the item using the default functionality
     * @param string $headerContent Header content
     * @param string $itemContent Item content
     * @param array $row Record row of tt_content
     *
     * @return void
     */
    public function preProcess(
        PageLayoutView &$parentObject,
        &$drawItem,
        &$headerContent,
        &$itemContent,
        array &$row
    ) {
        if ($row['CType'] === 'yourextensionkey_newcontentelement') {
            $itemContent .= '<p>We can change our preview here!</p>';

            $drawItem = false;
        }
    }
}

5. Optional: Extend tt_content

6. Optional: Use Data Processors

You can use data processors for some data manipulation or other actions you would like to perform before passing everything to the view. This is done in the dataProcessing section where you can add an arbitrary number of data processors, each with a fully qualified class name (FQCN) and optional parameters to be used in the data processor:

tt_content {
    yourextensionkey_newcontentelement =< lib.contentElement
    yourextensionkey_newcontentelement {
        templateName = NewContentElement
        dataProcessing {
            1 = Vendor\YourExtensionKey\DataProcessing\NewContentElementProcessor
            1 {
                exampleOptionName = exampleOptionValue
            }
        }
    }
}

In the example setup.typoscript above, the data processor is located in the directory Classes/DataProcessing/. The file NewContentElementProcessor.php could look like this:

<?php
declare(strict_types = 1);
namespace Vendor\YourExtensionKey\DataProcessing;

/*
 * This file is part of the TYPO3 CMS project.
 *
 * It is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License, either version 2
 * of the License, or any later version.
 *
 * For the full copyright and license information, please read the
 * LICENSE.txt file that was distributed with this source code.
 *
 * The TYPO3 project - inspiring people to share!
 */

use TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer;
use TYPO3\CMS\Frontend\ContentObject\DataProcessorInterface;

/**
 * Class for data processing for the content element "My new content element"
 */
class NewContentElementProcessor implements DataProcessorInterface
{

    /**
     * Process data for the content element "My new content element"
     *
     * @param ContentObjectRenderer $cObj The data of the content element or page
     * @param array $contentObjectConfiguration The configuration of Content Object
     * @param array $processorConfiguration The configuration of this processor
     * @param array $processedData Key/value store of processed data (e.g. to be passed to a Fluid View)
     * @return array the processed data as key/value store
     */
    public function process(
        ContentObjectRenderer $cObj,
        array $contentObjectConfiguration,
        array $processorConfiguration,
        array $processedData
    ) {
        $processedData['variableName'] = 'This variable will be passed to Fluid';

        return $processedData;
    }
}

Just to show the variable variableName, like defined above, you can use the following markup:

<h1>{variableName}</h1>