Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 3.9.x will end* 10 May 2021 (12 months).
  • Bug fixes for security issues in 3.9.x will end* 8 May 2023 (36 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

(no description)

File Size: 56 lines (2 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

HTMLPurifier_Filter:: (2 methods):
  preFilter()
  postFilter()


Class: HTMLPurifier_Filter  - X-Ref

Represents a pre or post processing filter on HTML Purifier's output

Sometimes, a little ad-hoc fixing of HTML has to be done before
it gets sent through HTML Purifier: you can use filters to acheive
this effect. For instance, YouTube videos can be preserved using
this manner. You could have used a decorator for this task, but
PHP's support for them is not terribly robust, so we're going
to just loop through the filters.

Filters should be exited first in, last out. If there are three filters,
named 1, 2 and 3, the order of execution should go 1->preFilter,
2->preFilter, 3->preFilter, purify, 3->postFilter, 2->postFilter,
1->postFilter.

preFilter($html, $config, $context)   X-Ref
Pre-processor function, handles HTML before HTML Purifier

param: string $html
param: HTMLPurifier_Config $config
param: HTMLPurifier_Context $context
return: string

postFilter($html, $config, $context)   X-Ref
Post-processor function, handles HTML after HTML Purifier

param: string $html
param: HTMLPurifier_Config $config
param: HTMLPurifier_Context $context
return: string