'select', '#title' => t('Database connection to use'), '#default_value' => variable_get('schema_database_connection', 'default'), '#options' => $connection_options, '#description' => t('If you use a secondary database other than the default Drupal database you can select it here and use schema\'s "compare" and "inspect" functions on that other database.'), '#access' => count($connection_options) > 1, ); $form['schema_status_report'] = array( '#type' => 'checkbox', '#title' => t('Include schema comparison reports in site status report'), '#default_value' => variable_get('schema_status_report', 1), '#description' => t('When checked, schema comparison reports are run on the Administer page, and included in the site status report.'), ); $form['schema_suppress_type_warnings'] = array( '#type' => 'checkbox', '#title' => t('Suppress schema warnings.'), '#default_value' => variable_get('schema_suppress_type_warnings', 0), '#description' => t('When checked, missing schema type warnings will be suppressed.'), ); return system_settings_form($form); }