source: subversion/trunk/roundcubemail/installer/index.php @ 1118

Last change on this file since 1118 was 1118, checked in by thomasb, 5 years ago

First steps to implement an installer

File size: 1.7 KB
Line 
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</head>
9
10<body>
11
12<div id="banner">
13  <div id="header">
14    <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>
15    <div class="banner-right"><img src="images/banner_right.gif" width="10" height="56" alt="" /></div>
16  </div>
17  <div id="topnav">
18    <a href="http://trac.roundcube.net/wiki/Howto_Install">How-to Wiki</a>
19  </div>
20 </div>
21
22<div id="content">
23
24<h1>RoundCube Webmail Installer</h1>
25
26<?php
27
28  require_once 'rcube_install.php';
29  $RCI = new rcube_install();
30
31?>
32
33<ol id="progress">
34<?php
35 
36  foreach (array('Check environment', 'Create config', 'Test config') as $i => $item) {
37    $j = $i + 1;
38    $link = $RCI->step > $j ? '<a href="./index.php?_step='.$j.'">' . Q($item) . '</a>' : Q($item);
39    printf('<li class="step%d%s">%s</li>', $j+1, $RCI->step > $j ? ' passed' : ($RCI->step == $j ? ' current' : ''), $link);
40  }
41?>
42</ol>
43
44<?php
45
46$include_steps = array('welcome.html', 'check.php', 'config.php', 'test.php');
47
48if ($include_steps[$RCI->step]) {
49  include $include_steps[$RCI->step];
50}
51else {
52  header("HTTP/1.0 404 Not Found");
53  echo '<h2 class="error">Invalid step</h2>';
54}
55
56?>
57</div>
58
59<div id="footer">
60  Installer by the RoundCube Dev Team. Copyright &copy; 2008 - Published under the GNU Public License
61</div>
62</body>
63</html>
Note: See TracBrowser for help on using the repository browser.