weight_value(&$form)
files/drupal-6.7/includes/form.inc, line 1719
If no default value is set for weight select boxes, use 0.
| Name | Description |
|---|---|
| Form generation | Functions to enable the processing and display of HTML forms. |
| Form generation | Functions to enable the processing and display of HTML forms. |
<?php
function weight_value(&$form) {
if (isset($form['#default_value'])) {
$form['#value'] = $form['#default_value'];
}
else {
$form['#value'] = 0;
}
}
?>