instructions misplacing
[old-projects.git] / philter / philter / include / form_emails.inc.php
CommitLineData
772509f3
PH
1<?php
2if(count($_POST)) { // a FORM has been submitted
3 if(isset($_POST['global'])) { // FORM global
4 foreach($philter->config['global_plugins'] as $id=>$g_plugin)
5 if(isset($_POST['global'][$id]))
6 $filter->set_global_data($id,$_POST['global'][$id]);
7 $filter->rules[0]->sql_store(get_user_id(),0);
8 }
9 if(isset($_POST['emails'])) // FORM emails
10 if(!$mail_pool->handle_form())
11 echo "<p style=\"color:red;\">".$philter->error()."</p>\n";
772509f3
PH
12}
13?>
b19786ca
PH
14<div class="rubrique"><?php i18n('global_title'); ?></div>
15<?php
16i18n('global_help');
17if(count($philter->config['global_plugins'])) {
18 echo "<form action=\"{$_SERVER['REQUEST_URI']}\" method=\"post\">\n"
19 ."<table width=\"95%\" class=\"bicol\" cellspacing=\"1\" cellpadding=\"1\" align=\"center\">\n";
20
21 $pair = 0;
22 foreach($philter->config['global_plugins'] as $id=>$g_plugin) {
23 echo "<tr><td class='".($pair ? 'pair':'impair')."'>\n";
24 echo $g_plugin->to_form($filter->get_global_data($id));
25 echo "</td></tr>\n";
26 $pair = 1 - $pair;
27 }
28
29 echo "</table><br />\n"
30 ."<center><input type='submit' name='global[submit]' value='"
31 ._i18n('apply_changes')."'/></center\n"
32 ."</form>\n";
33}
34
35/********** emails **********/
36?>
37<br />
38<div class="rubrique"><?php i18n('pool_title'); ?></div>
39<?php
40i18n('pool_help');
41echo $mail_pool->to_form();
42?>
43<div class="rubrique"><?php i18n('filter_adv'); ?></div>
44<?php i18n('filter_adv_txt'); ?>
772509f3 45<form action="<?php echo $_SERVER['REQUEST_URI'] ?>" method="post">
b19786ca
PH
46<center>
47 <input type="submit" value='<?php i18n('filter_adv') ?>' name='set_adv' />
48</center>
49</form>