web-dev-qa-db-ja.com

州で必要なフォームを作成するにはどうすればよいですか?

選択したものに基づいてさまざまなフィールドを表示するドロップダウンリストがあり、可視性を状態に合わせることができることはわかっていますが、required *スパンを表示しようとすると表示されますが、実際には必須ではありません。つまり、「必須」であるにもかかわらず、submitを押してもdrupalからエラーメッセージが表示されないということです。私は何か間違ったことをしていますか、これは現在Drupal 7.8)で壊れていますか?

        $form['Host_info'] = array(
        '#type' => 'select',
        '#title' => t("Host Connection"),
        '#options' => array(
          'SSH2' => t('SSH2'),
          'Web Service' => t('Web Service'),
        ),
        '#default_value' => t(variable_get('Host_info', 'SSH2')),
        '#description' => t("Specify the connection information to the Host"),
        '#required' => TRUE,
    );

    $form['ssh_Host'] = array(
        '#type' => 'textfield',
        '#title' => t("Host Address"),
        '#description' => t("Host address of the SSH2 server"),
        '#default_value' => t(variable_get('ssh_Host')),
        '#states' => array(
            'visible' => array(
                ':input[name=Host_info]' => array('value' => t('SSH2')),
            ),
            'required' => array(
                ':input[name=Host_info]' => array('value' => t('SSH2')),
            ),
        ),
    );

    $form['ssh_port'] = array(
        '#type' => 'textfield',
        '#title' => t("Port"),
        '#description' => t("Port number of the SSH2 server"),
        '#default_value' => t(variable_get('ssh_port')),
        '#states' => array(
            'visible' => array(
                ':input[name=Host_info]' => array('value' => t('SSH2')),
            ),
            'required' => array(
                ':input[name=Host_info]' => array('value' => t('Web Service')),
            ),
        ),
    );
30
Sathariel

カスタム検証関数でこれを自分で検証する必要があります。

#statesによって構成されたすべてがブラウザで100%発生し、フォームが送信されると、そのすべてがDrupalに対して表示されません(たとえば、すべての非表示のフォームフィールドが送信され、同じで検証されます) #stateがなかった場合の方法)。

20
Berdir

次のようにrequiredを使用できます。

'#states'=> [
  'required' => [
    ':input[name="abroad_because[somecheckbox]"]' => ['checked' => TRUE],
  ],
],
12
MuschPusch

Felix Eveの回答と非常によく似ていますが、これはインライン要素検証のスニペットです。

要素の検証関数を必要な要素と呼びます。

$form['element'] = array(
....
  '#element_validate' => array(
     0 => 'my_module_states_require_validate',
   ),
)

次に、検証関数は必要なフィールドを見つけて、必要なフィールドを明らかにする正しいフォーム値があるかどうかを確認します。

function my_module_states_require_validate($element, $form_state) {
  $required_field_key = key($element['#states']['visible']);
  $required_field = explode('"', $required_field_key);
  if($form_state['values'][$required_field[1]] == $element['#states']['visible'][$required_field_key]['value']) {
    if($form_state['values'][$element['#name']] == '') {
      form_set_error($element['#name'], $element['#title'].' is required.');
    }
  }
}
8
Dominic Woodman

フォームにAFTER_BUILD関数を使用して、そのフィールドをオプションにする別の方法があります。 drupal 6.の link はここにあります。

これをフォームコードに追加します

$form['#after_build'][] = 'custom_form_after_build';

ビルド後に実装し、カスタムフィールド条件をテストする

function custom_form_after_build($form, &$form_state) {
  if(isset($form_state['input']['custom_field'])) {
    $form['another_custom_field']['#required'] = FALSE;
    $form['another_custom_field']['#needs_validation'] = FALSE;
  }
 return $form;
}

私の場合、#statesは複数の*を追加していたので、それを避け、jqueryを使用して*を含むスパンを非表示および表示する必要がありました。

$('.another-custom-field').find('span').hide();  

そして

$('.another-custom-field').find('span').show();

私のcustom_field値に基づいています。

3
atyagi

Drupal 7 form #states の詳細なガイドは次のとおりです。

これは重要なビットです:

/**
 * Form implementation.
 */
