Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 44 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
||
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public License |
| 6 | * as published by the Free Software Foundation; under version 2 |
| 7 | * of the License (non-upgradable). |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
| 17 | * |
| 18 | * Copyright (c) 2017 (original work) Open Assessment Technologies SA; |
| 19 | * |
| 20 | * |
| 21 | */ |
| 22 | |
| 23 | require_once '../../vendor/autoload.php'; |
| 24 | |
| 25 | if (tao_install_utils_System::isTAOInstalled()) { |
| 26 | $bootStrap = new oat\tao\model\mvc\Bootstrap(__DIR__ . '/../../config/generis.conf.php'); |
| 27 | if (!DEBUG_MODE) { |
| 28 | header("location:production.html"); |
| 29 | die(); |
| 30 | } |
| 31 | } |
| 32 | ?> |
| 33 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
| 34 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| 35 | |
| 36 | <html xmlns="http://www.w3.org/1999/xhtml"> |
| 37 | |
| 38 | <head> |
| 39 | <title>TAO Installation</title> |
| 40 | <link rel="stylesheet" type="text/css" href="../views/css/reset.css" /> |
| 41 | <link rel="stylesheet" type="text/css" href="css/installation_main.css" /> |
| 42 | <link rel="stylesheet" type="text/css" href="../views/css/custom-theme/jquery-ui-1.9.2.custom.css" /> |
| 43 | |
| 44 | <script type="text/javascript" src="../views/js/lib/require.js" data-main="js/install"></script> |
| 45 | </head> |
| 46 | |
| 47 | <body> |
| 48 | <!-- Screen Shield --> |
| 49 | <div id="screenShield"></div> |
| 50 | |
| 51 | <!-- Support Tab --> |
| 52 | <p id="supportTab" class="ui-corner-tl ui-corner-bl"></p> |
| 53 | |
| 54 | <!-- Help Popup --> |
| 55 | <div id="mainGenericPopup"> |
| 56 | <div id="genericPopupOverlay" class="ui-overlay"><div class="ui-widget-overlay ui-corner-all"></div></div> |
| 57 | <div id="genericPopup" class="ui-widget ui-widget-content ui-corner-all"> |
| 58 | <div id="genericPopupClose" class="js-genericPopupClose" title="Close">X</div> |
| 59 | <h4></h4> |
| 60 | <div id="genericPopupContent"> |
| 61 | |
| 62 | </div> |
| 63 | <button class="js-genericPopupClose button green" type="button">OK</button> |
| 64 | </div> |
| 65 | </div> |
| 66 | |
| 67 | <!-- Support Popup --> |
| 68 | <div id="mainSupportPopup"> |
| 69 | <div id="supportPopupOverlay" class="ui-overlay"><div class="ui-widget-overlay ui-corner-all"></div></div> |
| 70 | <div id="supportPopup" class="ui-widget ui-widget-content ui-corner-all"> |
| 71 | <div id="supportPopupClose" title="Close">X</div> |
| 72 | <div id="supportPopupContent"> |
| 73 | <h5>Are you looking for support?</h5> |
| 74 | </div> |
| 75 | </div> |
| 76 | </div> |
| 77 | |
| 78 | </body> |
| 79 | |
| 80 | </html> |
| 81 | |
| 82 | |
| 83 |