Ejemplo n.º 1
0
 /**
  * render the month range dropdown fields
  */
 public function render()
 {
     // check result of validity checks of parameters passed to this Input element
     $this->checkValidity();
     // render the month range dropdowns
     $output = $this->monthFrom->render() . $this->monthTo->render();
     $output .= $this->renderInvalidations();
     return $output;
 }