<?php
class Application_Form_Example9 extends Twitter_Bootstrap3_Form_Vertical
{
public function init()
{
$this->addElement('text', 'inputSuccess2', array(
'label' => 'Input with success',
'success' => true,
));
$this->addElement('text', 'inputWarning2', array(
'label' => 'Input with warning',
'warning' => array('12'),
));
$this->addElement('text', 'inputError2', array(
'label' => 'Input with error',
));
$this->getElement('inputError2')->addError('Error message');
}
}