Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.

(no description)

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

Defines 1 class

HTMLPurifier_AttrTransform:: (2 methods):
  prependCSS()
  confiscateAttr()


Class: HTMLPurifier_AttrTransform  - X-Ref

Processes an entire attribute array for corrections needing multiple values.

Occasionally, a certain attribute will need to be removed and popped onto
another value.  Instead of creating a complex return syntax for
HTMLPurifier_AttrDef, we just pass the whole attribute array to a
specialized object and have that do the special work.  That is the
family of HTMLPurifier_AttrTransform.

An attribute transformation can be assigned to run before or after
HTMLPurifier_AttrDef validation.  See HTMLPurifier_HTMLDefinition for
more details.
prependCSS(&$attr, $css)   X-Ref
Prepends CSS properties to the style attribute, creating the
attribute if it doesn't exist.

param: array &$attr Attribute array to process (passed by reference)
param: string $css CSS to prepend

confiscateAttr(&$attr, $key)   X-Ref
Retrieves and removes an attribute

param: array &$attr Attribute array to process (passed by reference)
param: mixed $key Key of attribute to confiscate
return: mixed