netgen/ibexa-fieldtype-html-text
Netgen's html text field type for Ibexa
Package info
github.com/netgen/ibexa-fieldtype-html-text
Language:JavaScript
Type:ibexa-bundle
pkg:composer/netgen/ibexa-fieldtype-html-text
1.1.0
2025-03-12 08:45 UTC
Requires
- php: ^8.1
- ext-dom: *
- ext-json: *
- ext-pdo: *
- ezyang/htmlpurifier: ^4.16
- ibexa/admin-ui: ^4.5
- ibexa/content-forms: ^4.5
- ibexa/core: ^4.2
- xemlock/htmlpurifier-html5: ^0.1.11
Requires (Dev)
- phpunit/phpunit: ^9.5.5
- symfony/phpunit-bridge: ^6.1
Suggests
None
Provides
None
Conflicts
None
Replaces
None
GPL-2.0-only d30258511f691859b0c89f7658e277fab1a5cea7
This package is auto-updated.
Last update: 2026-06-12 12:00:00 UTC
README
👁 Downloads
👁 Latest stable
👁 PHP
👁 Ibexa
Html text field type for Ibexa CMS offers the possibility to render WYSIWYG field both on the frontend and in Ibexa administration.
Installation steps
Use Composer
Run composer require:
composer require netgen/ibexa-fieldtype-html-text
Activate the bundle
Activate the bundle in config/bundles.php file.
<?php return [ ..., Netgen\IbexaFieldTypeHtmlTextBundle\NetgenIbexaFieldTypeHtmlTextBundle::class => ['all' => true],, ... ];
Include the javascript file on the frontend
Inside the base twig file for your frontend siteaccess, include the built app.js file:
<script src="{{ asset('bundles/netgenibexafieldtypehtmltext/build/app.js') }}"></script>
