Checkboxes with watchdog_severity_levels()
问题 I have this code that gets me out some checkboxes with the watchdog severities: /** * Checkbox for errors, alerts, e.t.c */ foreach (watchdog_severity_levels() as $severity => $description) { $key = 'severity_errors' . $severity; $form['severity_errors'][$key] = array( '#type' => 'checkbox', '#title' => t('@description', array('@description' => drupal_ucfirst($description))), '#default_value' => variable_get($key, array()), ); return system_settings_form($form); } I set this $key in my code