You are here

function lingotek_setup_complete_form in Lingotek Translation 7.2

Setup Complete - Form Layout

1 string reference to 'lingotek_setup_complete_form'
lingotek_menu in ./lingotek.module
Implements hook_menu().

File

./lingotek.setup.inc, line 877
Lingotek Easy Install Process.

Code

function lingotek_setup_complete_form($form, $form_state) {

  // Mark Lingotek Setup Wizard as Complete
  variable_set('lingotek_setup_complete', 1);

  // Clear wizard progress tracking.
  if (isset($_SESSION['lingotek_setup_path'])) {
    unset($_SESSION['lingotek_setup_path']);
  }
  $form['lingotek_message_1'] = array(
    '#markup' => '<p>The Lingotek configuration module has been setup and configured and is now ready to use.</p>',
  );
  $form['lingotek_button_spacer'] = array(
    '#markup' => '<div>&nbsp;</div>',
  );
  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Start Using Lingotek'),
  );
  $form['lingotek_support_footer'] = lingotek_support_footer();
  return $form;
}