답변:
아래 예를 참조하십시오 ...
$options = array();
$options["1"] = "One";
$options["2"] = "Two";
$options["3"] = "Three";
$options["4"] = "Four";
$form['ios'] = array(
'#title' => t(''),
'#type' => 'checkboxes',
'#description' => t(''),
'#options' => $options,
'#default_value' => array("1", "2", "3")
);
당신은 뉴스 문자 또는 조건 조건 확인란과 같은 단일 필드를 가지고 아래 코드를 사용할 수 있습니다
$form['name']['terms_condition'] = array(
'#type' =>'checkbox',
'#title'=>t('Terms and conditions'),
'#required'=>TRUE,
'#default_value' =>TRUE, // for default checked and false is not checked
);
true
?