]> git.agnieray.net Git - galette.git/blob - galette/install/steps/galette.php
Some slight accessibility related improvements
[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 * @link http://galette.tuxfamily.org
34 * @since Available since 0.8 - 2013-01-12
35 */
36
37 use Galette\Core\Install as GaletteInstall;
38 use Galette\Core\Db as GaletteDb;
39 use Galette\Core\Login;
40
41 $results = array();
42 $oks = array();
43 $errs = array();
44 $install->reinitReport();
45
46 $config_file_ok = $install->writeConfFile();
47 $objects_ok = $install->initObjects($i18n, $zdb, new Login($zdb, $i18n));
48
49 if ($config_file_ok === true && $objects_ok === true) {
50 echo '<p class="ui green message">' . _T("Configuration file created!") .
51 '<br/>' . _T("Data initialized.") . '</p>';
52 } else {
53 echo '<p class="ui red message">' . _T("An error occurred :(") . '</p>';
54 }
55 ?>
56 <ul class="leaders">
57 <?php
58 foreach ($install->getInitializationReport() as $r) {
59 ?>
60 <li>
61 <span><?php echo $r['message']; ?></span>
62 <span><?php echo $install->getValidationImage($r['res']); ?></span>
63 </li>
64 <?php
65 }
66 ?>
67 </ul>
68
69 <div class="ui section divider"></div>
70
71 <form action="installer.php" method="POST" class="ui form">
72 <div class="ui mobile reversed tablet reversed computer reversed equal width grid">
73 <div class="right aligned column">
74 <?php
75 if (!$config_file_ok || !$objects_ok) {
76 ?>
77 <button type="submit" class="ui right labeled icon button"><i class="redo alternate double right icon" aria-hidden="true"></i> <?php echo _T("Retry"); ?></button>
78 <?php
79 }
80 ?>
81 <button type="submit" class="ui right labeled primary icon button"<?php if (!$config_file_ok || !$objects_ok) { echo ' disabled="disabled"'; } ?>><i class="angle double right icon" aria-hidden="true"></i> <?php echo _T("Next step"); ?></button>
82 <?php
83 if ($config_file_ok && $objects_ok) {
84 ?>
85 <input type="hidden" name="install_prefs_ok" value="1"/>
86 <?php
87 }
88 ?>
89 </div>
90 <?php
91 if (!$config_file_ok || !$objects_ok) {
92 //once DB is installed, that does not make sense to go back
93 ?>
94 <div class="left aligned column">
95 <button type="submit" id="btnback" name="stepback_btn" formnovalidate class="ui labeled icon button"><i class="angle double left icon" aria-hidden="true"></i> <?php echo _T("Back"); ?></button>
96 </div>
97 <?php
98 }
99 ?>
100 </div>
101 </form>