netgen/ibexa-fieldtype-html-text

Netgen's html text field type for Ibexa

Installs: 119

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 8

Forks: 1

Open Issues: 0

Language:JavaScript

Type:ibexa-bundle

1.0.0 2024-02-08 14:43 UTC

This package is auto-updated.

Last update: 2024-04-08 14:57:10 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>