フォームにユーザーエンティティへのエンティティ参照フィールドが4つあります。ホストフォームはノード編集フォームです。3つは選択リストで、最後はインラインエンティティフォームです。
IEFを介してユーザーエンティティを追加した後、選択リストの値を更新しようとしています。
function ebep_users_feature_users_list_ajax($form, $form_state) {
$ief = array_shift($form_state['inline_entity_form']);
$options = array('_node' => t('- None -'));
$commands = array();
foreach($ief['entities'] as $data) {
$options[$data['entity']->uid] = $data['entity']->name;
}
foreach(_ebep_users_feature_getUserListFieldNames() as $fieldName) {
$form[$fieldName]['und']['#options'] = $options;
$commands[] = ajax_command_replace('#'.$fieldName.'_wrapper', drupal_render($form[$fieldName]));
}
return array('#type' => 'ajax', '#commands' => $commands);
}
それは機能しますが、IEFを介して別のユーザーを追加しようとすると、次のようになります。
違法な選択が検出されました。サイト管理者に連絡してください。
Related
右にリストされているここの質問のいずれかがこれを解決しましたか?