Zend:如何使用setDecorators()创建自定义表单元素?

时间:2013-03-01 06:22:10

标签: zend-framework zend-form decorator

我需要下面的表单html:

<form>
<div class="es_form_txt">Name</div>
<div class="es_form"><input type="text" value="" class="email1"></div>
<div class="clear1"></div>
<div class="es_form_txt">Gender</div>
<div class="es_form">
    <input type="radio" value="" name=""> Male
    <input type="radio" value="" name=""> Female
    <input type="radio" value="" name=""> Other
</div>
<div class="clear1"></div>
<div class="es_form_txt">Country Code</div>
<div class="es_form"><input type="text" value="" class="email1"></div>
<div class="clear1"></div>
<div class="es_form_txt">Phone</div>
<div class="es_form"><input type="text" value="" class="email1"></div>
<div class="clear1"></div> 
<div class="clear1"></div>
<div class="es_form">&nbsp;</div>
<div class="es_form"><input type="button" class="button" value="Update"></div>
<div class="clear"></div>
</form>

我在这里尝试了各种各样的解决方案!有人能指出我正确的方向吗?

1 个答案:

答案 0 :(得分:1)

我发现当我需要在使用Zend_Form时显示特定的HTML时,最可靠的解决方案通常是使用ViewScript decorator

使用Zend_Form构建普通表单。

<?php
//application/forms/Search.php
class Application_Form_Search extends Zend_Form
{
    public function init()
    {
        $this->setMethod('POST');
        //assign the view script to the decorator, this can also be done in the controller
        $this->setDecorators(array(
            array('ViewScript', array(
                    'viewScript' => '_searchForm.phtml'
            ))
        ));
        // create new element
        $query = $this->createElement('text', 'query');
        // element options
        $query->setLabel('Search Keywords');
        // add the element to the form
        $this->addElement($query);
        //submit element
        $submit = $this->createElement('submit', 'search');
        $submit->setLabel('Search Site');
        $submit->setDecorators(array('ViewHelper'));
        $this->addElement($submit);
    }
}

然后构建用于呈现表单的实际脚本。

<!-- ~/views/scripts/_searchForm.phtml -->
<article class="search">
    <!-- set the action and the method -->
    <form action="<?php echo $this->element->getAction()?>" method="<?php echo $this->element->getMethod()?>">
        <table>
            <tr>
                <!-- you can render individual decorators. -->
                <th><?php echo $this->element->query->renderLabel()?></th>
            </tr>
            <tr>
                <td><?php echo $this->element->query->renderViewHelper()?></td>
            </tr>
            <tr>
                <!-- or you can render a complete element -->
                <td><?php echo $this->element->search?></td>
            </tr>
        </table>
    </form>
</article>

目前呈现为:

<article class="search">
    <form action="/video/index/display" method="post">
        <table>
            <tr>
                <th>
                    <dt id="query-label">
                        <label for="query" class="optional">Search Keywords</label>
                    </dt>
                </th>
            </tr>
            <tr>
                <td>
                    <input type="text" name="query" id="query" value="" placeholder="Movie Title" size="20">
                </td>
            </tr>
            <tr>
                <td>
                    <input type="submit" name="search" id="search" value="Search Video Collection!">
                </td>
            </tr>
        </table>
    </form>
</article>   

需要进行一些实验才能准确获得所需的输出。