Zend表单元素装饰器

时间:2010-03-23 09:10:43

标签: php zend-framework

如何通过装饰器添加checkbox元素的标签?

1 个答案:

答案 0 :(得分:1)

$this->getElement('elementId')->addDecorator('Label'); ?

您也可以选择展示位置:

$this->getElement('elementId')->addDecorator('Label', array('placement' => 'APPEND'))

或者通过一般的装饰设置来完成:

'decorators' => array(
array('ViewHelper'),
array('Label', array('placement' => 'APPEND'))

实际上所有信息都可以在http://framework.zend.com/manual/en/zend.form.standardDecorators.html

获得