1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| $startdate1 = new FormDate();
$startdate1->config['prefix']="start_1_";
$startdate1->setLocale('nl_BE');
$startdate1->year['start'] = 2011;
$startdate1->year['end'] = 2015;
$startdate1->month['values'] = 'numbers';
$data['startdate1'] = $startdate1;
$enddate1 = new FormDate();
$enddate1->config['prefix']="end_1_";
$enddate1->setLocale('nl_BE');
$enddate1->year['start'] = 2011;
$enddate1->year['end'] = 2015;
$enddate1->month['values'] = 'numbers';
$data['enddate1'] = $enddate1;
$startdate2 = new FormDate();
$startdate2->config['prefix']="start_2_";
$startdate2->setLocale('nl_BE');
$startdate2->year['start'] = 2011;
$startdate2->year['end'] = 2015;
$startdate2->month['values'] = 'numbers';
$data['startdate2'] = $startdate2;
$enddate2 = new FormDate();
$enddate2->config['prefix']="end_2_";
$enddate2->setLocale('nl_BE');
$enddate2->year['start'] = 2011;
$enddate2->year['end'] = 2015;
$enddate2->month['values'] = 'numbers';
$data['enddate2'] = $enddate2;
$startdate3 = new FormDate();
$startdate3->config['prefix']="start_3_";
$startdate3->setLocale('nl_BE');
$startdate3->year['start'] = 2011;
$startdate3->year['end'] = 2015;
$startdate3->month['values'] = 'numbers';
$data['startdate3'] = $startdate3;
$enddate3 = new FormDate();
$enddate3->config['prefix']="end_3_";
$enddate3->setLocale('nl_BE');
$enddate3->year['start'] = 2011;
$enddate3->year['end'] = 2015;
$enddate3->month['values'] = 'numbers';
$data['enddate3'] = $enddate3; |
Partager