simplifications
[old-projects.git] / philter / philter / include / plugin_autoreply.inc.php
CommitLineData
dd8de1ec
PH
1<?php
2/********************************************************************************
3* include/plugin_autoreply.inc.php : The class for auto-replies
4* --------------------------------
5*
6* This file is part of the philter distribution
7* Copyright: See COPYING files that comes with this distribution
8********************************************************************************/
9
10class AutoReplyPlugin extends ActionPlugin {
11 function FwdPlugin() { $this->ActionPlugin(); }
12 function rtti() { return 2; }
5ae3e923 13 function name() { return _i18n('2_auto_reply'); }
dd8de1ec
PH
14
15 function to_js() {
16 $res = "function(Node, data) {\n"
17 . " var i,j;\n"
18 . " var ta = document.createElement('textarea');\n"
19 . " ta.setAttribute('name', Node.name+'[1]');\n"
a33c86a6 20 . " ta.setAttribute('style', 'width:100%;');\n"
8294c7d2 21 . " ta.setAttribute('rows', '10');\n"
dd8de1ec
PH
22 . " if(data[1]) ta.value = data[1];\n"
23 . "\n"
24 . " Node.appendChild(document.createElement('br'));\n"
dd8de1ec
PH
25 . " Node.appendChild(ta);\n"
26 . "}";
27
28 return $res;
29 }
30}
31
32/********************************************************************************
33* $Id$
34* vim: set expandtab shiftwidth=4 tabstop=4 softtabstop=4 textwidth=100:
35********************************************************************************/
36?>