Definition

weight_value(&$form)
files/drupal-6.7/includes/form.inc, line 1719

Description

If no default value is set for weight select boxes, use 0.

Related topics

Namesort iconDescription
Form generationFunctions to enable the processing and display of HTML forms.
Form generationFunctions to enable the processing and display of HTML forms.

Code

<?php
function weight_value(&$form) {
  if (isset($form['#default_value'])) {
    $form['#value'] = $form['#default_value'];
  }
  else {
    $form['#value'] = 0;
  }
}
?>