ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
Simple.php
Go to the documentation of this file.
1 <?php
2 
9 {
10 
11  protected $style;
12 
17  public function __construct($transform_to, $style = null) {
18  $this->transform_to = $transform_to;
19  $this->style = $style;
20  }
21 
22  public function transform($tag, $config, $context) {
23  $new_tag = clone $tag;
24  $new_tag->name = $this->transform_to;
25  if (!is_null($this->style) &&
26  ($new_tag instanceof HTMLPurifier_Token_Start || $new_tag instanceof HTMLPurifier_Token_Empty)
27  ) {
28  $this->prependCSS($new_tag->attr, $this->style);
29  }
30  return $new_tag;
31  }
32 
33 }
34 
35 // vim: et sw=4 sts=4
Defines a mutation of an obsolete tag into a valid tag.
Definition: TagTransform.php:6
Concrete start token class.
Definition: Start.php:6
prependCSS(&$attr, $css)
Prepends CSS properties to the style attribute, creating the attribute if it doesn&#39;t exist...
transform($tag, $config, $context)
Definition: Simple.php:22
Concrete empty token class.
Definition: Empty.php:6
__construct($transform_to, $style=null)
Definition: Simple.php:17
$transform_to
Tag name to transform the tag to.
Simple transformation, just change tag name to something else, and possibly add some styling...
Definition: Simple.php:8