我想以自定义形式使用“图标选择”窗口小部件,但找不到如何操作。
目的是在从后台将小部件设置为表单显示模式时显示图标选择器。
以下是我的字段的配置:
public function getFormId()
{
return 'my_custom_form_id';
}
public function buildForm(array $form, FormStateInterface $form_state)
{
// ... other fields ...
$form['icon_choice'] = [
'#type' => 'entity_autocomplete',
'#target_type' => 'taxonomy_term',
'#selection_settings' => [
'target_bundles' => [ 'icons' ]
]
];
// ... other fields ...
return $form;
}
我在网上找到了创建小部件并在Drupal后台界面中使用它的说明,但是我认为我不了解如何在自定义表单的字段中进行编程。
预先感谢您的帮助。
日耳曼