web-dev-qa-db-ja.com

プログラムでページコンテンツタイプの本文のテキスト形式を完全なHTMLに変更するにはどうすればよいですか?

カスタムインストールプロファイルがあり、プログラムでページコンテンツタイプの本文テキスト形式を完全なHTMLに変更する必要があります。しかし、どうすればいいかわからなかった。

どうすればできますか?

8
Codium

あなたはhook_element_info_alterでそれを行うことができます、これはスニペットです。

<?php
/**
 * Implements hook_element_info_alter().
 *
 * Sets the text format processor to a custom callback function.
 * This code is taken from the Better Formats module.
 */
function MODULENAME_element_info_alter(&$type) {
  if (isset($type['text_format']['#process'])) {
    foreach ($type['text_format']['#process'] as &$callback) {
      if ($callback === 'filter_process_format') {
        $callback = 'MODULENAME_filter_process_format';
      }
    }
  }
}

/**
 * Callback for MODULENAME_element_info_alter().
 */
function MODULENAME_filter_process_format($element) {
  $element = filter_process_format($element);
  // Change the default text format of the 'field_company_spotlight' field to
  // 'Media HTML'. 
  if ($element['#bundle'] == 'company' && $element['#field_name'] == 'field_company_spotlight') {
    $element['format']['format']['#default_value'] = 'media_html';
  }
  return $element;
}
?>

[〜#〜] this [〜#〜] 投稿は、あなたが試すことができることを示唆しています

$form['field_name'][LANGUAGE_NONE][0]['#format'] = 'full_html';
$form['field_name'][LANGUAGE_NONE][0]['#format'] = 'filtered_html';

hook_form_alterまたはhook_FORM_ID_alter

Better Formats モジュールもあります

Betterフォーマットは、Drupalのコア入力フォーマットシステムに柔軟性を追加するモジュールです。

6
niksmac

Nikhil Mの2番目の答えが最適です-

$form['field_name'][LANGUAGE_NONE][0]['#format'] = 'full_html';  

hook_element_infoは必要ありません

2
Druvision