2.2
Content Blocks version 2.2 adds compatibility for TYPO3 v14.2.
Feature
Allowed Record Types for Page Types
A new option
allowed has been added for Page Types, which
allows you to define a set of Record Types (tables), that should be allowed
on this specific Page Type.
Example: Extending the default allowed values with custom ones.
allowedRecordTypes:
- pages
- sys_category
- sys_file_reference
- my_custom_table
Copied!
Example: Allow all records with an asterisk:
allowedRecordTypes:
- *
Copied!
Read more here.