2
我試圖讓一個廣播框在它旁邊顯示一個圖片,當用drupal 7 form api選中時,我不知道從哪裏開始。我會很感激一些help.Thank你Drupal 7 form api radio box /複選框圖片選擇
這是我使用的代碼:我只是想通了這一點
<?php
function test_module_menu() {
$items = array();
$items['test_module/form'] = array(
'title' => t('Test'),
'page callback' => 'test_module_form',
'access arguments' => array('access content'),
'description' => t('Test'),
'type' => MENU_CALLBACK,
);
return $items;
}
function test_module_form() {
return drupal_get_form('test_module_my_form');
}
function test_module_my_form($form, &$form_state) {
$form['house'] = array(
'#type' => 'radios',
'#options' => drupal_map_assoc(array(t('None'), t('Choose a house'))),
'#title' => t('Choose a house'),
'#default_value' => variable_get('house', 'None'),
'#required' => 'TRUE',
);
}
?>