【发布时间】:2012-09-08 02:55:07
【问题描述】:
我正在尝试创建一个自定义小部件,但是当我提交时,Drupal 似乎没有保存任何数据。当使用hook_field_attach_submit() 显示我粘贴的数据时,它被列为空。
奇怪的是,如果我将 #type 更改为单个文本字段而不是字段集,它将仅保存已输入的字符串的第一个字符。
这似乎是一个验证问题,但我不确定如何解决或调试问题。我可以从这里去哪里?
<?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
}
【问题讨论】:
-
保存第一个字符听起来像是一个熟悉的问题。看看我之前对stackoverflow.com/questions/6426362/… 的回答是否对你有帮助。
-
没有骰子。我尝试了提供的代码,但结果仍然相同。
-
你找到解决这个问题的方法了吗?
标签: drupal drupal-7 drupal-modules