philter is fully compatible with : IE 6.0+, Opera 7.0+, Konqueror 3.1.99+,
[old-projects.git] / philter / philter / include / plugin_forward.inc.php
CommitLineData
dd8de1ec
PH
1<?php
2/********************************************************************************
3* include/plugin_forward.inc.php : The class for forwards
4* ------------------------------
5*
6* This file is part of the philter distribution
7* Copyright: See COPYING files that comes with this distribution
8********************************************************************************/
9
10class FwdPlugin extends ActionPlugin {
11 function FwdPlugin() { $this->ActionPlugin(); }
12 function rtti() { return 1; }
13 function name() { return "Forward To"; }
14
15 function to_js() {
16 $res = "function(Node, data) {\n"
17 . " var i,j;\n"
8294c7d2 18 . " var sel = 0;\n"
dd8de1ec
PH
19 . " var select = document.createElement('select');\n"
20 . " select.setAttribute('name', Node.name+'[1]');\n"
21 . "\n"
8294c7d2
PH
22 . " for(i=0,j=0; i<mail_pool.length; i++) {\n"
23 . " if(data[1]==i) sel = j;\n"
dd8de1ec
PH
24 . " if(mail_pool[i])\n"
25 . " select.options[j++] = new Option(mail_pool[i],i,false,(data[1]==i));\n"
8294c7d2
PH
26 . " }\n"
27 . " select.selectedIndex = sel;\n"
dd8de1ec
PH
28 . "\n"
29 . " Node.appendChild(document.createTextNode(' email : '));\n"
30 . " Node.appendChild(select);\n"
31 . "}";
32
33 return $res;
34 }
dd8de1ec
PH
35}
36
37/********************************************************************************
38* $Id$
39* vim: set expandtab shiftwidth=4 tabstop=4 softtabstop=4 textwidth=100:
40********************************************************************************/
41?>