You are here

function bootstrap_tour_settings_form_submit in Bootstrap Tour 7

Submit handler for settings form

_state

Parameters

stdClass $form:

File

./bootstrap_tour.admin.inc, line 571

Code

function bootstrap_tour_settings_form_submit($form, &$form_state) {
  $form_state = $form_state;
  variable_set('bootstrap_tour obligatory_tour', (int) $form_state['values']['obligatory']);
  variable_set('bootstrap_tour obligatory_tour description', (string) $form_state['values']['description']);
  variable_set('bootstrap_tour obligatory_tour intrusive', (bool) $form_state['values']['intrusive']);
  variable_set('bootstrap_tour tour_additional_classes', (string) $form_state['values']['tour_additional_classes']);
  variable_set('bootstrap_tour dialog_additional_classes', (string) $form_state['values']['dialog_additional_classes']);
  variable_set('bootstrap_tour button_additional_classes', (string) $form_state['values']['button_additional_classes']);
  drupal_set_message('Settings saved!');
}