Tagged Questions

2
votes
2answers
33 views

‘add another item’ in non-CCK Drupal forms

CCK for Drupal has the handy feature of allowing a single CCK field to accept multiple values via a "add another item" button that results in an array of data in the node. I'm wondering if there's …
1
vote
2answers
342 views

How do I add two submit buttons to a Drupal 5 form?

I have two submit buttons on my form. One is the normal submit button that calls `my_form_submit` like-ah-so: $form['fieldset']['submit'] = array( '#type' => 'submit', '#value' => 'Show …
1
vote
1answer
222 views

passing information from a Drupal Forms API validation function to a submit function

In my validation function for a Drupal Forms API form, I attempt to charge the user's credit card. If it succeeds, I'd like to pass the reference number to the submit function so it can be used there. …
0
votes
1answer
9 views

Multilingual settings form radio buttons not showing on Drupal site

I have a Drupal site where the "Multilingual support" options don't show up when editing a content type. I've checked to make sure that the line that adds the options executes (you can see it at …
0
votes
1answer
38 views

Make radio buttons

Hi guys! Sorry for this question, but is it possible to make radio buttons instead of select list from this piece of code? function _nodereview_form_review(&$form, $axis, $node) { static …