Move busui to seperate repository
[bus.git] / options_request_processing.tpl
1 <h2><?php echo $headline?></h2>
2
3 <form method="post">
4
5 <fieldset name="owa-options" class="options">
6 <legend>Request Processing Options</legend>
7
8 <DIV class="setting">
9 Resolve Host Names:
10 <SELECT NAME="<?php echo $this->getNs();?>config[resolve_hosts]">
11
12 <OPTION VALUE="0" <?php if ($config['resolve_hosts'] == false):?>SELECTED<?php endif; ?>>
13 Off</OPTION>
14
15 <OPTION VALUE="1" <?php if ($config['resolve_hosts'] == true):?>SELECTED<?php endif; ?>>
16 On</OPTION>
17
18 </SELECT>
19 </DIV>
20
21 <DIV class="setting">
22 Log Requests from Feed Readers:
23 <SELECT NAME="<?php echo $this->getNs();?>config[log_feedreaders]">
24
25 <OPTION VALUE="0" <?php if ($config['log_feedreaders'] == false):?>SELECTED<?php endif; ?>>
26 Off</OPTION>
27
28 <OPTION VALUE="1" <?php if ($config['log_feedreaders'] == true):?>SELECTED<?php endif; ?>>
29 On</OPTION>
30
31 </SELECT>
32 </DIV>
33
34 <DIV class="setting">
35 Log Requests from Known Robots:
36 <SELECT NAME="<?php echo $this->getNs();?>config[log_robots]">
37
38 <OPTION VALUE="0" <?php if ($config['log_robots'] == false):?>SELECTED<?php endif; ?>>
39 Off</OPTION>
40
41 <OPTION VALUE="1" <?php if ($config['log_robots'] == true):?>SELECTED<?php endif; ?>>
42 On</OPTION>
43
44 </SELECT>
45 </DIV>
46
47 <DIV class="setting">
48 Announce New Visitors via E-mail:
49 <SELECT NAME="<?php echo $this->getNs();?>config[announce_visitors]">
50
51 <OPTION VALUE="0" <?php if ($config['announce_visitors'] == false):?>SELECTED<?php endif; ?>>
52 Off</OPTION>
53
54 <OPTION VALUE="1" <?php if ($config['announce_visitors'] == true):?>SELECTED<?php endif; ?>>
55 On</OPTION>
56
57 </SELECT>
58 </DIV>
59
60 <DIV class="setting">
61
62 Notice Email Address: <input type="text" name="<?php echo $this->getNs();?>config[notice_email]" value="<?php echo $config['notice_email']?>"><BR>
63
64 </DIV>
65
66 </fieldset>
67
68 <fieldset name="owa-geolocation-options" class="options">
69 <legend>Geo-location Options</legend>
70
71 <DIV class="setting">
72
73 Perform Geo-location Lookup:
74 <SELECT NAME="<?php echo $this->getNs();?>config[geolocation_lookup]">
75
76 <OPTION VALUE="0" <?php if ($config['geolocation_lookup'] == false):?>SELECTED<?php endif; ?>>
77 Off</OPTION>
78
79 <OPTION VALUE="1" <?php if ($config['geolocation_lookup'] == true):?>SELECTED<?php endif; ?>>
80 On</OPTION>
81
82 </SELECT>
83 </DIV>
84 <DIV class="setting">
85 Geolocation Service:
86 <SELECT NAME="<?php echo $this->getNs();?>config[geolocation_service]">
87
88 <OPTION VALUE="hostip" <?php if ($config['geolocation_service'] == 'hostip'):?>SELECTED<?php endif; ?>>
89 Hostip.info Web Service (free)</OPTION>
90
91 </SELECT>
92
93 </DIV>
94
95 </fieldset>
96
97 <BUTTON type="submit" name="<?php echo $this->getNs();?>action" value="base.optionsUpdate">Update Configuration</BUTTON>
98 <BUTTON type="submit" name="<?php echo $this->getNs();?>action" value="base.optionsReset">Reset to Default Values</BUTTON>
99 </form>