|
Revision 507, 2.4 kB
(checked in by anarcat, 3 years ago)
|
[project @ alternc: changeset 2005-01-19 06:09:36 by anarcat]
create and connect a variable configurator
Original author: anarcat
Date: 2005-01-19 06:09:36
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 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 |
require_once("../class/config.php"); |
|---|
| 31 |
|
|---|
| 32 |
if (!$admin->enabled) { |
|---|
| 33 |
__("This page is restricted to authorized staff"); |
|---|
| 34 |
exit(); |
|---|
| 35 |
} |
|---|
| 36 |
|
|---|
| 37 |
$conf = variable_init(); |
|---|
| 38 |
foreach ($conf as $name => $val) { |
|---|
| 39 |
if (isset($$name)) { |
|---|
| 40 |
variable_set($name, $$name); |
|---|
| 41 |
} |
|---|
| 42 |
} |
|---|
| 43 |
|
|---|
| 44 |
include("head.php"); |
|---|
| 45 |
?> |
|---|
| 46 |
</head> |
|---|
| 47 |
<body> |
|---|
| 48 |
<h3><?php __("Configure AlternC variables"); ?></h3> |
|---|
| 49 |
|
|---|
| 50 |
<p> |
|---|
| 51 |
<?php __("Here are the internal AlternC variables that are currently being used."); ?> |
|---|
| 52 |
</p> |
|---|
| 53 |
|
|---|
| 54 |
<form method="post" action="adm_variables.php"> |
|---|
| 55 |
<table border="0" cellpadding="4" cellspacing="0"> |
|---|
| 56 |
<tr><th><?php __("Names"); ?></th><th><?php __("Value"); ?></th><th><?php __("Comment"); ?></th></tr> |
|---|
| 57 |
<?php |
|---|
| 58 |
$col=1; |
|---|
| 59 |
$db->query("SELECT * FROM `variable` WHERE `comment` IS NOT NULL ORDER BY `name`"); |
|---|
| 60 |
|
|---|
| 61 |
while ($db->next_record()) { |
|---|
| 62 |
$vars = $db->Record; |
|---|
| 63 |
$col=3-$col; |
|---|
| 64 |
?> |
|---|
| 65 |
|
|---|
| 66 |
<tr class="lst<?php echo $col; ?>"> |
|---|
| 67 |
<td><?php echo $vars['name']; ?></td> |
|---|
| 68 |
<td><input type="text" name="<?php echo $vars['name']?>" value="<?php echo $vars['value']?>" ></td> |
|---|
| 69 |
<td><?php echo $vars['comment']; ?></td> |
|---|
| 70 |
</tr> |
|---|
| 71 |
<? } ?> |
|---|
| 72 |
</table> |
|---|
| 73 |
<input type="submit" class="inb" value="<?php __("Save variables"); ?>" /> |
|---|
| 74 |
</form> |
|---|
| 75 |
</body> |
|---|
| 76 |
</html> |
|---|
| 77 |
|
|---|