开发者

CCK Field, minimum number of values

开发者 https://www.devze.com 2023-03-15 02:01 出处:网络
I have created a module which implements a CCK field. When ad开发者_如何学运维ding the field to a content type, I have set the number of values to unlimited, and set the field to be required.

I have created a module which implements a CCK field. When ad开发者_如何学运维ding the field to a content type, I have set the number of values to unlimited, and set the field to be required.

Is there a way to set the number of values required? I need the user to enter 5 or more values.

Thank you in advance.


The answer lies within hook_form_alter() -- http://api.drupal.org/api/drupal/developer--hooks--core.php/function/hook_form_alter/6

You'll need to do 2 things, as I see it:

  1. Alter the form item to include 5 entries on form load (instead of the usual 2 with an "add more" button).

  2. Add a $form['#validate'] = 'my_form_validate' entry to the form to check that at least 5 were set.

1 may be a bit of a challenge; I'm not sure how the form loads multiple items the first time around. If you do a vardump on the $form it may be obvious, though.

For 2 it should be straightforward --

function my_form_validate($form, &$form_state) {
  $i=0;
  foreach ($form_state['field_my_field_name']...) {
    if (isset(...)) { $i++; }
  }
  if ($i < 5) {
    form_set_error($form_state['field_my_field_name'], 'You must enter 5 foobars');
  }
}
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号