Move busui to seperate repository
[bus.git] / options_db.tpl
1 <h2><?php echo $headline?></h2>
2
3 <form method="post">
4
5 <fieldset name="owa-db-options" class="options">
6 <legend>Database Options</legend>
7
8 <DIV class="setting">
9 Asynchronous Event Handling Mode:
10 <SELECT NAME="async_db">
11
12 <OPTION VALUE="0" <?php if ($config['async_db'] == false):?>SELECTED<?php endif;?>>
13 Off</OPTION>
14
15 <OPTION VALUE="1" <?php if ($config['async_db'] == true):?>SELECTED<?php endif;?>>
16 On</OPTION>
17
18 </SELECT>
19 </DIV>
20
21 <DIV class="setting">
22
23 Event Log File Directory: <input type="text" size="80" name="async_log_dir" value="<?php echo $config['async_log_dir']?>"><BR>
24
25 </DIV>
26
27 <DIV class="setting">
28
29 Event Log File Name: <input type="text" name="async_log_file" value="<?php echo $config['async_log_file']?>"><BR>
30
31 </DIV>
32
33 </fieldset>
34
35 <BR>
36
37 <BUTTON type="submit" name="<?php echo $this->getNs();?>action" value="base.optionsUpdate">Update Configuration</BUTTON>
38 <BUTTON type="submit" name="<?php echo $this->getNs();?>action" value="base.optionsReset">Reset to Default Values</BUTTON>
39
40 </form>
41