Udało mi się użyć następującego kodu do załadowania formularza zbierania pola. Dodałem dodatkowe komentarze i usunięto niestandardową logikę, która wyszukuje wartości pól ze zmiennej $ form_state ['values'].
function mymodule_custom_form($form, $form_state, $args){
$form = array();
$type = $args['type'];
$id = $args['id'];
module_load_include('inc', 'field_collection', 'field_collection.pages');
if(!empty($entity->field_comments[LANGUAGE_NONE][0]['value'])){
$field_collection_item = field_collection_item_load($entity->field_comments[$entity->language][0]['value'], TRUE);
$output = drupal_get_form('field_collection_item_form', $field_collection_item);
}else{
$output = field_collection_item_add('field_comments', 'node', $entity->nid);
}
dpm($output);
// If you want to use field collection form submit handlers as is, just return the below
// In case you want to use your own custom submit handlers then do modify the $output array as seems fit.
$form['field_collection_element'] = $output;
// You may also attach the $output array to your custom form array. Make sure you handle submit handlers properly
return $form;
}
Próbkę złożyć obsługi @see w przedkładać obsługi można posłużyć się przykładem podanym w here
function mymodule_custom_form_submit($form, $form_state){
...
if(empty($item_id)){
$field_collection_item = entity_create('field_collection_item', array('field_name' => $field_name));
$field_collection_item->setHostEntity('node', $node);
}
else {
$items = entity_load('field_collection_item', array($item_id));
$field_collection_item = $items[$item_id];
}
if(is_object($field_collection_item)){
// for references.
$field_collection_item->field1[$node->language][0]['target_id'] = $field1_val;
// normal values
$field_collection_item->field2[$node->language][0]['value'] = $field2_val;
$field_collection_item->field3[$node->language][0]['value'] = $field3_val;
if(empty($item_id)){
$field_collection_item->save(FALSE);
}
else{
$field_collection_item->save(TRUE);
}
}
...
}