ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
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 
)

Definition at line 8 of file Border.php.

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

8  {
9  if (!isset($attr['border'])) return $attr;
10  $border_width = $this->confiscateAttr($attr, 'border');
11  // some validation should happen here
12  $this->prependCSS($attr, "border:{$border_width}px solid;");
13  return $attr;
14  }
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: