web-dev-qa-db-ja.com

「保存」コメントボタンの名前をどのように変更しますか?

「保存」コメントボタンの名前を変更する方法を知っている人はいますか? 「投稿」に変更しようとしています。 Drupal 7とZenサブテーマを使用しています。

8
Jasmine Ahmed

Drupal 7の場合、次のようなコードを使用してhook_form_FORM_ID_alter()を実装するカスタムモジュールを作成する必要があります(「mymodule」を、使用しているモジュールの短い名前に置き換えます書き込み):

_function mymodule_form_comment_form_alter(&$form, &$form_state) {
  if (isset($form['actions']['submit'])) {
    $form['actions']['submit']['#value'] = t('Post');
  }
}
_

comment_form() 次のコードを使用して、フォームボタンを定義します。

_  // Only show the save button if comment previews are optional or if we are
  // already previewing the submission.
  $form['actions'] = array('#type' => 'actions');
  $form['actions']['submit'] = array(
    '#type' => 'submit', 
    '#value' => t('Save'), 
    '#access' => ($comment->cid && user_access('administer comments')) || variable_get('comment_preview_' . $node->type, DRUPAL_OPTIONAL) != DRUPAL_REQUIRED || isset($form_state['comment_preview']), 
    '#weight' => 19,
  );
  $form['actions']['preview'] = array(
    '#type' => 'submit', 
    '#value' => t('Preview'), 
    '#access' => (variable_get('comment_preview_' . $node->type, DRUPAL_OPTIONAL) != DRUPAL_DISABLED), 
    '#weight' => 20, 
    '#submit' => array('comment_form_build_preview'),
_

Drupal 6の場合、コードは次のようになります。

_function mymodule_form_comment_form_alter(&$form, &$form_state) {
  if (isset($form['submit'])) {
    $form['submit']['#value'] = t('Post');
  }
}
_

Drupal 6、 if (isset($form['submit'])) {} は、次のコードを使用してフォームボタンを定義するため、comment_form()パーツを追加しました。変更しようとしているボタンがフォームに存在しない可能性があります。

_  // Only show save button if preview is optional or if we are in preview mode.
  // We show the save button in preview mode even if there are form errors so that
  // optional form elements (e.g., captcha) can be updated in preview mode.
  if (!form_get_errors() && ((variable_get('comment_preview_' . $node->type, COMMENT_PREVIEW_REQUIRED) == COMMENT_PREVIEW_OPTIONAL) || ($op == t('Preview')) || ($op == t('Save')))) {
    $form['submit'] = array(
      '#type' => 'submit',
      '#value' => t('Save'),
      '#weight' => 19,
    );
  }

  $form['preview'] = array(
    '#type' => 'button',
    '#value' => t('Preview'),
    '#weight' => 20,
  );
_
19
kiamlaluno

Drupal 6の場合、上記の回答はhook_form_alternot機能しますが、そうは思われます。通常、次のようにします。

function mymodule_form_alter(&$form, &$form_state, $form_id) {
  if ('comment_form' == $form_id) {
    $form['submit']['#value'] = t('Post');
  }
}

これは機能しているように見え、「投稿」というテキストのボタンが表示されますが、実際には2つの問題があります。

  1. 保存する前にコメントを強制的にプレビューするようにサイトが設定されている場合は、最初のコメントフォームに[投稿]ボタンが追加され、[プレビュー]ボタンのみが表示されます。ただし、これは簡単に修正できます。
  2. 新しい「投稿」ボタンは実際にはフォームを送信しません-D6 comment.moduleはそのロジックを実行するためにボタンの値を探します。「保存」以外に変更すると、送信ロジックが壊れます。

これを実際に機能させるには、ボタンを非表示にし、カスタムフォーム送信ハンドラーを使用する必要があります。その場合は、ここに戻って作業コードを投稿します。

2
Andy Laken

hook_form_alter vs文字列オーバーライド。

function YOURMODULENAME_form_comment_form_alter(&$form, &$form_state) {
  $form['buttons']['submit']['#value'] = 'Submit Comment'; //Your text for the submit button goes here.
};
2
user2014

カスタムモジュールや文字列オーバーライドモジュールを使用する必要はありません。 settings.phpの416行目で、オーバーライドを使用して以下のコメントを外して変更します。

/**
String overrides:

To override specific strings on your site with or without enabling locale
module, add an entry to this list. This functionality allows you to change
 * a small number of your site's default English language interface strings.
 *
 * Remove the leading hash signs to enable.
 */
# $conf['locale_custom_strings_en'][''] = array(
#   'forum'      => 'Discussion board',
#   '@count min' => '@count minutes',
# );
1
user842

として Andy Laken 言及 上記

...新しい[投稿]ボタンは実際にはフォームを送信しません...

これを修正する方法:

function MYMODULE_form_alter(&$form, &$form_state, $form_id) {
  if ($form_id === 'comment_form') {
    // Rename submit button.
    $form['submit']['#value'] = t('Post');
    // Add new form validator.
    array_unshift($form['#validate'], 'MYMODULE_comment_form_validate');
  }
}

function MYMODULE_comment_form_validate(&$form, &$form_state) {
  // Restore native value.
  if ($form_state['values']['op'] === t('Post')) {
    $form['submit']['#value'] = t('Save');
    $form_state['values']['op'] = t('Save');
  }
}

それでおしまい!検証関数が最初に実行され、コメントモジュールがネイティブの送信値でフォームを処理します。

1
Jekis