Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php
  2. // render the opening tag
  3. echo $this->form()->openTag($form);
  4. echo $this->formDateSelect($form->get('date_of_birth'), IntlDateFormatter::MEDIUM, 'en_IN');
  5. echo $this->formElement($form->get('another_element_defined_in_form'));
  6. echo $this->formElementErrors($form->get('another_element_defined_in_form')));
  7.  
  8.  
  9.  
  10. // render the closing tag
  11. echo $this->form()->closeTag();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement