From 99ad72a0da7694c4a083c6f43181b788d61e9051 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Thu, 20 Nov 2014 13:50:40 +0100 Subject: [PATCH] Remove the Help decorator --- library/Icinga/Web/Form/Decorator/Help.php | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 library/Icinga/Web/Form/Decorator/Help.php diff --git a/library/Icinga/Web/Form/Decorator/Help.php b/library/Icinga/Web/Form/Decorator/Help.php deleted file mode 100644 index 1f8df2ce0..000000000 --- a/library/Icinga/Web/Form/Decorator/Help.php +++ /dev/null @@ -1,33 +0,0 @@ -getElement(); - $description = $element->getView()->escape($element->getDescription()); - - if (! empty($description)) { - $helpIcon = Icinga::app()->getViewRenderer()->view->icon('help', $description); - return $helpIcon . $content; - } - - return $content; - } -}