warnings
[old-projects.git] / philter / philter / include / form_filter.inc.php
1 <?php
2 if(!empty($_POST['rule']))
3 if(!$filter->handle_form())
4 echo "<p style=\"color:red;\">".$philter->error()."</p>\n";
5
6 require("include/js_factory.inc.php");
7 ?>
8 <div class="rubrique"><?php i18n('filter_sync'); ?></div>
9 <?php i18n('filter_sync_txt') ?>
10 <form action="<?php echo $_SERVER['REQUEST_URI'] ?>" method="post">
11 <center>
12 <input type="submit" value='<?php i18n('filter_valid') ?>' name="filter_valid" />
13 <input type="submit" value='<?php i18n('filter_cancel') ?>' name="filter_cancel" />
14 </center>
15 </form>
16
17 <br />
18 <div class="rubrique"><?php i18n('filter_title'); ?></div>
19 <?php
20 i18n('filter_help');
21 ?>
22 <table width="95%" cellspacing="0" cellpadding="2" align="center">
23 <tr><td width="25%" valign="top">
24 <form action="<?php echo $_SERVER['REQUEST_URI']?>" method="post" id="order" name="order" onsubmit="return false;">
25 <table class="bicol" width="100%" cellpadding="1" cellspacing="1">
26 <tr><th><?php i18n('filter_list_title');?></th></tr>
27 <tr><td>
28 <?php
29 foreach($filter->rules as $id=>$rule)
30 if($id)
31 echo "<input type=\"hidden\" id=\"order$id\" name=\"order[$id]\" value=\"{$rule->rank}\" />\n";
32
33 $presel = (isset($_POST['rule']['id']) ? $_POST['rule']['id']
34 : (isset($_POST['order']['select']) ? $_POST['order']['select'] : 0));
35
36 echo "<select size=\"16\" style=\"width:100%;\" id=\"orderSelect\" name=\"order[select]\" onchange=\"createRuleForm()\">\n";
37 echo "<option value=\"0\" ".($presel ? "" : " selected=\"selected\"").">";
38 i18n('new_rule');
39 echo "</option>\n";
40
41 foreach($filter->rules as $id=>$rule)
42 if($id)
43 echo "<option value=\"$id\""
44 .($presel==$id ? " selected=\"selected\"":"")
45 .">{$rule->name}</option>\n";
46 ?>
47 </select>
48 </td></tr><tr><td>
49 <input type="submit" value="<?php i18n('up');?>" name="order[up]" onclick="order_up();" />
50 <input type="submit" value="<?php i18n('dn');?>" name="order[dn]" onclick="order_dn();" /><br />
51 <input type="submit" value="<?php i18n('del');?>" name="order[delete]" onclick="order_submit(this)" />
52 <input type="submit" value="<?php i18n('submit');?>" name="order[submit]" onclick="order_submit(this)" />
53 <input type="hidden" value="" name="order[action]" />
54 </td></tr>
55 </table>
56 </form>
57 </td>
58 <td valign="top">
59 <form action="<?php echo $_SERVER['REQUEST_URI']?>" method="post" id="rule" name="rule" onsubmit="return false;">
60 <table width="100%" class="bicol" cellspacing="1" cellpadding="1">
61 <tr><th><?php i18n('rule_name'); ?>
62 </th></tr><tr><td>
63 <input type="text" value="" id="ruleName" name="rule[name]" style="width: 100%;"
64 onfocus="text_onfocus(this,'<?php i18n('new_rule');?>')"
65 onblur="text_onblur(this,'<?php i18n('new_rule');?>')" />
66 </td></tr>
67 <tr class="impair"><th><?php i18n('filter_rule_conf');?>
68 </th></tr><tr class="impair"><td>
69 <input type="radio" value="1" id="ruleAll1" name="rule[all]" /><?php i18n('all_matches');?>
70 <input type="radio" value="0" id="ruleAll0" name="rule[all]" /><?php i18n('one_match');?>
71 <br />
72 <input type="checkbox" checked="checked" id="ruleBlock" name="rule[block]" />
73 <?php i18n('blocking_rule');?>
74 </td></tr><tr class="impair"><th><?php i18n('filter_matches_list');?>
75 </th></tr><tr class="impair"><td id="matchesRow">
76 </td></tr><tr class="impair"><th><?php i18n('filter_actions_list');?>
77 </th></tr><tr class="impair"><td id="actionsRow">
78 </td></tr><tr class="impair"><td>
79 <input type="hidden" value="0" id="ruleId" name="rule[id]" />
80 <input type="submit" value="<?php i18n('new_match');?>" name="rule[new_match]" onclick="newMatch() "/>
81 <input type="submit" value="<?php i18n('new_action');?>" name="rule[new_action]" onclick="newAction()" />
82 <input type="submit" value="<?php i18n('submit');?>" name="rule[submit]" onclick="this.form.submit()" />
83 </td></tr>
84 </table>
85 </form>
86 </td>
87 </tr>
88 </table>
89
90 <script type="text/javascript">
91 createRuleForm();
92 </script>