ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
HTMLPurifier_AttrTransform_Background Class Reference

Pre-transform that changes proprietary background attribute to CSS. More...

+ Inheritance diagram for HTMLPurifier_AttrTransform_Background:
+ Collaboration diagram for HTMLPurifier_AttrTransform_Background:

Public Member Functions

 transform ($attr, $config, $context)
 
- Public Member Functions inherited from HTMLPurifier_AttrTransform
 transform ($attr, $config, $context)
 Abstract: makes changes to the attributes dependent on multiple values. More...
 
 prependCSS (&$attr, $css)
 Prepends CSS properties to the style attribute, creating the attribute if it doesn't exist. More...
 
 confiscateAttr (&$attr, $key)
 Retrieves and removes an attribute. More...
 

Detailed Description

Pre-transform that changes proprietary background attribute to CSS.

Definition at line 6 of file Background.php.

Member Function Documentation

◆ transform()

HTMLPurifier_AttrTransform_Background::transform (   $attr,
  $config,
  $context 
)
Parameters
array$attr
HTMLPurifier_Config$config
HTMLPurifier_Context$context
Returns
array

Definition at line 14 of file Background.php.

References HTMLPurifier_AttrTransform\confiscateAttr(), and HTMLPurifier_AttrTransform\prependCSS().

15  {
16  if (!isset($attr['background'])) {
17  return $attr;
18  }
19 
20  $background = $this->confiscateAttr($attr, 'background');
21  // some validation should happen here
22 
23  $this->prependCSS($attr, "background-image:url($background);");
24  return $attr;
25  }
confiscateAttr(&$attr, $key)
Retrieves and removes an attribute.
prependCSS(&$attr, $css)
Prepends CSS properties to the style attribute, creating the attribute if it doesn't exist...
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: