0

我有两个要求:1)所有隐藏的输入元素都应该受到影响,而不需要删除标准装饰器。2)这应该发生而不必在每个元素的基础上指定它。

如果元素类型是 Zend_Form_Element_Hidden,我所需要的只是将 CSS 类附加到 DT 和 DD 标签。

我尝试过创建自定义 HtmlTag、DtDdWrapper 和 FormElement 装饰器,但无法弄清楚如何去做。

默认情况下,它们以这种方式显示:

<dt>&nbsp;</dt>
<dd><input type="hidden" name="whatever" value="bling" /></dd>

我希望它们以这种方式出现:

<dt class="hidden">&nbsp;</dt>
<dd class="hidden"><input type="hidden" name="whatever" value="bling" /></dd>

这样他们仍然会在他们应该在的地方,但他们不会中断文档的流动。

不起作用的示例:

class My_Form_Decorator_DtDdWrapper extends Zend_Form_Decorator_DtDdWrapper
{
    public function render($content)
    {
        if ($this->getElement() instanceof Zend_Form_Element_Hidden)
        {
            return '<dt class="hidden">&nbsp;</dt><dd class="hidden">'.$content.'</dd>';
        }
        else
        {
            return parent::render($content);
        }
    }
4

2 回答 2

3

根据您所需的示例输出,我不清楚您为什么要包含<dt>on hidden 元素,特别是因为您没有应用任何标签,它们最终会成为不必要的标记。假设 label是不必要的,您可以通过以下方式达到预期的效果:

class TestForm extends Zend_Form
{
    protected $_hiddenElementDecorator = array(
        'ViewHelper',
        array('HtmlTag', array('tag' => 'dd', 'class' => 'hidden')),
    );

    public function init()
    {
        $this->addElement('hidden', 'hiddenElement0');

        $element = new Zend_Form_Element_Hidden('hiddenElement1');
        $this->addElement($element);

    }

    public function loadDefaultDecorators()
    {
        foreach ($this->getElements() as $element) {
            if ($element->getType() === "Zend_Form_Element_Hidden") {
                $element->setDecorators($this->_hiddenElementDecorator);
            }
        }

        parent::loadDefaultDecorators();
    }
}

上述两个元素都将产生具有各自 id 的相同输出。例子:

<dd class="hidden">
    <input type="hidden" name="hiddenElement0" value="" id="hiddenElement0" />
</dd>

该方法中的foreach循环在构建表单时loadDefaultDecorators()迭代地应用于$this->_hiddenElementDecorator每个隐藏的表单元素。如果你想在多个表单上应用隐藏元素装饰器,只需创建一个包含$_hiddenElementDecorator变量和loadDefaultDecorators()方法的父类。


但是,如果您一心想要包含<dt>示例输出中描述的标签元素 ( ) 并应用“隐藏”类,那么您最终会得到:

<dt class="hidden">&nbsp;</dt>
<dd class="hidden">
    <input type="hidden" name="hiddenElement0" value="" id="hiddenElement0" />
</dd>

...您将需要扩展Zend_Form_Decorator_Label类并覆盖 render() 方法。看看if (null !== $tag)块中的评论:

class My_Form_Decorator_Label extends Zend_Form_Decorator_Label
{
    public function render($content)
    {
        $element = $this->getElement();
        $view    = $element->getView();
        if (null === $view) {
            return $content;
        }

        $label     = $this->getLabel();
        $separator = $this->getSeparator();
        $placement = $this->getPlacement();
        $tag       = $this->getTag();
        $id        = $this->getId();
        $class     = $this->getClass();
        $options   = $this->getOptions();

        if (empty($label) && empty($tag)) {
            return $content;
        }

        if (!empty($label)) {
            $options['class'] = $class;
            $label = $view->formLabel($element->getFullyQualifiedName(), trim($label), $options);
        } else {
            $label = '&nbsp;';
        }

        if (null !== $tag) {
            require_once 'Zend/Form/Decorator/HtmlTag.php';
            $decorator = new Zend_Form_Decorator_HtmlTag();
            // Add 'class' => 'hidden' to the <dt> tag decorator options.
            $decorator->setOptions(array('tag' => $tag, 'class' => 'hidden'));
            $label = $decorator->render($label);
        }

        switch ($placement) {
            case self::APPEND:
                return $content . $separator . $label;
            case self::PREPEND:
                return $label . $separator . $content;
        }

    }
}

最后,要将新装饰器应用于所有隐藏的表单元素,您需要将元素前缀路径点添加到装饰器,并将标签装饰器重新添加$_hiddenElementDecorator到类中的数组中TestForm

class TestForm extends Zend_Form
{
    protected $_hiddenElementDecorator = array(
        'ViewHelper',
        array('HtmlTag', array('tag' => 'dd', 'class' => 'hidden')),
        // Add back the label element.
        array('Label', array('tag' => 'dt', 'class' => 'hidden')),
    );

    public function init()
    {
        $this->addElement('hidden', 'hiddenElement0');

        $element = new Zend_Form_Element_Hidden('hiddenElement1');
        $this->addElement($element);

    }

    public function loadDefaultDecorators()
    {
        foreach ($this->getElements() as $element) {
            if ($element->getType() === "Zend_Form_Element_Hidden") {
                $element->setDecorators($this->_hiddenElementDecorator);
            }
        }

        // Add a decorator prefix path pointing to our new nifty decorator.
        $this->addElementPrefixPath('My_Form_Decorator', '/path/to/Decorator', Zend_Form_Element::DECORATOR);
        parent::loadDefaultDecorators();
    }
}        

像馅饼一样容易,不是吗?

于 2009-02-06T10:43:12.120 回答
0

这将对您有所帮助:您还可以指定任何其他属性。

$el = $form->getElement('whatever');
$el->addDecorators(
            array('ViewHelper',
            array('HtmlTag',array('tag' => 'dt','class'=>'hidden')),
            array('Label', array('tag' => 'dd ',  'class'=>'hidden')),
            ));
于 2009-02-03T20:23:16.803 回答