blob: b10617b04f37a78ccf229f07e0d7fb9152917ab0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
<?php
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
/**
* First access in install process
*
* PHP versions 4 and 5
*
* LICENSE: Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose and without fee is hereby
* granted, provided that the above copyright notice appear in all
* copies and that both that copyright notice and this permission
* notice appear in supporting documentation, and that the name of the
* author not be used in advertising or publicity pertaining to
* distribution of the software without specific, written prior
* permission. The author makes no representations about the
* suitability of this software for any purpose. It is provided "as
* is" without express or implied warranty.
*
* @author Ryuma Ando <[email protected]>
* @copyright 2003-2011 PgPool Global Development Group
* @version CVS: $Id$
*/
require_once('../version.php');
$messageList = array();
$res_dir = opendir('lang/');
while ($file_name = readdir( $res_dir )) {
if (preg_match('/^[^\.]/', $file_name)) {
include('lang/' . $file_name);
$messageList[$message['lang']] = $message['strLang'];
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Welcome to pgpool-II Administration Tool</title>
<link href="../screen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="header">
<h1><img src="../images/logo.gif" alt="pgpoolAdmin" /></h1>
</div>
<div id="content">
<h2>Welcome to pgpool-II Administration Tool</h2>
<form action="checkDirectory.php" method="post" name="CheckPath" id="CheckPath">
<table>
<tbody>
<tr>
<th><label>Language</label></th>
<td>
<select name="lang">
<?php
foreach ($messageList as $key => $str) {
echo "<option value='$key' >$str</option>\n";
}
?>
</select>
</td>
</tr>
</tbody>
</table>
<p><input type="submit" value="Next" /></p>
</form>
</div>
<div id="footer">
<address>Version <?php echo $version;?><br />
Copyright © 2006 - <?php echo date('Y'); ?> <a href="http://pgpool.projects.postgresql.org/">pgpool Global Development Group</a>. All rights reserved.</address>
</div>
</body>
</html>
|