ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
BoolToCSS.php
Go to the documentation of this file.
1 <?php
2 
7 {
12  protected $attr;
13 
18  protected $css;
19 
24  public function __construct($attr, $css)
25  {
26  $this->attr = $attr;
27  $this->css = $css;
28  }
29 
36  public function transform($attr, $config, $context)
37  {
38  if (!isset($attr[$this->attr])) {
39  return $attr;
40  }
41  unset($attr[$this->attr]);
42  $this->prependCSS($attr, $this->css);
43  return $attr;
44  }
45 }
46 
47 // vim: et sw=4 sts=4