跳到正文
gloomcheng/

ARCHIVE / 

[Drupal] 在客製表單中加入 wysiwyg 欄位

Drupal 8/9 要使用 TextFormat1 類型的欄位

$form['body'] = array(
  '#type' => 'text_format',
  '#title' => 'Body',
  '#format' => 'full_html',
  '#default_value' => '<p>The quick brown fox jumped over the lazy dog.</p>',
);

Footnotes

  1. https://api.drupal.org/api/drupal/core%21modules%21filter%21src%21Element%21TextFormat.php/class/TextFormat/8.4.x