我有一个自定义字段插件。它的小部件看起来像这样:
function mymodule_field_widget_form(&$form, &$form_state, $field, $instance, $langcode, $items, $delta, $element) {
...
$main_widget = $element + array(
'#test' => 'test',
'#type' => 'textarea',
'#attributes' => array('item_capacity' => 3),
'#theme'=>'mymodule_theme'
);
...
}
我需要获取另一个字段的值,附加到当前节点,并将其传递给这个小部件的主题文件。我能以某种方式至少获得一个包含来自 hook_field_widget_form() 的当前字段的节点的 id 吗?