]> git.donarmstrong.com Git - roundcube.git/blob - installer/index.php
Merge commit 'upstream/0.1'
[roundcube.git] / installer / index.php
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4 <head>
5 <title>RoundCube Webmail Installer</title>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
7 <link rel="stylesheet" type="text/css" href="styles.css" />
8 <script type="text/javascript" src="client.js"></script>
9 </head>
10
11 <body>
12
13 <div id="banner">
14   <div id="header">
15     <div class="banner-logo"><a href="http://www.roundcube.net"><img src="images/banner_logo.gif" width="200" height="56" border="0" alt="RoundCube Webmal Project" /></a></div>
16     <div class="banner-right"><img src="images/banner_right.gif" width="10" height="56" alt="" /></div>
17   </div>
18   <div id="topnav">
19     <a href="http://trac.roundcube.net/wiki/Howto_Install">How-to Wiki</a>
20   </div>
21  </div>
22
23 <div id="content">
24
25 <h1>RoundCube Webmail Installer</h1>
26
27 <?php
28
29   ini_set('error_reporting', E_ALL&~E_NOTICE);
30   ini_set('display_errors', 1);
31
32   $docroot = realpath(dirname(__FILE__) . '/../');
33   $include_path  = $docroot . '/program/lib' . PATH_SEPARATOR . $docroot . '/program' . PATH_SEPARATOR . ini_get('include_path');
34   set_include_path($include_path);
35
36   require_once 'rcube_install.php';
37   $RCI = rcube_install::get_instance();
38   $RCI->load_config();
39   
40 ?>
41
42 <ol id="progress">
43 <?php
44   
45   foreach (array('Check environment', 'Create config', 'Test config') as $i => $item) {
46     $j = $i + 1;
47     $link = ($RCI->step >= $j || $RCI->configured) ? '<a href="./index.php?_step='.$j.'">' . Q($item) . '</a>' : Q($item);
48     printf('<li class="step%d%s">%s</li>', $j+1, $RCI->step > $j ? ' passed' : ($RCI->step == $j ? ' current' : ''), $link);
49   }
50 ?>
51 </ol>
52
53 <?php
54
55 $include_steps = array('welcome.html', 'check.php', 'config.php', 'test.php');
56
57 if ($include_steps[$RCI->step]) {
58   include $include_steps[$RCI->step];
59 }
60 else {
61   header("HTTP/1.0 404 Not Found");
62   echo '<h2 class="error">Invalid step</h2>';
63 }
64
65 ?>
66 </div>
67
68 <div id="footer">
69   Installer by the RoundCube Dev Team. Copyright &copy; 2008 - Published under the GNU Public License;&nbsp;
70   Icons by <a href="http://famfamfam.com">famfamfam</a>
71 </div>
72 </body>
73 </html>