domain_theme_submit

Definition

domain_theme_submit($form_id, $form_values)
domain_theme/domain_theme_form.inc, line 65

Description

FormsAPI submut handler for the theme settings

Code

function domain_theme_submit($form_id, $form_values) {
  $theme = $form_values['theme_default'];
  $id = $form_values['domain_id'];
  $settings = NULL; // This is a placeholder for advanced functions.
  $check = domain_theme_lookup($id);
  if ($check == -1) {
    db_query("INSERT INTO {domain_theme} VALUES (%d, '%s', %b)", $id, $theme, $settings);
  }
  else {
    db_query("UPDATE {domain_theme} SET theme = '%s', settings = %b WHERE domain_id = %d", $theme, $settings, $id);
  }
}