ispman/ispman-web/cgi-bin/tmpl/databases add.tmpl, 1.5, 1.6

Joerg Delker <[email protected]> Sat, 03 Jan 2009 12:21:07 +0000
Newsgroups gmane.comp.isp.ispman.cvs
Message-ID <[email protected]>
Update of /cvsroot/ispman/ispman/ispman-web/cgi-bin/tmpl/databases
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv19854/ispman-web/cgi-bin/tmpl/databases

Modified Files:
	add.tmpl 
Log Message:
added database sql action feature

Index: add.tmpl
===================================================================
RCS file: /cvsroot/ispman/ispman/ispman-web/cgi-bin/tmpl/databases/add.tmpl,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- add.tmpl	3 Jan 2009 11:19:00 -0000	1.5
+++ add.tmpl	3 Jan 2009 12:21:05 -0000	1.6
@@ -130,6 +130,21 @@
   </tr>
 
   <tr>
+    <td>SQL actions</td>
+    <td>
+      <perl>
+        my @actions=split ',',$ispman->getConf("dbSQLActions");
+        my $out="";
+        for (@actions) {
+          /(.*)\|(.*)/;
+          $out .= qq|<input type="checkbox" name="sqlActions" value="$1">$2<br>| unless $1 eq "none";
+        }
+        $out
+      </perl>
+    </td>
+  </tr>
+
+  <tr>
     <td></td>
     <td id="buttons" colspan=2>
          <input type=button class="button" onClick="document.forms[0].reset()" value="Reset">


------------------------------------------------------------------------------