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

Definition at line 9 of file Name.php.

References HTMLPurifier_AttrTransform\confiscateAttr().

9  {
10  // Abort early if we're using relaxed definition of name
11  if ($config->get('HTML.Attr.Name.UseCDATA')) return $attr;
12  if (!isset($attr['name'])) return $attr;
13  $id = $this->confiscateAttr($attr, 'name');
14  if ( isset($attr['id'])) return $attr;
15  $attr['id'] = $id;
16  return $attr;
17  }
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: