自定义节点添加页面/Drupal 8
Customize node add page / Drupal 8
我需要为 Drupal 8 中的节点添加页面自定义主题。我知道如何自定义节点页面,但不知道 add/edit 页面。
这是 /node/add
页面还是 /node/add/{type}
页面?
前者使用主题挂钩node_add_list
(参见https://git.drupalcode.org/project/drupal/blob/8.8.x/core/modules/node/src/Controller/NodeController.php)
后一页只是一个 ID 为 node_form
的表单,因此可以使用 hook_form_node_form_alter
对其进行更改 - 请参阅此问题了解如何更改表单以将其发送到自定义模板: https://drupal.stackexchange.com/questions/146434/send-a-form-to-twig-template
PS:对于与 Drupal 相关的问题,我建议 https://drupal.stackexchange.com/。
我需要为 Drupal 8 中的节点添加页面自定义主题。我知道如何自定义节点页面,但不知道 add/edit 页面。
这是 /node/add
页面还是 /node/add/{type}
页面?
前者使用主题挂钩node_add_list
(参见https://git.drupalcode.org/project/drupal/blob/8.8.x/core/modules/node/src/Controller/NodeController.php)
后一页只是一个 ID 为 node_form
的表单,因此可以使用 hook_form_node_form_alter
对其进行更改 - 请参阅此问题了解如何更改表单以将其发送到自定义模板: https://drupal.stackexchange.com/questions/146434/send-a-form-to-twig-template
PS:对于与 Drupal 相关的问题,我建议 https://drupal.stackexchange.com/。