2

我正在处理 zend 框架 1.12 中的一个项目。为了生成装饰器,我创建了一个扩展“Zend_Form”的类“Application_Form_Base”。当我在表单中添加带有标签装饰器的新元素时,我已经在这个类中编写了这样的代码,它在该标签上应用了一个 css 类“field_label”。问题来了,对于某种形式,我只想在运行时删除标签的这个 css 类。任何人都有想法,如何在渲染表单元素时在运行时删除这个 css 类?

以下是我的中间形式类

<?php

class Application_Form_Base extends Zend_Form
{

public $elementDecorators = array(
        'ViewHelper',
        'Errors',
        array(
                'label',
                array(                          
                        'class' => 'field_label'
                )
        ),
        array(
                array(
                        'row' => 'HtmlTag'
                ),
                array(
                        'tag' => 'div',
                        'class' => 'form-row'
                )
        )
);

public $buttonDecorators = array(
        'ViewHelper',
        array(
                array(
                        'label' => 'HtmlTag'
                ),
                array(
                        'tag' => 'label',
                        'placement' => 'prepend',
                        'class'=>'field_label'
                )
        ),
        array(
                array(
                        'row' => 'HtmlTag'
                ),
                array(
                        'tag' => 'div',
                        'class' => 'form-row'
                )
        )
);

public function loadDefaultDecorators ()
{
    $this->setDecorators(
            array(
                    'FormElements',
                    array(
                            'HtmlTag',
                            array(
                                    'tag' => 'div',
                                    'class' => 'zendForm'
                            )
                    ),
                    'Form'
            ));
}
}

以下是我的搜索表单的片段

class Admin_Form_SubscribeSearch extends Application_Form_Base
{

public function init()
{
    $locale = Zend_Registry::get('Zend_Translate');

    /* Form Elements & Other Definitions Here ... */

    $this->setMethod('post');
    $this->setName('searchPackage');

    $this->addElement('text','name',array(
        'label'=>$locale->translate('label_name'),
        'required'=>true,
        'decorators'=> $this->elementDecorators,
        'filters'=>array('StringTrim'),
        'class'=>'',   
    ));

以下是为该表单字段生成的 html 输出。

<label class="field_label required" for="price">name</label>

在视图中渲染表单元素时,我想删除这个 'field_label' 类。我怎样才能做到这一点?

4

1 回答 1

0

您可以为特定元素设置特定的装饰器:

$element = $this->getElement('name');
$element->setDecorator(array('Label')); // without additional class
于 2012-09-19T08:12:04.067 回答