如何在Zend Framework中使用现有的装饰器?

时间:2010-11-29 13:33:12

标签: php html zend-framework zend-form zend-decorators

以下代码:

$this->addElement('text', 'email', array(
    'label' => 'Your email address:',
));

$this->addElement('submit', 'submit', array(
    'label' => 'Sign Guestbook',
));

生成以下HTML:

<form enctype="application/x-www-form-urlencoded" action="" method="post">
    <dl class="zend_form">
        <dt id="email-label">
            <label for="email" class="optional">Your email address:</label>
        </dt>
        <dd id="email-element">
            <input type="text" name="email" id="email" value="" />
        </dd>

        <dt id="submit-label">
            &#160;
        </dt>
        <dd id="submit-element">
            <input type="submit" name="submit" id="submit" value="Sign Guestbook" />
        </dd>
    </dl>
</form>

我知道,我可以编写自己的装饰器,但我想知道如何使用现有装饰器来创建以下HTML:

<form enctype="application/x-www-form-urlencoded" action="" method="post">
    <div>
        <label for="email" class="optional">Your email address:</label>
        <input type="text" name="email" id="email" value="" class="my_class" />
    </div>

    <div>
        <input type="submit" name="submit" id="submit" value="Sign Guestbook" class="my_class" />
    </div>
</form>

<dl/><dt/><dd/>,添加了class属性。

例如,我知道如何移除周围的<dl/>标记:

$this->addDecorator('FormElements')
     ->addDecorator('Form');

其他更改是否可能没有编写自定义装饰器?

2 个答案:

答案 0 :(得分:1)

您可以使用HtmlTag装饰器并传递哪个标记用作参数。

此处列出了所有可用的装饰器:http://framework.zend.com/manual/en/zend.form.standardDecorators.html

答案 1 :(得分:1)

这个(将此数组附加到您的参数数组,现在只包含一个标签选项)应该有助于您的电子邮件字段:

'class' => 'my_class',
'decorators' => array(
    'ViewHelper',
    'Errors',
    'Label',
    array('HtmlTag', array('tag' => 'div'))
)

同样没有Label - 提交。