Guest User

Untitled

a guest
Jul 11th, 2016
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. $fields['maDate'] = array(
  2. 'weight' => 30,
  3. 'label' => __( 'Date', 'sprout-invoices' ),
  4. 'type' => 'text',
  5. 'required' => true,
  6. 'default' => date("d/m/Y"), /* <———————————————————————— GET THIS DATE */
  7.  
  8. public static function submission_form_fields() {
  9. $current_user = wp_get_current_user();
  10. $fields = array();
  11. $fields['title'] = array(
  12. 'weight' => 10,
  13. 'label' => __( 'Subject', 'sprout-invoices' ),
  14. 'type' => 'text',
  15. 'required' => true,
  16. 'default' => '', // <———————————————————————— GET THE DATE HERE */
  17. );
Advertisement
Add Comment
Please, Sign In to add comment