contentblocks / content-blocks
TYPO3 CMS Content Blocks - Content Types API
Installs: 53 144
Dependents: 10
Suggesters: 1
Security: 0
Stars: 55
Watchers: 7
Forks: 17
Type:typo3-cms-extension
Requires
- symfony/var-exporter: ^7.0
- typo3/cms-backend: ^13.2
- typo3/cms-core: ^13.2
- typo3/cms-fluid: ^13.2
- typo3/cms-frontend: ^13.2
Requires (Dev)
- bnf/phpstan-psr-container: ^1.0.1
- contentblocks/examples: @dev
- friendsofphp/php-cs-fixer: ^3.22
- friendsoftypo3/phpstan-typo3: ^0.9.0
- phpstan/phpstan: ^1.10.22
- phpstan/phpstan-phpunit: ^1.3.13
- typo3/cms-extbase: ^13.2
- typo3/cms-extensionmanager: ^13.2
- typo3/cms-filelist: ^13.2
- typo3/cms-install: ^13.2
- typo3/cms-lowlevel: ^13.2
- typo3/cms-rte-ckeditor: ^13.2
- typo3/cms-tstemplate: ^13.2
- typo3/cms-workspaces: ^13.2
- typo3/coding-standards: ^0.8
- typo3/testing-framework: ^8
- dev-main
- 0.8.x-dev
- 0.8.2
- 0.8.1
- 0.8.0
- 0.7.x-dev
- 0.7.17
- 0.7.16
- 0.7.15
- 0.7.14
- 0.7.13
- 0.7.12
- 0.7.11
- 0.7.10
- 0.7.9
- 0.7.8
- 0.7.7
- 0.7.6
- 0.7.5
- 0.7.4
- 0.7.3
- 0.7.2
- 0.7.1
- 0.7.0
- 0.6.x-dev
- 0.6.4
- 0.6.3
- 0.6.2
- 0.6.1
- 0.6.0
- 0.5.2
- 0.5.1
- 0.5.0
- 0.4.0
- 0.3.0
- 0.2.1
- 0.2.0
- 0.1.6
- 0.1.5
- 0.1.4
- 0.1.3
- 0.1.2
- 0.1.1
- 0.1.0
- dev-field-type-attribute
- dev-new-folder-structure
- dev-remove-field-type-enum
- dev-autowire-locator
- dev-core-system-column-enrichment
- dev-core-auto-system-fields-tt-content
- dev-core-relation-resolver
- dev-record-object
- dev-asset-path-vh
- dev-use-core-tca-schema
- dev-typo3-v13
- dev-add-fields-for-metadata-tab
- dev-185-bug-inline-children-ignore-enablecolumns-after-flushing-all-caches
- dev-feat/add-service-create-content-type
- dev-json-schema
- dev-json-schema-philipp
- dev-fix-docu-type-number
- dev-feature-page-information-partial
- dev-field-types
- dev-92-feature-pagetype-automatic-hideinmenu-icon-registration
- dev-136-sort-output-of-fieldtypes
- dev-tca-schema
- dev-feature-plugins
This package is auto-updated.
Last update: 2024-10-02 14:01:36 UTC
README
TYPO3 CMS Content Blocks
This is the standalone repository for the TYPO3 Content Blocks project. Content Blocks provides a new API to create custom Content Types like Content Elements, Page Types or generic Record Types. Use it now in your TYPO3 v12/v13 project and eventually this will become a Core feature in TYPO3 v13 LTS.
Roadmap 2024
Installation
Require this package via composer:
composer req contentblocks/content-blocks
Or install it via the Extension Manager in the TYPO3 backend. The extension key
is content_blocks
.
Usage
Refer to the Documentation on how to use the Content Blocks API.
JSON Schema
Enable validation and auto-completion with JSON schema
Developing
There is a ddev setup ready to use. Ensure ddev is installed on your machine. Then run:
ddev start
ddev composer install
touch .Build/public/FIRST_INSTALL
ddev launch
The default URL is https://content-blocks.ddev.site/. Continue with the TYPO3 installation process.
Testing
First install the composer dependencies:
composer install
Then run unit or functional tests by executing:
Build/Scripts/runTests.sh -s unit
Build/Scripts/runTests.sh -s functional
Hint
Be sure to exclude the .Build/public/typo3temp
directory from indexing in your IDE (e.g. PhpStorm) before starting the tests.
Rendering the documentation
When you update the documentation you can try out rendering it locally (Docker required):
make docs
You can test if the syntax and references are ok with
make test-docs
Feedback
You can reach us on the TYPO3 Slack channel #cig-structuredcontent
. We
appreciate any constructive feedback.
FAQ
Q: Will the content_blocks_reg_api be further developed for TYPO3 v12?
A: The predecessor content_blocks_reg_api
, which was initially created in 2020,
will not be further developed for TYPO3 v12. This system extension will replace
it completely. Migration steps will be provided as soon as we will reach a stable
development state.
This extension has been developed entirely from scratch and has, besides the initial concept, nothing to do with the content_blocks_reg_api. The goal was to create a system extension, which combines the best concepts from Content Blocks and the Mask extension.