Код кнопки в Zend Framework 1 Form:
$current_image = $this->CreateElement('button','current_image',
array( 'label' => 'Browse Files',
'class' => 'btn btn-default',
'required' => true));
$this->addElement($current_image);
Выведите следующее:
<dt id="current_image-label"> </dt>
<dd id="current_image-element">
<button name="current_image" id="current_image" type="button" class="btn btn-default">Browse Files</button>
</dd>
Пробовал с setLabel (), но не показывает метку в <dt id="current_image-label"> </dt>