有没有更好的方法来设计zend_forms而不是使用装饰器?

时间:2010-04-12 02:40:25

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

我目前正在使用zend_decorators为我的表单添加样式。我想知道是否有另一种方法可以做到这一点?编写装饰器有点困难。我会喜欢使用div和css风格的随意的:

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

它更简单,而不是为某个控件设置装饰器并添加它。因为它需要为每个样式实现创建一个装饰器并将其与控件一起添加。会不会看到帮手?

2 个答案:

答案 0 :(得分:3)

有几种方法。您可以滚动自己的元素视图助手(我猜这很快就会变得笨拙)。

或者......你可以使用表单的viewcript,就像这样(非常基本的例子):

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
        ) );

    }
}

使用ViewScript装饰器时,请参阅standard decorators section about PrepareElements了解为何需要为表单设置PrepareElements装饰器。

然后在viewscript中:

<?
    // 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>

答案 1 :(得分:1)

如果您只想在表单元素上设置类属性,则无需定义装饰器:这可以使用zend_form元素的一些标准方法来完成。

请参阅本手册Metadata and Attributes部分中的 setAttrib() 方法,以及(引用)所提供的示例:

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


如果你可以用这种方式设置一个类属性,你可以在构造表单元素时设置它,或者在一个定义这些元素的.ini文件中设置它 - 有一个例子显示稍后在页面中, Configuration部分。