web-dev-qa-db-ja.com

「checkboxes」FAPI要素の単一のチェックボックスを無効にするにはどうすればよいですか?

タイトルは基本的にすべてを語っています。checkboxesタイプのFAPI要素の単一のチェックボックスを無効にしたいと思います。

JavaScriptを使用する場合、またはcheckboxesから複数のcheckbox要素に変更しない場合は、要素は別のモジュールによって提供されるため、オプションは使用しません。

考え?

31
Decipher

クリーンな方法はDrupal 7!に存在します!どうやら この投稿 によると、それはまだ文書化されていません。

function mymodule_form_alter(&$form, &$form_state, $form_id) {
  $form['checkboxes_element']['#disabled'] = TRUE; //disables all options
  $form['checkboxes_element'][abc]['#disabled'] = TRUE; //disables option, called abc
}

別の

#access 関数をFALSEに設定して、チェックボックスを完全に非表示にすることもできます。

36
timofey.com

残念ながら、FAPIでこれを行うための本当にクリーンな方法はありません。あなたの最善の策-あなたが決心しているなら-は、checkboxes要素に追加の #process function を変更することです。

タイプ 'checkboxes'の要素に追加されたデフォルトの関数は、実際には関数( expand_checkboxes() )で、単一の要素をタイプ 'checkbox'の複数の要素に分割し、後で1つにマージします。 2番目のプロセス関数を便乗させると、「チェックボックス」要素の展開されたグループに到達し、問題の要素を無効にすることができます。

次のコードは完全にテストされていないため、注意が必要です。

function mymodule_form_alter(&$form, &$form_state, $form_id) {
  $form['checkboxes_element']['#process'][] = 'mymodule_disable_element';
}

function mymodule_disable_element($element) {
  foreach (element_children($element) as $key) {
    if ($key == YOUR_CHECK_VALUE) {
      $element[$key]['#disabled'] = TRUE;
      return;
    }
  }
}
23
Eaton

以下は、Drupal 7のコードで、[ユーザーの編集]ページのRoles要素を変更します。

function mymodule_form_alter(&$form, &$form_state, $form_id) {
  $form['checkboxes_element']['#pre_render'][] = 'form_process_checkboxes'; // I had to add this one, or it will return the first role only with my callback bellow
  $form['checkboxes_element']['#pre_render'][] = 'mymodule_disable_element';
}

