0

我有一个名为 field_event_location 的字段,该字段对于一个位置可能有 5 个不同的值。这些被设置为复选框(小部件)。

当管理员选择位置时,这些位置都附加在一起(连接),没有空格或逗号,使阅读变得困难。

字段类型是术语引用。

我正在尝试查看是否有任何其他方法可以保持这种状态(它只需要较小的样式)。

有什么建议么?我需要自定义模块吗?

4

1 回答 1

0

这是Pro Drupal 开发书中的一个示例:

$options = array(
    'poison' => t('Sprays deadly poison'),
    'metal'  => t('Can bite/claw through metal'),
    'deadly' => t('Killed previous owner')
);

$form['danger'] = array(
    '#title' => t('Special conditions'),
    '#type'  => 'checkboxes',
    '#description' => (t('Please note if any of these conditions apply to your pet')),
    '#options' => $options,
    '#weight' => 25
);

这应该呈现一个带有标题、垂直堆叠的选项和下面的描述的字段集。

于 2013-03-05T20:18:37.843 回答