checkboxes_value

Versions
4.7 – 5
checkboxes_value(&$form)

Helper function to load value from default value for checkboxes.

Related topics

Code

includes/form.inc, line 1239

<?php
function checkboxes_value(&$form) {
  $value = array();
  foreach ((array)$form['#default_value'] as $key) {
    $value[$key] = 1;
  }
  $form['#value'] = $value;
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.