diff --git a/library/Icinga/Web/Form/Decorator/HelpText.php b/library/Icinga/Web/Form/Decorator/HelpText.php deleted file mode 100644 index 970da5cfb..000000000 --- a/library/Icinga/Web/Form/Decorator/HelpText.php +++ /dev/null @@ -1,37 +0,0 @@ -getElement()->getAttribs(); - $visible = true; - if (isset($attributes['condition'])) { - $visible = $attributes['condition'] == '1'; - } - if (isset($attributes['helptext']) && $visible) { - $content = $content - . '

' - . $attributes['helptext'] - . '

'; - } - return $content; - } -}