_format; } public function setRequired($flag = true) { $this->_required = (bool) $flag; $this->setAttrib('required', $this->_required); return $this; } public function setValue($value) { return parent::setValue(empty($value) ? null : $value); } public function loadDefaultDecorators() { parent::loadDefaultDecorators(); if (false !== $decorator = $this->getDecorator('Label')) { $decorator->setOption('disableFor', true); } } }