1

Zend Framework と Zend_Form を使用してフォームをレンダリングしています。しかし、カスタマイズするのが難しいと感じたので、要素を個別に印刷することにしました。

問題は、表示グループ内の個々の要素を印刷する方法がわからないことです。表示グループ (フィールドセット) を印刷する方法は知っていますが、その中に何かを追加する必要があります<div class="spacer"></div>( float:left.

グループをコンテンツなしで表示して、自分で個別に印刷できるようにする方法はありますか?

ご協力ありがとうございました。

4

1 に答える 1

7

あなたが探しているのは、'ViewScript' デコレータです。必要な方法で html を作成できます。これがどのように機能するかの簡単な例を次に示します。

フォーム、単純な検索フォーム:

<?php
class Application_Form_Search extends Zend_Form
{
    public function init() {
        // create new element
        $query = $this->createElement('text', 'query');
        // element options
        $query->setLabel('Search Keywords');
        $query->setAttribs(array('placeholder' => 'Query String',
            'size' => 27,
            ));
        // add the element to the form
        $this->addElement($query);
        //build submit button
        $submit = $this->createElement('submit', 'search');
        $submit->setLabel('Search Site');
        $this->addElement($submit);
    }
}

次は「部分」です。これはデコレータです。ここで、必要な方法で html を作成します。

<article class="search">
<!-- I get the action and method from the form but they were added in the controller -->
    <form action="<?php echo $this->element->getAction() ?>"
          method="<?php echo $this->element->getMethod() ?>">
        <table>
            <tr>
            <!-- renderLabel() renders the Label decorator for the element
                <th><?php echo $this->element->query->renderLabel() ?></th>
            </tr>
            <tr>
            <!-- renderViewHelper() renders the actual input element, all decorators can be accessed this way -->
                <td><?php echo $this->element->query->renderViewHelper() ?></td>
            </tr>
            <tr>
            <!-- this line renders the submit element as a whole -->
                <td><?php echo $this->element->search ?></td>
            </tr>
        </table> 
    </form>
</article>

そして最後にコントローラーコード:

public function preDispatch() {
        //I put this in the preDispatch method because I use it for every action and have it assigned to a placeholder.
        //initiate form
        $searchForm = new Application_Form_Search();
        //set form action
        $searchForm->setAction('/index/display');
        //set label for submit button
        $searchForm->search->setLabel('Search Collection');
        //I add the decorator partial here. The partial .phtml lives under /views/scripts
        $searchForm->setDecorators(array(
            array('ViewScript', array(
                    'viewScript' => '_searchForm.phtml'
            ))
        ));
        //assign the search form to the layout place holder
        //substitute $this->view->form = $form; for a normal action/view
        $this->_helper->layout()->search = $searchForm;
    }

通常の を使用して、ビュー スクリプトでこのフォームを表示します<?php $this->form ?>

このメソッドは、Zend_Form で作成する任意のフォームに使用できます。したがって、独自のフィールドセットに要素を追加するのは簡単です。

于 2012-04-27T11:23:03.477 に答える