我正在重构一些代码是我写的有时候的Drupal模块。为了让其他人使用它,我正在添加一个配置页面。
我已经成功定义了一个字段集,但我不知道如何“插入”内容。 以下代码为我站点上定义的每种节点类型设置无线电:
$node_types = node_get_types('names');
$test = array(
'#title' => t('tweeting node'),
'#type' => 'radios',
'#options' => $node_types,
'#default_value' => 'Page',
'#weight' => 0,
);
以下定义了我想要插入上面生成的单选按钮的字段集:
$form['twitterhelper_nodecollection'] = array(
'#type' => 'fieldset',
'#title' => t('select a node'),
'#weight' => 0,
'#collapsible' => TRUE,
'#collapsed' => FALSE,
'#parents' => $test,
);
有人可以帮忙吗?
答案 0 :(得分:3)
要在字段集中添加任何表单元素,您应该在字段集数组中插入此表单元素...
E.g
$form['myfieldset'] = array(
'#type' => 'fieldset' ,
'#collapsible' => TRUE ,
'#title' => t('My FIeldset'),
'#attributes' => array('id' => 'myfieldset-id'),
);
$form['myfieldset']['myradios'] = array(
'#type' => 'radios' ,
'#attributes' => array('id' =>'myradio-attributes') ,
....etc
);
所以fieldset是无线电的父节点而不是对比度
跳,帮助你
<强>更新强>
您可以使用jquery将无线电附加到字段集中,如下所示
jQuery(document).ready(start) ;
function start(){
jQuery("#myradio-attributes").appendTo("#myfieldset-id");
// i added this id by '#attributes'
}
但它不是drupal方式