blob: c78201638c0ba7e24171868e6ff3ec3e5fe7c288 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
}
}
|