agoat / contao-customcontentelements
Contao 4 custom content elements
Installs: 550
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 4
Open Issues: 13
Type:contao-bundle
Requires
- php: ^7.2
- contao/core-bundle: ^4.4
Replaces
- agoat/contao-contentblocks: *
- contao-legacy/contentblocks: *
- dev-master
- 2.4.2
- 2.4.1
- 2.4.0
- 2.3.3
- 2.3.2
- 2.3.1
- 2.3.0
- 2.2.2
- 2.2.1
- 2.2.0
- 2.2.0-beta3
- 2.2.0-beta2
- 2.2.0-beta1
- 2.1.1
- 2.1.0
- 2.0.0
- 2.0.0-rc2
- 2.0.0-rc1
- 2.0.0-beta4
- 2.0.0-beta3
- 2.0.0-beta2
- 2.0.0-beta1
- 1.4.3
- 1.4.2
- 1.4.1
- 1.4.0
- 1.3.1
- 1.3.0
- 1.2.2
- 1.2.1
- 1.2.0
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- 0.10.2
- 0.10.1
- 0.10.0
- 0.9.4
- 0.9.3
- 0.9.2
- 0.9.1
- 0.9.0
- 0.8.0
- 0.7.0
- 0.6.9
- 0.6.8
- 0.6.7
- 0.6.6
- 0.6.5
- 0.6.2
- 0.6.1
- 0.6.0
- 0.5.0
- 0.1.0
- dev-release/3.0.0
- dev-feature/subpattern
- dev-backup/subpattern
- dev-backup/master
- dev-backup/agoat
This package is not auto-updated.
Last update: 2024-11-10 20:01:10 UTC
README
Now compatible with Contao 4.4 lts and 4.9 lts (Contao 4.10+ not tested) !!
About
Create your own content elements with individual input fields.
Almost any input mask for content elements can be created, from very simple text entries to complex input structures with a choice of images, pages and various options.
Custom content elements consist of a template and any number of patterns that provide the various input fields. The patterns can be configured in such a way that they give the content data to the template, where it can be output into any corresponding HTML structure.
This makes it possible to implement both simple widgets (such as 'hero images') and extensive information boards (like 'team pages' with names, e-mails, numbers and addresses of the employees). And all the content can be accessed in a simple and elegant way.
Notice
There was a complete database redesign from Version 1.x
to 2.x
. A direct upgrade is not possible and all custom content elements must be re-created.
Install
Contao manager
Search for the package and install it
agoat/contao-customcontentelements
Managed edition
Add the package
# Using the composer
composer require agoat/contao-customcontentelements
Registration and configuration is done by the manager-plugin automatically.
Standard edition
Add the package
# Using the composer
composer require agoat/contao-customcontentelements
Register the bundle in the AppKernel
# app/AppKernel.php class AppKernel { // ... public function registerBundles() { $bundles = [ // ... // after Contao\CoreBundle\ContaoCoreBundle new Agoat\CustomContentElementsBundle\AgoatCustomContentElementsBundle(), ]; } }