function install_display_lang_selection

6.x install.php install_display_lang_selection()
4.x install.php install_display_lang_selection()
5.x install.php install_display_lang_selection()
1 call to install_display_lang_selection()
install.php in ./install.php
This is the initial installation file for FlightPath.

File

./install.php, line 568
This is the initial installation file for FlightPath.

Code

function install_display_lang_selection() {
  $pC = "";

  $pC .= "<h2 class='title'>Install FlightPath</h2>
          Please follow the instructions on the following pages to complete
          your installation of FlightPath.
          
            <h3 class='title'>Select language</h3>
          Please begin by selecting an installation language.
          <ul>
            <li><a href='install.php?lang=en'>English</a></li>
          </ul>
          <br><br><br>
          <b>Please note:</b> By proceeding with this installation, you affirm that you
          have read, understand, and agree with the LICENSE.txt file and the COPYRIGHT.txt file
          included with this software package.
          Specifically, that you accept and agree with the GNU GPL license, and with the statement
          that this software is provided to you without warranty.  If you have any questions,
          please visit http://getflightpath.com/contact before proceeding with installation.";

  // Display the screen
  $page_content = $pC;
  $page_title = "Install FlightPath";
  $page_hide_report_error = TRUE;

  include ("themes/classic/fp_template.php");
}