PrestaShop Developer Conference
PrestaShop Developer Conference
Paris, France - November 30, 2023
Let's talk code, commerce and open source.

Hook filterHtmlContent

Information

Filter HTML field before rending a page:

This hook is called just before fetching a page on HTML field

Hook locations:

  • front office

Located in:

This hook has a $chain parameter set to true (hook will chain the return of hook module, see explaination here).

Call of the Hook in the origin file

Hook::exec(
                'filterHtmlContent',
                [
                    'type' => $type,
                    'htmlFields' => $htmlFields,
                    'object' => $presentedObject,
                ],
                null,
                false,
                true,
                false,
                null,
                true
            )