Zend_forms tasarımı ziyade dekoratörler kullanarak daha iyi bir yolu var mı?

2 Cevap php

Şu anda benim forma stilleri eklemek için zend_decorators kullanıyorum. Bunu yapmanın alternatif bir yol olup olmadığını merak ediyorum? Bu dekoratörler yazmak biraz zor. Ben divs ve css stil kullanarak rahat bir aşk olur:

<input type="submit" class="colorfulButton" > 

Bu daha ziyade belli bir denetim için bir dekoratör ayarlamak ve eklemek daha kolaydır. Her tarzı uygulama için bir dekoratör oluşturma ve kontrolü ile o kadar ekleyerek gerektirir beri. Hüner yardımcıları görecekler?

2 Cevap

Bir kaç yolu var. Sen (Yakında sanırım oldukça hantal alabilir ki) kendi elemanı görünümü yardımcıları dönebilirsiniz.

Ya da ... Böyle form için bir viewscript, (çok basit bir örnek) kullanabilirsiniz:

class Your_Form extends Zend_Form
{
    public function init()
    {
        $this->setDecorators( array(
            'PrepareElements',
             array( 'ViewScript', array( 'viewScript' => 'path/to/viewscript.phtml' ) )
        ) );

        // only use basic decorators for elements
        $decorators = array(
            'ViewHelper',
            'Label',
            'Errors'
        );

        // create some element
        $someElement = new Zend_Form_Element_Text( 'someElement' );
        // set the basic decorators for this element and set a css class
        $someElement->setDecorators( $decorators )
                    ->setAttrib( 'class', 'someCssClass' );

        // add (potentially multiple) elements to this from
        $this->addElements( array(
            $someElement
        ) );

    }
}

Bu form için PrepareElements dekoratör seti, ViewScript dekoratör kullanarak için gerekli yüzden için standard decorators section about PrepareElements bakın.

Daha sonra viewscript in:

<?
    // the form is available to the viewscript as $this->element
    $form = $this->element;
?>
<!-- put whatever html you like in this script and render the basic element decorators seperately -->
<div>
   <? if( $form->someElement->hasErrors() ): ?>
   <?= $form->someElement->renderErrors() ?>
   <? endif; ?>
   <?= $form->someElement->renderLabel(); ?>
   <?= $form->someElement->renderViewHelper(); ?>
</div>

Sadece bir form öğesi üzerinde bir sınıf özniteliğini ayarlamak istiyorsanız, bir dekoratör tanımlamak gerek yoktur: Bu Zend_Form elemanlarının bazı standart yöntemler kullanılarak yapılabilir.

Bkz setAttrib() method, in the section Metadata and Attributes of the manual, and the example that's given there (quoting),

// Equivalent to $element->setAttrib('class', 'text'):
$element->class = 'text;


And if you can set a class attribute this way, you can probably set it while constructing your form's elements, or in a .ini file that would define those elements -- there is an example that shows that a bit later in the page, in the Configuration section.