Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $form['set_end_date'] = array (
  2. '#type' => 'date',
  3. '#title' => t('set end date'),
  4. '#required' => TRUE,
  5. );
  6.  
  7. $form['actions']['#type'] = 'actions';
  8. $form['actions']['submit'] = array(
  9. '#type' => 'submit',
  10. '#value' => $this->t('Fetch'),
  11. '#button_type' => 'primary',
  12. );
  13. return $form;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement