我创建了一个元素提交:
$this->addElement('submit', 'button', array(
'ignore' => true,
'label' => 'Update',
'class' => 'btn blue',
));
现在尝试为这个元素装饰器设置:
$submit = $this->getElement('submit');
$submit->setDecorators(array(
array('ViewHelper'),
array('Description'),
array('HtmlTag', array('tag' => 'div', 'class'=>'submit-group')),
));
我的代码有问题,因为我setDecorators
在没有对象上调用成员函数时遇到致命错误?