i18n
[old-projects.git] / philter / philter / index.php
1 <?php
2 /********************************************************************************
3 * index.php : index page
4 * ---------
5 *
6 * This file is part of the philter distribution
7 * Copyright: See COPYING files that comes with this distribution
8 ********************************************************************************/
9
10 require("include/header.inc.php");
11 require("include/philter.inc.php");
12 require("include/config.inc.php");
13
14 $mail_pool = new EmailPool(get_user_id());
15 $filter = new Filter(get_user_id());
16
17 if(count($_POST)) { // a FORM has been submitted
18 if(isset($_POST['emails'])) // FORM emails
19 if(!$mail_pool->handle_form())
20 echo "<p style=\"color:red;\">".$philter->error()."</p>\n";
21
22 if(!empty($_POST['order']['action'])) // FORM order
23 if($_POST['order']['action']=='submit') {
24 foreach($filter->rules as $id=>$rule)
25 if(isset($_POST['order'][$id]))
26 $filter->rules[$id]->move_to($_POST['order'][$id], $filter->uid, $id);
27 uasort($filter->rules, 'rule_cmp');
28 } elseif($_POST['order']['action']=='delete' && !empty($_POST['order']['select'])) {
29 $filter->delete_rule($_POST['order']['select']);
30 $_POST['order']['select'] = min(count($filter->rules),$_POST['order']['select']);
31 }
32
33 if(!empty($_POST['rule'])) // FORM rule
34 if(!$filter->handle_form())
35 echo "<p style=\"color:red;\">".$philter->error()."</p>\n";
36 }
37
38 require("include/js_factory.inc.php");
39
40 /********** globals plugins **********/
41 ?>
42 <div class="rubrique"><?php i18n('global_title'); ?></div>
43 <?php
44 if(count($philter->config['global_plugin'])) {
45 echo "<form action=\"{$_SERVER['REQUEST_URI']}\" method=\"post\">\n"
46 ."<table width=\"95%\" class=\"bicol\" cellspacing=\"1\" cellpadding=\"1\" align=\"center\">\n";
47
48 foreach($philter->config['global_plugin'] as $g_plugin) {
49 echo "<tr><td>\n";
50 echo $g_plugin->to_form(/* data */);
51 echo "</td></tr>\n";
52
53 }
54
55 echo "</table>\n"
56 ."</form>\n";
57 }
58
59 /********** emails **********/
60 ?>
61 <br />
62 <div class="rubrique"><?php i18n('pool_title'); ?></div>
63 <?php
64 echo $mail_pool->to_form();
65
66 /********** filters **********/
67 ?>
68
69 <br />
70 <div class="rubrique"><?php i18n('filter_title'); ?></div>
71 <table width="95%" cellspacing="0" cellpadding="2" align="center">
72 <tr><td width="25%" valign="top">
73 <form action="<?php echo $_SERVER['REQUEST_URI']?>" method="post" id="order" name="order" onsubmit="return false;">
74 <table class="bicol" width="100%" cellpadding="1" cellspacing="1">
75 <tr><th><?php i18n('filter_list_title');?></th></tr>
76 <tr><td>
77 <?php
78 foreach($filter->rules as $id=>$rule)
79 echo "<input type=\"hidden\" id=\"order$id\" name=\"order[$id]\" value=\"{$rule->rank}\" />\n";
80
81 $presel = (isset($_POST['rule']['id']) ? $_POST['rule']['id']
82 : (isset($_POST['order']['select']) ? $_POST['order']['select'] : 0));
83
84 echo "<select size=\"16\" style=\"width:100%;\" id=\"orderSelect\" name=\"order[select]\" onchange=\"createRuleForm()\">\n";
85 echo "<option value=\"0\" ".($presel ? "" : " selected=\"selected\"").">";
86 i18n('new_rule');
87 echo "</option>\n";
88
89 foreach($filter->rules as $id=>$rule)
90 echo "<option value=\"$id\""
91 .($presel==$id ? " selected=\"selected\"":"")
92 .">{$rule->name}</option>\n";
93 ?>
94 </select>
95 </td></tr><tr><td>
96 <input type="submit" value="<?php i18n('up');?>" name="order[up]" onclick="order_up();" />
97 <input type="submit" value="<?php i18n('dn');?>" name="order[dn]" onclick="order_dn();" /><br />
98 <input type="submit" value="<?php i18n('del');?>" name="order[delete]" onclick="order_submit(this)" />
99 <input type="submit" value="<?php i18n('submit');?>" name="order[submit]" onclick="order_submit(this)" />
100 <input type="hidden" value="" name="order[action]" />
101 </td></tr>
102 </table>
103 </form>
104 </td>
105 <td valign="top">
106 <form action="<?php echo $_SERVER['REQUEST_URI']?>" method="post" id="rule" name="rule" onsubmit="return false;">
107 <table width="100%" class="bicol" cellspacing="1" cellpadding="1">
108 <tr class="impair"><th><?php i18n('filter_rule_conf');?>
109 </th></tr><tr class="impair"><td>
110 <input type="hidden" value="0" id="ruleId" name="rule[id]" />
111 Name of this rule :
112 <input type="text" size="60" value="" id="ruleName" name="rule[name]"
113 onfocus="text_onfocus(this,'<?php i18n('new_rule');?>')"
114 onblur="text_onblur(this,'<?php i18n('new_rule');?>')" />
115 <br />
116 <input type="radio" value="1" id="ruleAll1" name="rule[all]" /><?php i18n('all_matches');?>
117 <input type="radio" value="0" id="ruleAll0" name="rule[all]" /><?php i18n('one_match');?>
118 <br />
119 <input type="checkbox" checked="checked" id="ruleBlock" name="rule[block]" />
120 <?php i18n('blocking_rule');?>
121 </td></tr><tr class="impair"><th><?php i18n('filter_matches_list');?>
122 </th></tr><tr class="impair"><td id="matchesRow">
123 </td></tr><tr class="impair"><th><?php i18n('filter_actions_list');?>
124 </th></tr><tr class="impair"><td id="actionsRow">
125 </td></tr><tr class="impair"><td>
126 <input type="submit" value="<?php i18n('new_match');?>" name="rule[new_match]" onclick="newMatch() "/>
127 <input type="submit" value="<?php i18n('new_action');?>" name="rule[new_action]" onclick="newAction()" />
128 <input type="submit" value="<?php i18n('submit');?>" name="rule[submit]" onclick="this.form.submit()" />
129 </td></tr>
130 </table>
131 </form>
132 </td>
133 </tr>
134 </table>
135
136 <script type="text/javascript">
137 createRuleForm();
138 </script>
139
140 <?php
141 /********** footer **********/
142
143 require("include/footer.inc.php");
144
145 /********************************************************************************
146 * $id: header.inc.php,v 1.2 2003/08/03 16:02:41 madcoder exp $
147 * vim: set expandtab shiftwidth=4 tabstop=4 softtabstop=4 textwidth=100:
148 ********************************************************************************/
149 ?>