ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
HTMLPurifier_AttrTransform_Border Class Reference

Pre-transform that changes deprecated border attribute to CSS. More...

+ Inheritance diagram for HTMLPurifier_AttrTransform_Border:
+ Collaboration diagram for HTMLPurifier_AttrTransform_Border:

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 deprecated border attribute to CSS.

Definition at line 6 of file Border.php.

Member Function Documentation

◆ transform()

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

Definition at line 14 of file Border.php.

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

15  {
16  if (!isset($attr['border'])) {
17  return $attr;
18  }
19  $border_width = $this->confiscateAttr($attr, 'border');
20  // some validation should happen here
21  $this->prependCSS($attr, "border:{$border_width}px solid;");
22  return $attr;
23  }
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: