字段小部件:将字段添加到现有字段小部件

时间:2019-01-05 10:44:38

标签: widget hook drupal-modules drupal-8

我想向现有的字段小部件(如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
    ];
}

0 个答案:

没有答案