我想向现有的字段小部件(如Custom Title
)中再添加几个字段。我设法添加了字段,但字段值未存储在数据库中。有什么办法可以做到这一点?
function my_module_field_widget_custom_fieldwidget_demo_form_alter(&$element, &$form_state, $context) {
$element['custom_text'] = [
'#title' => 'Custom Title',
'#type' => 'textfield',
'#weight' => 30
];
}