function poll_choice_js
Same name and namespace in other branches
- 6.x drupal-6.x/modules/poll/poll.module \poll_choice_js()
Ajax callback in response to new choices being added to the form.
This returns the new page content to replace the page content made obsolete by the form submission.
See also
2 string references to 'poll_choice_js'
- drupal-6.filled.database.php in drupal-7.x/
modules/ simpletest/ tests/ upgrade/ drupal-6.filled.database.php - Filled installation of Drupal 6.17, for test purposes.
- poll_form in drupal-7.x/
modules/ poll/ poll.module - Implements hook_form().
Archivo
- drupal-7.x/
modules/ poll/ poll.module, line 435 - Enables your site to capture votes on different topics in the form of multiple choice questions.
Código
function poll_choice_js($form, $form_state) {
return $form['choice_wrapper']['choice'];
}