我正在实现如下的 zend 装饰器:
$formDecorators = array(
'FormElements',
array( 'HtmlTag', array('tag' => 'dl',
'class' => 'survey_form')),
'Form',
);
$elementDecorators = array(
'ViewHelper',
'Errors',
array('HtmlTag', array('tag' => 'dd',
'class' => 'survey_form_dd')),
array('Label', array('tag' => 'dt',
'class' => 'survey_form_label name')),
);
生成像:
<dl>
<dt>
<dd class="survey_form_dd">
<label style="white-space: nowrap;">
现在,我想将类添加到<dd>
--><Label>
并且还想根据 TABLE 结构自定义我的装饰器。