summaryrefslogtreecommitdiffstats
path: root/application/views/helpers/FormIplExtensibleSet.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--application/views/helpers/FormIplExtensibleSet.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/application/views/helpers/FormIplExtensibleSet.php b/application/views/helpers/FormIplExtensibleSet.php
new file mode 100644
index 0000000..c782016
--- /dev/null
+++ b/application/views/helpers/FormIplExtensibleSet.php
@@ -0,0 +1,23 @@
+<?php
+
+use Icinga\Module\Director\Web\Form\IplElement\ExtensibleSetElement;
+
+/**
+ * View helper for extensible sets
+ *
+ * @codingStandardsIgnoreStart
+ */
+class Zend_View_Helper_FormIplExtensibleSet extends Zend_View_Helper_FormElement
+{
+ private $currentId;
+
+ /**
+ * @codingStandardsIgnoreEnd
+
+ * @return string The element HTML.
+ */
+ public function formIplExtensibleSet($name, $value = null, $attribs = null)
+ {
+ return ExtensibleSetElement::fromZfDingens($name, $value, $attribs);
+ }
+}