Initialize $output
[squirrelmail.git] / plugins / listcommands / setup.php
1 <?php
2
3 /**
4 * setup.php
5 *
6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Implementation of RFC 2369 for SquirrelMail.
10 * When viewing a message from a mailinglist complying with this RFC,
11 * this plugin displays a menu which gives the user a choice of mailinglist
12 * commands such as (un)subscribe, help and list archives.
13 *
14 * $Id$
15 */
16
17 function squirrelmail_plugin_init_listcommands () {
18 global $squirrelmail_plugin_hooks;
19
20 $squirrelmail_plugin_hooks['read_body_header']['listcommands'] = 'plugin_listcommands_menu';
21 }
22
23 function plugin_listcommands_menu() {
24 global $passed_id, $passed_ent_id, $color, $mailbox,
25 $message, $compose_new_win;
26
27 /**
28 * Array of commands we can deal with from the header. The Reply option
29 * is added later because we generate it using the Post information.
30 */
31 $fieldsdescr = array('post' => _("Post to List"),
32 'reply' => _("Reply to List"),
33 'subscribe' => _("Subscribe"),
34 'unsubscribe' => _("Unsubscribe"),
35 'archive' => _("List Archives"),
36 'owner' => _("Contact Listowner"),
37 'help' => _("Help"));
38 $output = array();
39
40 foreach ($message->rfc822_header->mlist as $cmd => $actions) {
41
42 /* I don't know this action... skip it */
43 if(!array_key_exists($cmd, $fieldsdescr)) {
44 continue;
45 }
46
47 /* proto = {mailto,href} */
48 $proto = array_shift(array_keys($actions));
49 $act = array_shift($actions);
50
51 if ($proto == 'mailto') {
52
53 if (($cmd == 'post') || ($cmd == 'owner')) {
54 $url = 'compose.php?';
55 } else {
56 $url = "../plugins/listcommands/mailout.php?action=$cmd&amp;";
57 }
58 $url .= 'send_to=' . strtr($act,'?','&');
59
60 if ($compose_new_win == '1') {
61 $output[] = "<a href=\"javascript:void(0)\" onclick=\"comp_in_new('$url')\">" . $fieldsdescr[$cmd] . '</A>';
62 }
63 else {
64 $output[] = '<A HREF="' . $url . '">' . $fieldsdescr[$cmd] . '</A>';
65 }
66 if ($cmd == 'post') {
67 $url .= '&amp;passed_id='.$passed_id.
68 '&amp;mailbox='.urlencode($mailbox).
69 (isset($passed_ent_id)?'&amp;passed_ent_id='.$passed_ent_id:'');
70 $url .= '&amp;action=reply';
71 if ($compose_new_win == '1') {
72 $output[] = "<A HREF=\"javascript:void(0)\" onClick=\"comp_in_new('$url')\">" . $fieldsdescr['reply'] . '</A>';
73 }
74 else {
75 $output[] = '<A HREF="' . $url . '">' . $fieldsdescr['reply'] . '</A>';
76 }
77 }
78 } elseif ($proto == 'href') {
79 $output[] = '<A HREF="' . $act . '" TARGET="_blank">'
80 . $fieldsdescr[$cmd] . '</A>';
81 }
82 }
83
84 if (count($output) > 0) {
85 echo '<table width="100%" cellpadding="3" cellspacing="0" align="center"'.
86 ' border="0" bgcolor="'.$color[0].'">'. "\n";
87 echo '<tr>';
88 echo html_tag( 'td', '<b>'._("Mailing List").':&nbsp;&nbsp;</b>', 'right', $color[0], 'valign="top" width="20%"') . "\n";
89 echo html_tag( 'td',
90 '<small>' . implode('&nbsp;|&nbsp;', $output) . '</small>', 'left', $color[0], 'valign="top" width="80%"');
91 echo "\n</tr>";
92 echo '</table>'."\n";
93 }
94 }
95
96 ?>