public function render(array $options = [], $showLabel = true, $showField = true, $showError = false)
 {
     $this->setupStaticOptions($options);
     return parent::render($options, $showLabel, $showField, $showError);
 }
示例#2
0
 /**
  * {@inheritdoc}
  */
 public function renderField(FormField $field)
 {
     $html = $field->render();
     return $html;
 }