예제 #1
0
파일: Radio.php 프로젝트: bradley-holt/zf2
 /**
  * Load default decorators
  *
  * Disables "for" attribute of label if label decorator enabled.
  *
  * @return \Zend\Form\Element\Radio
  */
 public function loadDefaultDecorators()
 {
     if ($this->loadDefaultDecoratorsIsDisabled()) {
         return $this;
     }
     parent::loadDefaultDecorators();
     $this->addDecorator('Label', array('tag' => 'dt', 'disableFor' => true));
     return $this;
 }