ttree/neos-toolbox

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (2.1.3) of this package.

A toolbox of Node Types and TypoScript2 objects for TYPO3 Neos.

Installs: 202

Dependents: 0

Suggesters: 0

Security: 0

Type:typo3-flow-package

2.1.3 2016-08-04 10:17 UTC

This package is auto-updated.

Last update: 2019-02-20 18:41:19 UTC


README

Requirements

  • Neos CMS 2.0

Mixins / DocumentWithTeaserImageMixin

Add a simple teaser image to the current document node.

Usage

'Your.Package:Document':
  superTypes:
    'Ttree.Neos.Toolbox:DocumentWithTeaserImageMixin': TRUE

Mixins / InlineEditableTitleMixin

Change document configuration to support inline editable title.

Usage

'Your.Package:Document':
  superTypes:
    'Ttree.Neos.Toolbox:InlineEditableTitleMixin': TRUE

Mixins / AddressMixin

Basic configuration to add contact and address informations to the given node.

Usage

'Your.Package:Document':
  superTypes:
    'Ttree.Neos.Toolbox:ContactInformationMixin': TRUE
    'Ttree.Neos.Toolbox:PostalAddressMixin': TRUE

GenericNodeTypePostprocessor

This processor is experimental, and API can change at any time

The `GenericNodeTypePostprocessorcan be used to extend node type, based on the currentsuperTypes`.

Currently the PostProcessor support a basic property overlay to inject state for Switzerland. With the following configuration you should have the switzerland's region in the `addressRegion` property.

'Your.Package:Document':
  superTypes:
    'Ttree.Neos.Toolbox:ContactInformationMixin': TRUE
    'Ttree.Neos.Toolbox:PostalAddressMixin': TRUE
    'Ttree.Neos.Toolbox:SwitzerlandPostalAddressMixin': TRUE

In the future this processor will be able to use multiple preset to have per ex. Switzerland + France region.

Check the `Settings.yaml` to change the default configuration of the processor.