Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.13 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $short_lang_code; ?>" lang="<?php echo $short_lang_code; ?>" dir="<?php echo $text_direction; ?>">
  3. <head>
  4. <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  5. <title><?php echo ts('CiviCRM Installer'); ?></title>
  6. <link rel="stylesheet" type="text/css" href=<?php echo $installURLPath . "template.css"?> />
  7. <?php
  8. if ($text_direction == 'rtl') {
  9. echo " <link rel='stylesheet' type='text/css' href='{$installURLPath}template-rtl.css' />\n";
  10. }
  11. ?>
  12. </head>
  13. <body>
  14.  
  15. <div id="All">
  16. <div class="civicrm-logo"><strong><?php echo ts('Version %1', array(1 => "{$civicrm_version['version']} {$civicrm_version['cms']}")); ?></strong><br/>
  17. <span><img src=<?php echo $installURLPath . "block_small.png"?> /></span>
  18. </div>
  19.  
  20. <h1><?php echo ts("CiviCRM Installer"); ?></h1>
  21. <p><?php echo ts("Thanks for choosing CiviCRM! Please follow the instructions below to install CiviCRM."); ?></p>
  22.  
  23. <form name="civicrm_form" method="post" action="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI']); ?>">
  24.  
  25. <?php if (isset($hasErrorOtherThanDatabase)) { ?>
  26. <p class="error"><?php echo ts('We are not able to install the software. Please <a href="#requirements">see below</a> for details.'); ?></p>
  27. <?php } else { ?>
  28. <?php if ($req->hasWarnings()) { ?>
  29. <p class="warning"><?php echo ts('There are some issues that we recommend you look at before installing, however, you are still able to install the software. Please see below for details.'); ?></p>
  30. <?php } elseif (!$dbReq->hasErrors()) { ?>
  31. <p class="good"><?php echo ts("You're ready to install!"); ?></p>
  32. <?php } ?>
  33.  
  34. <p>
  35. <input id="install_button" type="submit" name="go" value="<?php echo ts('Check Requirements and Install CiviCRM', array('escape' => 'js')); ?>" onclick="document.getElementById('saving_top').style.display = ''; this.value = '<?php echo ts('Installing CiviCRM...', array('escape' => 'js')); ?>'" />
  36.  
  37. <span id="saving_top" style="display: none">
  38. &nbsp;
  39. <img src=<?php echo $installURLPath . "network-save.gif"?> />
  40. <?php echo ts('(this will take a few minutes)'); ?>
  41. </span>
  42. </p>
  43. <?php } ?>
  44.  
  45. <h4><?php echo ts('Language and Region Settings'); ?></h4>
  46.  
  47. <p><?php echo ts('CiviCRM has been translated to many languages, thanks to its community of translators. By selecting another language, the installer may be available in that language. The initial configuration of the basic data will also be set to that language (ex: individual prefixes, suffixes, activity types, etc.). <a href="%1">Learn more about using CiviCRM in other languages.</a>', array(1 => 'http://wiki.civicrm.org/confluence/pages/viewpage.action?pageId=88408149')); ?></p>
  48.  
  49. <script>
  50. function civicrmInstallerSetLanguage(language) {
  51. var location = window.location.toString();
  52.  
  53. if (location.match(/seedLanguage=.._../)) {
  54. location = location.replace(/seedLanguage=.._../, 'seedLanguage=' + language);
  55. window.location = location;
  56. }
  57. else {
  58. window.location += (location.indexOf('?') < 0 ? '?' : '&') + 'seedLanguage=' + language;
  59. }
  60. }
  61. </script>
  62.  
  63. <p style="margin-left: 2em" id="locale">
  64. <label for="seedLanguage"><span><?php echo ts('Language of basic data:'); ?></span></label>
  65. <select id="seedLanguage" name="seedLanguage" onchange="civicrmInstallerSetLanguage(this.value);">
  66. <?php
  67. foreach ($langs as $locale => $language) {
  68. $selected = ($locale == $seedLanguage) ? 'selected="selected"' : '';
  69. echo "<option value='$locale' $selected>$language</option>";
  70. }
  71. ?>
  72. </select>
  73. <noscript>
  74. <input type="submit" name="setlanguage" value="<?php echo ts('Change language', array('escape' => 'js')); ?>" />
  75. </noscript>
  76. <span class="testResults">
  77. <?php
  78. if (count($langs) < 2) {
  79. echo "(download the civicrm-{$civicrm_version['version']}-l10n.tar.gz file and unzip into CiviCRM’s directory to add languages here)";
  80. }
  81. ?>
  82. </span>
  83. </p>
  84.  
  85. <input type="hidden" name="database" value="MySQLDatabase" />
  86.  
  87. <h2><?php echo ts('Database Version and Connection Settings'); ?></h2>
  88. <p>
  89. <?php echo ts('CiviCRM stores its content in a MySQL database. Please provide the username and password to connect to the server here. If this account has permission to create databases, then we will create the database for you; otherwise, you must give the name of a database that already exists.'); ?>
  90. </p>
  91.  
  92. <?php if ($dbReq->hasErrors()) { ?>
  93. <p class="error"><?php echo ts("Your database settings don't appear to be correct. Please check the <a href='%1'>Database Details</a> below for specific errors.", array(1 => '#dbDetails')); ?></p>
  94. <?php } else { ?>
  95. <p class="good"><?php echo ts("Database version and connection settings have been verified and look correct!"); ?></p>
  96. <?php } ?>
  97.  
  98. <h4><?php echo ts('CiviCRM Database Settings'); ?></h4>
  99. <p style="margin-left: 2em" id="mysql_credentials">
  100. <label for="mysql_server"> <span><?php echo ts('MySQL server:'); ?></span> <input id="mysql_server" type="text" name="mysql[server]" value="<?php echo $databaseConfig['server']; ?>" /></label>
  101. <span class="testResults"> <?php echo ts('If your mysql server is running on other port than default 3306, provide server info as server:port (i.e. localhost:1234) ') ?> <?php echo ts('Some setups may require the default port explicitly specified (i.e. localhost:3306) ') ?> </span> </br>
  102. <label for="mysql_username"> <span><?php echo ts('MySQL username:'); ?></span> <input id="mysql_username" type="text" name="mysql[username]" value="<?php echo $databaseConfig['username']; ?>" /></label> <br />
  103. <label for="mysql_password"> <span><?php echo ts('MySQL password:'); ?></span> <input id="mysql_password" type="password" name="mysql[password]" value="<?php echo $databaseConfig['password']; ?>" /></label> <br />
  104. <label for="mysql_database"><span><?php echo ts('MySQL database:'); ?></span> <input id="mysql_database" type="text" name="mysql[database]" value="<?php echo $databaseConfig['database']; ?>" /></label> <br />
  105. </p>
  106.  
  107. <?php if ($installType == 'drupal') { ?>
  108. <h4><?php echo ts('Drupal Database Settings'); ?></h4>
  109. <p style="margin-left: 2em" id="drupal_credentials" > <!--style="display: none"-->
  110. <label for="drupal_server"> <span><?php echo ts('MySQL server:'); ?></span> <input id="drupal_server" type="text" name="drupal[server]" value="<?php echo $drupalConfig['server']; ?>" /></label>
  111. <span class="testResults"> <?php echo ts('If your mysql server is running on other port than default 3306, provide server info as server:port (i.e. localhost:1234) ') ?> <?php echo ts('Some setups may require the default port explicitly specified (i.e. localhost:3306) ') ?> </span> </br>
  112. <label for="drupal_username"> <span><?php echo ts('MySQL username:'); ?></span> <input id="drupal_username" type="text" name="drupal[username]" value="<?php echo $drupalConfig['username']; ?>" /></label> <br />
  113. <label for="drupal_password"> <span><?php echo ts('MySQL password:'); ?></span> <input id="drupal_password" type="password" name="drupal[password]" value="<?php echo $drupalConfig['password']; ?>" /></label> <br />
  114. <label for="drupal_database"><span><?php echo ts('MySQL database:'); ?></span> <input id="drupal_database" type="text" name="drupal[database]" value="<?php echo $drupalConfig['database']; ?>" /></label> <br />
  115. </p>
  116. <?php } ?>
  117.  
  118. <?php if ($installType == 'backdrop') { ?>
  119. <h4><?php echo ts('Backdrop Database Settings'); ?></h4>
  120. <p style="margin-left: 2em" id="backdrop_credentials" > <!--style="display: none"-->
  121. <label for="backdrop_server"> <span><?php echo ts('MySQL server:'); ?></span> <input id="backdrop_server" type="text" name="backdrop[server]" value="<?php echo $backdropConfig['server'] ?>" /></label>
  122. <span class="testResults"> <?php echo ts('If your mysql server is running on other port than default 3306, provide server info as server:port (i.e. localhost:1234) ') ?> <?php echo ts('Some setups may require the default port explicitly specified (i.e. localhost:3306) ') ?> <?php echo ts('Some setups may require the default port explicitly specified (i.e. localhost:3306) ') ?> </span> </br>
  123. <label for="backdrop_username"> <span><?php echo ts('MySQL username:'); ?></span> <input id="backdrop_username" type="text" name="backdrop[username]" value="<?php echo $backdropConfig['username'] ?>" /></label> <br />
  124. <label for="backdrop_password"> <span><?php echo ts('MySQL password:'); ?></span> <input id="backdrop_password" type="password" name="backdrop[password]" value="<?php echo $backdropConfig['password'] ?>" /></label> <br />
  125. <label for="backdrop_database"><span><?php echo ts('MySQL database:'); ?></span> <input id="backdrop_database" type="text" name="backdrop[database]" value="<?php echo $backdropConfig['database'] ?>" /></label> <br />
  126. </p>
  127. <?php } ?>
  128.  
  129. <h4><?php echo ts('Other Settings'); ?></h4>
  130.  
  131. <p>
  132. <label for="loadGenerated"><span>Load sample data:</span><input id="loadGenerated" type="checkbox" name="loadGenerated" value=1 <?php if ( $loadGenerated == 1 ) { echo "checked='checked'"; } ?> /></label> <br />
  133. <span class="testResults">Check this box to pre-populate CiviCRM with sample English contact records, online contribution pages, profile forms, etc. These examples can help you learn about CiviCRM features.</span><br />
  134. </p>
  135.  
  136. <p style="margin-left: 2em"><input type="submit" value="<?php echo ts('Re-check requirements', array('escape' => 'js')); ?>" /></p>
  137.  
  138. <a name="dbDetails">
  139.  
  140. <?php
  141. echo '<h4>' . ts('CiviCRM Database Details') . '</h4>';
  142. $dbReq->showTable(ts("MySQL %1 Configuration", array(1 => 'CiviCRM')));
  143. ?>
  144.  
  145. <?php if ($installType == 'drupal') {
  146. echo "<h4>" . ts('Drupal Database Details') . "</h4>";
  147. $dbReq->showTable(ts("MySQL %1 Configuration", array(1 => 'Drupal')));
  148. }?>
  149.  
  150. <?php if ($installType == 'backdrop') {
  151. echo "<h4>" . ts('Backdrop Database Details') . "</h4>";
  152. $dbReq->showTable(ts("MySQL %1 Configuration", array(1 => 'Backdrop')));
  153. }?>
  154. <br /><hr />
  155.  
  156. <h2 id="requirements"><?php echo ts('Requirements'); ?></h2>
  157. <?php
  158. $req->showTable();
  159. ?>
  160.  
  161. </form>
  162. </div>
  163. </body>
  164. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement