Guest User

Untitled

a guest
Jan 23rd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <?php
  2. /* Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ')' */
  3. $frWidgetFormDate = new sfWidgetFormDate();
  4. $frWidgetFormDate->configure('format', '%day%/%month%/%year%');
  5.  
  6. $this->widgetSchema['lent_since'] = new sfWidgetFormJQueryDate(array(
  7. 'image' => '/images/calendar.png',
  8. 'config' => "{
  9. 'changeMonth' : true,
  10. 'changeYear' : true,
  11. }",
  12. 'culture' => 'fr'
  13. 'date_widget' => $frWidgetFormDate /* <- on this line */
  14. ));
  15. ?>
Add Comment
Please, Sign In to add comment