function module_form($form, $form_state) {
  $form['checkbox_1'] = [
    '#title' => t('Checkbox 1'),
    '#type' => 'checkbox',
  ];

  // If checkbox is checked then text input
  // is required (with a red star in title).
  $form['text_input_1'] = [
    '#title' => t('Text input 1'),
    '#type' => 'textfield',
    '#states' => [
      'required' => [
        'input[name="checkbox_1"]' => [
          'checked' => TRUE,
        ],
      ],
    ],
  ];

  $form['actions'] = [
    'submit' => [
      '#type' => 'submit',
      '#value' => t('Submit'),
    ],
  ];

  return $form;
}

/**
 * Form validate callback.
 */
function module_form_validate($form, $form_state) {
  // if checkbox is checked and text input is empty then show validation
  // fail message.
  if (!empty($form_state['values']['checkbox_1']) &&
    empty($form_state['values']['text_input_1'])
  ) {
    form_error($form['text_input_1'], t('@name field is required.', [
      '@name' => $form['text_input_1']['#title'],
    ]));
  }
}
3
Wim Mostrey

Drupal 8:

          '#states' => array(
            'required' => array(
              array(':input[name="Host_info"]' => array('value' => 'SSH2')),
             ),
           ),

T( 'SSH2')を入れないでください。これにより、翻訳されていないSSH2であるオプションの値の代わりに、その翻訳がそこに配置されます。

これはDrupal 7でも有効だと思います。

2
Will

私は同じ問題に直面したばかりで、カスタム検証を提供する必要がありましたが、これを#states配列を介して制御したいので、同じルールを2回指定する必要がありませんでした。

JQueryセレクターからフィールド名を抽出することで機能します(セレクターは:input[name="field_name"]の形式である必要があります。そうしないと機能しません)。

以下のコードは、私がそれを使用していた特定のシナリオでのみテストされていますが、他の誰かに役立つかもしれませんが。

function hook_form_validate($form, &$form_state) {

    // check for required field specified in the states array

    foreach($form as $key => $field) {

        if(is_array($field) && isset($field['#states']['required'])) {

            $required = false;
            $lang = $field['#language'];

            foreach($field['#states']['required'] as $cond_field_sel => $cond_vals) {

                // look for name= in the jquery selector - if that isn't there then give up (for now)
                preg_match('/name="(.*)"/', $cond_field_sel, $matches);

                if(isset($matches[1])) {

                    // remove language from field name
                    $cond_field_name = str_replace('[und]', '', $matches[1]);

                    // get value identifier (e.g. value, tid, target_id)
                    $value_ident = key($cond_vals);

                    // loop over the values of the conditional field
                    foreach($form_state['values'][$cond_field_name][$lang] as $cond_field_val) {

                        // check for a match
                        if($cond_vals[$value_ident] == $cond_field_val[$value_ident]) {
                            // now we know this field is required
                            $required = true;
                            break 2;
                        }

                    }

                }

            }

            if($required) {
                $field_name = $field[$lang]['#field_name'];
                $filled_in = false;
                foreach($form_state['values'][$field_name][$lang] as $item) {
                    if(array_pop($item)) {
                        $filled_in = true;
                    }
                }
                if(!$filled_in) {
                    form_set_error($field_name, t(':field is a required field', array(':field' => $field[$lang]['#title'])));
                }
            }

        }
    }

}
2
Felix Eve

フォームフィールドとチェックボックスを入れ子にしているので、ドミニクウッドマンの答えについて少し作業する必要がありました。他のボディが同じ問題に遭遇した場合:

function my_module_states_require_validate($element, $form_state) {
  $required_field_key = key($element['#states']['visible']);
  $required_field = explode('"', $required_field_key);
  $keys = explode('[', $required_field[1]);
  $keys = str_replace(']', '', $keys);
  $tmp = $form_state['values'];
  foreach ($keys as $key => $value) {
    $tmp = $tmp[$value];
  }
  if($tmp == $element['#states']['visible'][$required_field_key]['checked']) {
    $keys2 = explode('[', $element['#name']);
    $keys2 = str_replace(']', '', $keys2);
    $tmp2 = $form_state['values'];
    foreach ($keys2 as $key => $value) {
      $tmp2 = $tmp2[$value];
    }
    if($tmp2 == '') {
      form_set_error($element['#name'], $element['#title']. t(' is required.'));
    }
  }
}
0
Koli