2012-09-14 7 views
6

Sto provando a creare un widget personalizzato ma quando invio, Drupal non sembra salvare alcun dato. Quando si utilizza hook_field_attach_submit() per visualizzare i dati che ho incollato, è elencato come null.widget di campo drupal che non salva i dati inviati

Stranamente, se cambio lo #type in un singolo campo di testo anziché in un fieldset, salverà solo il primo carattere della stringa che è stata inserita.

Questo sembra un problema di convalida, ma non sono sicuro di come collegarlo o di eseguire il debug del problema. Dove posso andare da qui?

<?php 
function guide_field_widget_info(){ 
    dpm("guide_field_widget_info"); 
    return array(
    'guide_text_textfield' => array(
     'label' => t('test Text field'), 
     'field types' => array('text'), 
     'settings' => array('size' => 60), 
     'behaviors' => array(
     'multiple values' => FIELD_BEHAVIOR_CUSTOM, 
     'default value' => FIELD_BEHAVIOR_DEFAULT, 
    ), 
    ) 
); 
} 


function guide_field_widget_form(&$form, &$form_state, $field, $instance, $langcode, $items, $delta, $element) { 
    $field_name = $instance['field_name']; 
    $required = $element['#required']; 
    $item =& $items[$delta]; 


    $element += array(
     '#type' => 'fieldset', 
    '#title' => t('helloooooooo'), 
    ); 
    $required = $element['#required']; 
    $item =& $items[$delta]; 

    $element['nametest'] = array(
     '#title' => t('Name'), 
     '#type' => 'textfield', 
     '#required' => $required, 
     // use #default_value to prepopulate the element 
     // with the current saved value 
     '#default_value' => isset($item['nametest']) ? $item['nametest'] : '', 
    ); 

    $element['checkme'] = array(
     '#title' => t('Check this box or dont'), 
     '#type' => 'checkbox', 
     '#default_value' => isset($item['checkme']) ? $item['checkme'] : '', 
    ); 

//When changing the above code to have a single field, $value is no longer null but will display the first character of the string. I've pasted the code I used to test beloe 
/* 
    $element+= array(
    '#title' => t('Name'), 
    '#type' => 'textfield', 
    '#default_value' => isset($item['nametest']) ? $item['nametest'] : '', 
); 
*/ 

    return $element; 
} 


//hooking this here is required given that after submit, the value is a multidimensional array, whereas the expected value of text is, well, text :-) 

function guide_field_attach_submit($entity_type, $entity, $form, &$form_state){ 
    dpm($form,"guide_field_attach_submit data"); //shows $form[field_test_field][und][0] [value] as being null 
} 
+0

Salvare il primo carattere suona come un problema familiare. Verifica se la mia precedente risposta per http://stackoverflow.com/questions/6426362/custom-drupal-7-field-only-saves-the-first-character ti aiuterà. – nmc

+0

Nessun dado. Ho provato il codice fornito e ho ancora avuto lo stesso risultato. – devnill

+0

Hai trovato una soluzione a questo problema? –

risposta

2

hook_field_is_empty è obbligatoria e deve essere implementare come segue:

/** 
    * Implements hook_field_is_empty(). 
    */ 

function MODULENAME_field_is_empty($item, $field) { 
    if ($field['type'] == 'FIELDTYPE') { 
    if (empty($item[$field['type']]['YourField'])) { 
     return (TRUE); 
    } 
    } 
    return (FALSE); 
} 
+2

Non è FIELDNAME_field_is_empty, ma HOOK_field_is vuoto dove HOOK è il nome del tuo modulo. – sbrattla