ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f87
HTMLPurifier_AttrTransform_Name Class Reference

Pre-transform that changes deprecated name attribute to ID if necessary. More...

+ Inheritance diagram for HTMLPurifier_AttrTransform_Name:
+ Collaboration diagram for HTMLPurifier_AttrTransform_Name:

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 name attribute to ID if necessary.

Definition at line 6 of file Name.php.

Member Function Documentation

◆ transform()

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

Definition at line 15 of file Name.php.

References HTMLPurifier_AttrTransform\confiscateAttr().

16  {
17  // Abort early if we're using relaxed definition of name
18  if ($config->get('HTML.Attr.Name.UseCDATA')) {
19  return $attr;
20  }
21  if (!isset($attr['name'])) {
22  return $attr;
23  }
24  $id = $this->confiscateAttr($attr, 'name');
25  if (isset($attr['id'])) {
26  return $attr;
27  }
28  $attr['id'] = $id;
29  return $attr;
30  }
confiscateAttr(&$attr, $key)
Retrieves and removes an attribute.
+ Here is the call graph for this function:

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