In some of my content types I have a multiple image field. I would like to add for each image a select box to specify if the image needs to float on the left, center or right.
I think I could use the field collection module but I would need to replace the existing field which already contains some images.
So I think I should make a new table in database and store the nid image_id and select_box_id but maybe it's not the best solution as it won't be easy and will require a lot of time.
Here is my code so far to alter the image fields :
/**
* Implements hook_field_widget_form_alter().
*/
function image_alignment_field_widget_form_alter(&$element, &$form_state, $context) {
// If this is an image field type
if ($context['field']['type'] == 'image') {
// Loop through the element children (there will always be at least one).
foreach (element_children($element) as $key => $child) {
// Add the new process function
$element[$key]['#process'][] = '_image_alignment_image_field_widget_process';
$element[$key]['#element_validate'][] = '_image_alignment_image_field_widget_validate';
}
}
}
/**
* Custom process function for image field element(s).
*/
function _image_alignment_image_field_widget_process($element, &$form_state, $form) {
dpm($form);
$item = $element['#value'];
//dpm($element);
$element['alignment'] = array(
'#type' => 'select',
'#title' => t('Alignment'),
'#options' => array(
0 => '<none>',
1 => 'right',
2 => 'center',
3 => 'left'
),
'#default_value' => isset($item['alignment']) ? $item['alignment'] : 0,
);
// Return the altered element
return $element;
}
Thanks a lot for your help ;)
PS: I sometimes see values stored in $form_state['build_info']. e.g. : $form_state['build_info']['args'][1]['options']['my_select_box_id'] Could I use this to store my values ?