PSR-2 reformatting PHPDoc corrections
[htmlpurifier.git] / library / HTMLPurifier / AttrDef / CSS / DenyElementDecorator.php
blob9d77cc9aafbf44f8c43969662ca51a5f90d1ed8c
1 <?php
3 /**
4 * Decorator which enables CSS properties to be disabled for specific elements.
5 */
6 class HTMLPurifier_AttrDef_CSS_DenyElementDecorator extends HTMLPurifier_AttrDef
8 /**
9 * @type HTMLPurifier_AttrDef
11 public $def;
12 /**
13 * @type string
15 public $element;
17 /**
18 * @param HTMLPurifier_AttrDef $def Definition to wrap
19 * @param string $element Element to deny
21 public function __construct($def, $element)
23 $this->def = $def;
24 $this->element = $element;
27 /**
28 * Checks if CurrentToken is set and equal to $this->element
29 * @param string $string
30 * @param HTMLPurifier_Config $config
31 * @param HTMLPurifier_Context $context
32 * @return bool|string
34 public function validate($string, $config, $context)
36 $token = $context->get('CurrentToken', true);
37 if ($token && $token->name == $this->element) {
38 return false;
40 return $this->def->validate($string, $config, $context);
44 // vim: et sw=4 sts=4