我正在为我的表单使用drupal 7 date_popup字段类型:
$form['departure_date_1']= array(
'#type' => 'date_popup',
'#date_format' => 'Y-m-d',
'#defalut_value'=>date('Y-m-d',strtotime($date_part1)),
);
$ date_part1是字符串:“2014-03-12”,我使用strtotime将其转换为日期。我也尝试过:
$form['departure_date_1']= array(
'#type' => 'date_popup',
'#date_format' => 'Y-m-d',
'#defalut_value'=>date('Y-m-d'),
);
或者:
$form['departure_date_1']= array(
'#type' => 'date_popup',
'#date_format' => 'Y-m-d',
'#defalut_value'=>'2014-03-12',
);
它们都不起作用,一直是空白的,我搜索了一整天,但仍然找不到问题。
答案 0 :(得分:1)
答案 1 :(得分:1)
而不是#defalut_value使用#default_value