0

フォームで定義されたチェックボックスがあります。

$form['membership_block']['membership_info_is_verified'] = array(
  '#type' => 'checkbox',
  '#title' => t('<strong>I confirm my information is correct.</strong>'),
  '#description' => t('Select the checkbox here to confirm your information is correct, then be sure to <strong>click the Save button</strong> below to save your change.'),
);

タイトルと説明文を薄緑色の背景のボックスで囲んでほしいです。これを指定する方法を理解できませんでした。

4

1 に答える 1

0

フォーム要素には、(オプションの) 要素 '#prefix' と '#suffix' を含めることができます。

$form['membership_block']['membership_info_is_verified'] = array(
  '#prefix' => '<div class="green_background">',
  '#suffix' => '</div>',
  // ...
);

このようにして、フォーム要素の HTML コードを追加のコードで囲むことができます。

于 2014-05-08T11:16:54.693 に答える