]> git.agnieray.net Git - galette.git/blob - galette/install/steps/galette.php
Scrutinizer Auto-Fixes (#59)
[galette.git] / galette / install / steps / galette.php
1 <?php
2
3 /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
4
5 /**
6 * Galette installation, Galette initialisation
7 *
8 * PHP version 5
9 *
10 * Copyright © 2013-2014 The Galette Team
11 *
12 * This file is part of Galette (http://galette.tuxfamily.org).
13 *
14 * Galette is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation, either version 3 of the License, or
17 * (at your option) any later version.
18 *
19 * Galette is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with Galette. If not, see <http://www.gnu.org/licenses/>.
26 *
27 * @category Core
28 * @package Galette
29 *
30 * @author Johan Cwiklinski <johan@x-tnd.be>
31 * @copyright 2013-2014 The Galette Team
32 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL License 3.0 or (at your option) any later version
33 * @version SVN: $Id$
34 * @link http://galette.tuxfamily.org
35 * @since Available since 0.8 - 2013-01-12
36 */
37
38 use Galette\Core\Install as GaletteInstall;
39 use Galette\Core\Db as GaletteDb;
40 use Galette\Core\Login;
41
42 $results = array();
43 $oks = array();
44 $errs = array();
45 $install->reinitReport();
46
47 $config_file_ok = $install->writeConfFile();
48 $objects_ok = $install->initObjects($i18n, $zdb, new Login($zdb, $i18n, new RKA\Session()));
49 ?>
50 <h2><?php echo $install->getStepTitle(); ?></h2>
51 <?php
52
53 if ($config_file_ok === true && $objects_ok === true) {
54 echo '<p id="infobox">' . _T("Configuration file created!") .
55 '<br/>' . _T("Data initialized.") . '</p>';
56 } else {
57 echo '<p id="errorbox">' . _T("An error occurred :(") . '</p>';
58 }
59 ?>
60 <ul class="leaders">
61 <?php
62 foreach ($install->getInitializationReport() as $r) {
63 ?>
64 <li>
65 <span><?php echo $r['message']; ?></span>
66 <span><?php echo $install->getValidationImage($r['res']); ?></span>
67 </li>
68 <?php
69 }
70 ?>
71 </ul>
72 <form action="installer.php" method="POST">
73 <p id="btn_box">
74 <?php
75 if (!$config_file_ok || !$objects_ok) {
76 ?>
77 <input type="submit" id="retry_btn" value="<?php echo _T("Retry"); ?>"/>
78 <?php
79 }
80 ?>
81
82 <input id="next_btn" type="submit" value="<?php echo _T("Next step"); ?>"<?php if (!$config_file_ok || !$objects_ok) { echo ' disabled="disabled"'; } ?>/>
83 <?php
84 if ($config_file_ok && $objects_ok) {
85 ?>
86 <input type="hidden" name="install_prefs_ok" value="1"/>
87 <?php
88 }
89
90 if (!$config_file_ok || !$objects_ok) {
91 //once DB is installed, that does not make sense to go back
92 ?>
93 <input type="submit" id="btnback" name="stepback_btn" value="<?php echo _T("Back"); ?>"/>
94 <?php
95 }
96 ?>
97 </p>
98 </form>