flowpack/restrictcreation

Last activity 21 Mar 2023 8 1 1683
composer require flowpack/restrictcreation

Restrict creation of nodes in certain content dimensions

1.0.0

Version
1.0.0
Type
neos-package
Release Date
Mar 21, 2023 10:37
Source
git
Distribution
zip
Requires
MIT b3c56060955942b09e73c1767c9c928d1621e47c

Flowpack.RestrictCreation

Imagine the situation: you have a website with 'English (US)', 'English (UK)' and 'German' content dimensions present.

Now you never want editors to create new nodes directly in 'English (UK)', without first creating them in 'English (US)' and almost never in 'German', but some really rare cases.

This package provides an option to enforce these kind of constraints:

restrictcreation

Getting started:

  1. composer require 'flowpack/restrictcreation'
  2. Configure your dimensions in Settings.yaml, e.g. like this:
Neos:
  ContentRepository:
    contentDimensions:
      language:
        presets:
          en_US:
            label: 'English (US)'
            values:
              - en_US
            uriSegment: en
          en_UK:
            label: 'English (UK)'
            values:
              - en_UK
              - en_US
            uriSegment: uk
            restrictCreation:
              mode: disallow
              originPreset: en_US
          de:
            label: German
            values:
              - de
            uriSegment: de
            restrictCreation:
              mode: warn
              originPreset: en_US
              documentNodesOnly: true
  • mode: warn would only give a warning about creating a node in a possible wrong dimensiong.
  • mode: disallow would completely forbid creating new nodes in a certain dimension.
  • documentNodesOnly: true would trigger the warning only for document nodes: you would be able to create content nodes as usual, but creating document nodes in that dimension would be blocked/warned.

Acknowledgments

The initial development of this package is sponsored by web&co.

The content of the readme is provided by Github
The same vendor provides 49 package(s).