function mymodule_disable_element(($element) {
  foreach (element_children($element) as $key) {
    if ($key == YOUR_CHECK_VALUE) {
      $element[$key]['#attributes']['disabled'] = 'disabled';
    }
  }
  return $element;
}
6
aFeijo

チェックボックスを「割り当て」と「割り当て解除」として使用しています。クライアントから「割り当て解除」を無効にするように求められましたが、「割り当て」を表すことは依然として重要です。 DISABLEDチェックボックスは「false」として送信され、適切に処理されないと割り当てが解除されることに注意して、チェックボックスを「これらを処理する」と「これらの無効なものを無視する」に分割します。方法は次のとおりです。

// Provide LIVE checkboxes only for un-assigned Partners
$form['partner']['partners'] = array(
  '#type' => 'checkboxes',
  '#options' => array_diff($partners, $assignments),
  '#title' => t($partnername),
);
// Provide DISABLED checkboxes for assigned Partners (but with a different variable, so it doesn't get processed as un-assignment)
$form['partner']['partner_assignments'] = array(
  '#type' => 'checkboxes',
  '#options' => $assignments,
  '#default_value' => array_keys($assignments),
  '#disabled' => TRUE,
  '#title' => t($partnername),
);

「partner_assignments」は独自の配列/変数であり、私の使用例では「割り当て解除」として処理されないことに注意してください。投稿してくれてありがとう-それが私をこの解決策に導いた。

3
texas-bronius

D7。ここで、ノードを追加するときに、特定の分類用語参照オプションが常にチェック不可であり、常にノードに保存されることを確認する必要がありました。そこで、#after_buildに移動して特定のオプションを無効にしましたが、最終的に特定のオプションが渡されることを確認する必要がありました。原因を無効にするだけで、そのオプションの将来のフックへの移動が停止します。

// a constant
define('MYTERM', 113);

/**
 * Implements hook_form_alter().
 */
function MYMODULE_form_alter(&$form, &$form_state, $form_id) {
    if ($form_id == 'MYCONTENTTYPE_node_form') {
    $form['#after_build'][] = 'MYMODULE_MYCONTENTTYPE_node_form_after_build';
    }
}

/**
 * Implements custom after_build_function()
 */
function MYMODULE_MYCONTENTTYPE_node_form_after_build($form, &$form_state) {
  foreach (element_children($form['field_MYFIELD'][LANGUAGE_NONE]) as $tid) {
    if ($tid == MYTERM) {
      $element = &$form['field_MYFIELD'][LANGUAGE_NONE][$tid];
      $element['#checked'] = TRUE;
      $element['#attributes']['disabled'] = 'disabled';
    }
  }
  // here's ensured the term's travel goes on
  $form['field_MYFIELD'][LANGUAGE_NONE]['#value'] += drupal_map_assoc(array(MYTERM));
  return $form;
}

無効化されたオプションは次のようになります。

enter image description here

3
leymannx

Eatonの回答を書いたとおりに機能させることができず(#processコールバックは何も返さず、チェックボックスが展開される前に呼び出されます)、無効なチェックボックスから値を返したいとも思っていました(永続的にチェックしたかった) )。これでうまくいきました(D6)。

function mymodule_form_alter(&$form, &$form_state, $form_id) {
  $form['checkboxes_element']['#process'][] = 'mymodule_disable_element';
}

function mymodule_disable_element($element) {
  $expanded = expand_checkboxes($element);
  $checkbox =& $expanded[YOUR_CHECK_VALUE];
  $checkbox['#disabled'] = TRUE;
  $checkbox['#value_callback'] = 'mymodule_element_value_callback';
  return $expanded;
}

function mymodule_element_value_callback($element, $edit = FALSE) {
  // Return whatever value you'd like here, otherwise the element will return
  // FALSE because it's disabled.
  return 'VALUE';
}

誰かがきちんとした方法を知っているなら、私はそれを聞きたいです!

2
Andy

Drupal 7で、フィールド化可能なエンティティの選択でオプションを無効にするために、#process関数をインストールする必要があることがわかりました。残念ながら、これにより組み込みプロセスが無効になりました関数、form_process_checkboxes、それを追加し直す必要がある(またはプロセス関数から呼び出される)さらに、すでにチェックされているチェックボックスを無効にすると、組み込みの値のコールバック(form_type_checkboxes_value)入力から結果を取得するときにデフォルトを無視します。

$field_lang_form = &$your_form[$field][LANGUAGE_NONE];
$field_lang_form['#process'][] = 'form_process_checkboxes';
$field_lang_form['#process'][] = 'YOURMODULE_YOURFUNCTION_process';
$field_lang_form['#value_callback'] = 'YOURMODULE_form_type_checkboxes_value';

次に、このようなもの:

function YOURMODULE_YOURFUNCTION_process($element) {
  // Disallow access YOUR REASON, but show as disabled if option is set.
  foreach (element_children($element) as $field) {
    if (REASON TO DISABLE HERE) {
      if (!empty($element[$field]['#default_value'])) {
        $element[$field]['#disabled'] = TRUE;
      } else {
        $element[$club]['#access'] = FALSE;
      }
    }
  }
  return $element;
}

そして最後に:

function YOURMODULE_form_type_checkboxes_value($element, $input = FALSE) {
  if ($input !== FALSE) {
    foreach ($element['#default_value'] as $value) {
      if (THIS OPTION WAS SET AND DISABLED - YOUR BUSINESS LOGIC) {
        // This option was disabled and was not returned by the browser. Set it manually.
        $input[$value] = $value;
      }
    }
  }
  return form_type_checkboxes_value($element, $input);
}

このページの他の回答がこのケースで機能することはわかりませんでした。

1
Dan Chadwick

これが私の例です(#after_buildを使用):

$form['legal']['legal_accept']['#type'] = 'checkboxes';
$form['legal']['legal_accept']['#options'] = $options;
$form['legal']['legal_accept']['#after_build'][] = '_process_checkboxes';

さらに、次の関数コールバック:

function _process_checkboxes($element) {
  foreach (element_children($element) as $key) {
    if ($key == 0) { // value of your checkbox, 0, 1, etc.
      $element[$key]['#attributes'] = array('disabled' => 'disabled');
      // $element[$key]['#theme'] = 'hidden'; // hide completely
    }
  }
  return $element;
}

Drupal 6でテストされていますが、Drupal 7でも動作するはずです。


Drupal 6

次の関数( source )を使用できます。

/*
 * Change options for individual checkbox or radio field in the form
 * You can use this function using form_alter hook.
 * i.e. _set_checkbox_option('field_tier_level', 'associate', array('#disabled' => 'disabled'), $form);
 *
 * @param $field_name (string)
 *    Name of the field in the form
 * @param $checkbox_name (string)
 *    Name of checkbox to change options (if it's null, set to all)
 * @param $options (array)
 *    Custom options to set
 * @param $form (array)
 *    Form to change
 *
 * @author kenorb at gmail.com
 */
function _set_checkbox_option($field_name, $checkbox_name = NULL, $options, &$form) {
    if (isset($form[$field_name]) && is_array($form[$field_name])) {
        foreach ($form[$field_name] as $key => $value) {
            if (isset($form[$field_name][$key]['#type'])) {
                $curr_arr = &$form[$field_name][$key]; // set array as current
                $type = $form[$field_name][$key]['#type'];
                break;
            }
        }
        if (isset($curr_arr) && is_array($curr_arr['#default_value'])) {
            switch ($type) { // changed type from plural to singular
                case 'radios':
                    $type = 'radio';
                    break;
                case 'checkboxes':
                    $type = 'checkbox';
                    break;
            }

            foreach ($curr_arr['#default_value'] as $key => $value) {
                foreach($curr_arr as $old_key => $old_value) { // copy existing options for to current option
                    $new_options[$old_key] = $old_value;
                }
                $new_options['#type'] = $type;  // set type
                $new_options['#title'] = $value;  // set correct title of option
                $curr_arr[$key] = $new_options; // set new options

                if (empty($checkbox_name) || strcasecmp($checkbox_name, $value) == 0) { // check name or set for 
                    foreach($options as $new_key => $new_value) {
                        $curr_arr[$key][$new_key] = $value;
                    }
                }
            }
            unset($curr_arr['#options']); // delete old options settings
        } else {
            return NULL;
        }
    } else {
        return NULL;
    }
}

/*
 * Disable selected field in the form(whatever if it's textfield, checkbox or radio)
 * You can use this function using form_alter hook.
 * i.e. _disable_field('title', $form);
 *
 * @param $field_name (string)
 *    Name of the field in the form
 * @param $form (array)
 *    Form to change
 *
 * @author kenorb at gmail.com
 */
function _disable_field($field_name, &$form) {
    $keyname = '#disabled';

    if (!isset($form[$field_name])) { // case: if field doesn't exists, put keyname in the main array
        $form[$keyname] = TRUE;
    } else if (!isset($form[$field_name]['#type']) && is_array($form[$field_name])) { // case: if type not exist, find type from inside of array
        foreach ($form[$field_name] as $key => $value) {
            if (isset($form[$field_name][$key]['#type'])) {
                $curr_arr = &$form[$field_name][$key]; // set array as current
                break;
            }
        }
    } else {
        $curr_arr = &$form[$field_name]; // set field array as current
    }

    // set the value
    if (isset($curr_arr['#type'])) {
        switch ($curr_arr['#type']) {
            case 'textfield':
            default:
                $curr_arr[$keyname] = TRUE;
        }
    }
}
1
kenorb

以下は、Drupal 7のコードで、[ユーザーの編集]ページのRoles要素を変更します。

function mymodule_form_alter(&$form, &$form_state, $form_id) {
  $form['checkboxes_element']['#pre_render'][] = 'form_process_checkboxes'; // I had to add this one, or it will return the first role only with my callback bellow
  $form['checkboxes_element']['#pre_render'][] = 'mymodule_disable_element';
}

function mymodule_disable_element(($element) {
  foreach (element_children($element) as $key) {
    if ($key == YOUR_CHECK_VALUE) {
      $element[$key]['#attributes']['disabled'] = 'disabled';
      return $element;
    }
  }
  return $element;
}
1
jrockowitz

テキストフィールドをフックして、データベースからの情報でダイナミックテキストボックスを作成します

1°はassocを取得します。データベースからの配列

_$blah = array('test1' => 'Choose for test1', 'test2' => 'Choose for test2', ...)
_

2°インプリメントhook_form_alter()

/ ** * hook_form_alter()を実装します。 * form id = views-exposed-form * /

_function test_form_alter(&$form, &$form_state, $form_id)
{
  //only for this particular form
  if ($form['#id'] == "views-exposed-form-advanced-search-page-2")
    {
       $form['phases'] = array(
           '#type' => 'checkboxes',
           '#options' => $blah,
      );
    }
}
_

3°複数のフィールドがチェック可能になります!

0
Mathieu Dierckx

独自のフォームを作成する場合は、個別のform_alter /#process /#pre_render関数を実行する代わりに、「チェックボックス」から個々の「チェックボックス」要素の生成に切り替えることができます。

_$options = array(
   1 => t('Option one'),
   2 => t('Option two'),
);

// Standard 'checkboxes' method:
$form['my_element'] = array(
  '#type' => 'checkboxes',
  '#title' => t('Some checkboxes'),
  '#options' => $options,
);

// Individual 'checkbox' method:
$form['my_element'] = array(
  '#type' => 'container',
  '#attributes' => array('class' => array('form-checkboxes')),
  '#tree' => TRUE,
  'label' => array('#markup' => '<label>' . t('Some checkboxes') . '</label>',
);
foreach ($options as $key => $label) {
  $form['my_element'][$key] = array(
    '#type' => 'checkbox',
    '#title' => $label,
    '#return_value' => $key,
  );
}
// Set whatever #disabled (etc) properties you need.
$form['my_element'][1]['#disabled'] = TRUE;
_

_'#tree' => TRUE_は、$ form_state ['values']配列がvalidation/submit/rebuildに到着したときに、チェックボックスバージョンと同じツリー構造を提供します。何らかの理由で#treeを使用できない、または使用したくない場合は、各チェックボックスに'#parents' => array('my_element', $key)プロパティを指定して、values構造内での位置を明示的に設定します。

0
KingAndy

私はdrupal 6でこの次のコードを使用しています:-

$form['statuses'] = array(
    '#type' => 'checkboxes',
    '#options' => $statuses,
    '#default_value' => $status_val,
    '#after_build' => array('legal_process_checkboxes')
    );

そしてコールバック関数はここにあります:-

/ ** *「機能」に基づいて各チェックボックスを処理すると、サブドメインですでに使用されているかどうかがわかります。 * @param Array $ elementフォームのチェックボックスの配列* /

function legal_process_checkboxes($element) {

  foreach (element_children($element) as $key) {

    $feature_id = $key;
    $res_total = '';

    $total = feature_used($feature_id) ;

    if ($total) {
      $element[$key]['#attributes'] = array('disabled' => 'disabled');
    }
  }
  return $element;
}
0
Sandip Ghosh

考慮すべき重要なことの1つは、無効になっているチェックボックスが送信されないことです。そのため、#valueチェックボックスも。例:

$element['child1']['#disabled'] = TRUE;
$element['child1']['#value'] = 'child1';

私の場合、これなしでは$form_state['values']にチェックボックスの値が含まれていませんでした(デフォルトでは有効になっていますが、無効になっています)。

0
Nick