i18n
[old-projects.git] / philter / philter / include / plugin_forward.inc.php
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
10 class FwdPlugin extends ActionPlugin {
11 function FwdPlugin() { $this->ActionPlugin(); }
12 function rtti() { return 1; }
13 function name() { return _i18n('1_fwd_to'); }
14
15 function to_js() {
16 $res = "function(Node, data) {\n"
17 . " var i,j;\n"
18 . " var sel = 0;\n"
19 . " var select = document.createElement('select');\n"
20 . " select.setAttribute('name', Node.name+'[1]');\n"
21 . "\n"
22 . " Node.appendChild(document.createTextNode('"._i18n('1_email')."'));\n"
23 // OG: must insert select node before creating options because of IE5 bug
24 . " Node.appendChild(select);\n"
25 . "\n"
26 . " for(i=0,j=0; i<mail_pool.length; i++) {\n"
27 . " if(data[1]==i) sel = j;\n"
28 . " if(mail_pool[i])\n"
29 . " select.options[j++] = new Option(mail_pool[i],i,false,(data[1]==i));\n"
30 . " }\n"
31 . " select.selectedIndex = sel;\n"
32 . "}";
33
34 return $res;
35 }
36 }
37
38 /********************************************************************************
39 * $Id$
40 * vim: set expandtab shiftwidth=4 tabstop=4 softtabstop=4 textwidth=100:
41 ********************************************************************************/
42 ?>