Fix a bunch of plugins to cope with moved load_prefs/validate files.
[squirrelmail.git] / plugins / listcommands / setup.php
CommitLineData
73ee43b1 1<?php
519f07d7 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.
73ee43b1 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 *
519f07d7 14 * $Id$
73ee43b1 15 */
519f07d7 16
17function squirrelmail_plugin_init_listcommands () {
73ee43b1 18 global $squirrelmail_plugin_hooks;
19
20 $squirrelmail_plugin_hooks['read_body_header']['listcommands'] = 'plugin_listcommands_menu';
21}
22
d54c9a9c 23function plugin_listcommands_menu() {
83feb57a 24 global $passed_id, $passed_ent_id, $color, $mailbox,
25 $message, $compose_new_win;
73ee43b1 26
d54c9a9c 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.
73ee43b1 30 */
83feb57a 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"));
ff5d0719 38 $output = array();
83feb57a 39
40 foreach ($message->rfc822_header->mlist as $cmd => $actions) {
41
42 /* I don't know this action... skip it */
98c20774 43 /* grrr PHP keeps changing their syntax... */
44 if( function_exists('array_key_exists') ) {
45 if(!array_key_exists($cmd, $fieldsdescr)) {
46 continue;
47 }
48 } elseif ( !key_exists($cmd, $fieldsdescr) ) {
83feb57a 49 continue;
d54c9a9c 50 }
d54c9a9c 51
83feb57a 52 /* proto = {mailto,href} */
53 $proto = array_shift(array_keys($actions));
54 $act = array_shift($actions);
73ee43b1 55
83feb57a 56 if ($proto == 'mailto') {
050722c4 57
83feb57a 58 if (($cmd == 'post') || ($cmd == 'owner')) {
73ee43b1 59 $url = 'compose.php?';
050722c4 60 } else {
f6f50b4d 61 $url = "../plugins/listcommands/mailout.php?action=$cmd&amp;";
73ee43b1 62 }
83feb57a 63 $url .= 'send_to=' . strtr($act,'?','&');
050722c4 64
9c3e6cd4 65 if ($compose_new_win == '1') {
d6ba3a2d 66 $output[] = "<a href=\"javascript:void(0)\" onclick=\"comp_in_new('$url')\">" . $fieldsdescr[$cmd] . '</A>';
9c3e6cd4 67 }
68 else {
69 $output[] = '<A HREF="' . $url . '">' . $fieldsdescr[$cmd] . '</A>';
70 }
83feb57a 71 if ($cmd == 'post') {
d6ba3a2d 72 $url .= '&amp;passed_id='.$passed_id.
73 '&amp;mailbox='.urlencode($mailbox).
74 (isset($passed_ent_id)?'&amp;passed_ent_id='.$passed_ent_id:'');
75 $url .= '&amp;action=reply';
91e33f2c 76 if ($compose_new_win == '1') {
83feb57a 77 $output[] = "<A HREF=\"javascript:void(0)\" onClick=\"comp_in_new('$url')\">" . $fieldsdescr['reply'] . '</A>';
9feb4369 78 } else {
83feb57a 79 $output[] = '<A HREF="' . $url . '">' . $fieldsdescr['reply'] . '</A>';
91e33f2c 80 }
9c3e6cd4 81 }
9feb4369 82 } else if ($proto == 'href') {
83feb57a 83 $output[] = '<A HREF="' . $act . '" TARGET="_blank">'
d54c9a9c 84 . $fieldsdescr[$cmd] . '</A>';
73ee43b1 85 }
73ee43b1 86 }
87
73ee43b1 88 if (count($output) > 0) {
9feb4369 89 echo '<TR>';
90 echo html_tag('TD', '<B>' . _("Mailing List") . ':&nbsp;&nbsp;</B>',
91 'right', '', 'VALIGN="MIDDLE" WIDTH="20%"') . "\n";
92 echo html_tag('TD', '<SMALL>' . implode('&nbsp;|&nbsp;', $output) . '</small>',
93 'left', $color[0], 'VALIGN="MIDDLE" WIDTH="80%"') . "\n";
94 echo "</TR>";
73ee43b1 95 }
050722c4 96}
d54c9a9c 97
98?>