ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
HTMLPurifier_AttrTransform_Lang Class Reference

Post-transform that copies lang's value to xml:lang (and vice-versa) More...

+ Inheritance diagram for HTMLPurifier_AttrTransform_Lang:
+ Collaboration diagram for HTMLPurifier_AttrTransform_Lang:

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

Post-transform that copies lang's value to xml:lang (and vice-versa)

Note
Theoretically speaking, this could be a pre-transform, but putting post is more efficient.

Definition at line 8 of file Lang.php.

Member Function Documentation

◆ transform()

HTMLPurifier_AttrTransform_Lang::transform (   $attr,
  $config,
  $context 
)

Definition at line 11 of file Lang.php.

References $lang.

11  {
12 
13  $lang = isset($attr['lang']) ? $attr['lang'] : false;
14  $xml_lang = isset($attr['xml:lang']) ? $attr['xml:lang'] : false;
15 
16  if ($lang !== false && $xml_lang === false) {
17  $attr['xml:lang'] = $lang;
18  } elseif ($xml_lang !== false) {
19  $attr['lang'] = $xml_lang;
20  }
21 
22  return $attr;
23 
24  }

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