回答:
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に設定することもできます。
残念ながら、FAPIでそれを行うための本当にきれいな方法はありません。あなたの最善の策は、あなたが決心していれば、追加の#process関数をチェックボックス要素に変更することです。
「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;
}
}
}
preg_replace()
し、出力をオーバーランするという、私が取ったアプローチよりも良い音がします。
以下は、ユーザーの編集ページでロール要素を変更するためのDrupal 7の私のコードです。
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;
}
チェックボックスを「割り当て」および「割り当て解除」として使用しています。クライアントは「割り当て解除」を無効にするように依頼しましたが、それでも「割り当て」を表すことが重要です。DISABLEDチェックボックスは「false」として送信され、適切に処理されない場合は割り当てが解除されることに注意して、チェックボックスを「process these」と「これらの無効なチェックボックスを無視する」に分割します。方法は次のとおりです。
// 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」は独自の配列/変数であり、私のユースケースでは「unassign」として処理されないことに注意してください。投稿してくれてありがとう。それが私をこのソリューションに導いた。
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;
}
無効なオプションは次のようになります。
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';
}
誰もがきちんとした方法を知っているなら、私はそれを聞きたいです!
Fatal error: Call to undefined function expand_checkboxes()
以下は、ユーザーの編集ページでロール要素を変更するためのDrupal 7の私のコードです。
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;
}
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);
}
この場合、このページの他の回答が機能することはありませんでした。
これが私の例です(を使用#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でも動作するはずです。
次の関数(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;
}
}
}
私はこの次のコードを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;
}
テキストフィールドをフックし、データベースからの情報で動的なテキストボックスを作成します
1°連合を取得します。データベースからの配列
$blah = array('test1' => 'Choose for test1', 'test2' => 'Choose for test2', ...)
2°器具 hook_form_alter()
/ ** * hook_form_alter()を実装します。*フォーム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°の複数フィールドがチェック可能になります!
独自のフォームを作成する場合は、個別の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構造内の位置を明示的に設定します。