summaryrefslogtreecommitdiffstats
path: root/kamailio-listtables-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2014-06-30 18:43:17 +0000
committerTed Trask <ttrask01@yahoo.com>2014-06-30 18:43:17 +0000
commitd476c52adca9c1a2550b60cc49c4670cf3e800bd (patch)
treef02bcddbcc28cf96af2ede8423762b3eca3b755a /kamailio-listtables-html.lsp
parent1ef6dd7f0646e3e84f97d5c4a2047e9710853382 (diff)
downloadacf-kamailio-d476c52adca9c1a2550b60cc49c4670cf3e800bd.tar.bz2
acf-kamailio-d476c52adca9c1a2550b60cc49c4670cf3e800bd.tar.xz
Removed acf-db references and directly included functionality
The acf-db module is not complete and was not meant to be released yet
Diffstat (limited to 'kamailio-listtables-html.lsp')
-rw-r--r--kamailio-listtables-html.lsp54
1 files changed, 54 insertions, 0 deletions
diff --git a/kamailio-listtables-html.lsp b/kamailio-listtables-html.lsp
new file mode 100644
index 0000000..23ecfc4
--- /dev/null
+++ b/kamailio-listtables-html.lsp
@@ -0,0 +1,54 @@
+<% local form, viewlibrary, page_info, session = ... %>
+<% htmlviewfunctions = require("htmlviewfunctions") %>
+<% html = require("acf.html") %>
+
+<% if #form.value>0 then %>
+<script type="text/javascript">
+ if (typeof jQuery == 'undefined') {
+ document.write('<script type="text/javascript" src="<%= html.html_escape(page_info.wwwprefix) %>/js/jquery-latest.js"><\/script>');
+ }
+</script>
+
+<script type="text/javascript">
+ if (typeof $.tablesorter == 'undefined') {
+ document.write('<script type="text/javascript" src="<%= html.html_escape(page_info.wwwprefix) %>/js/jquery.tablesorter.js"><\/script>');
+ }
+</script>
+
+<script type="text/javascript">
+ $(document).ready(function() {
+ $("#listtables").tablesorter({headers: {0:{sorter: false}}, widgets: ['zebra']});
+ });
+</script>
+<% end %>
+
+<% htmlviewfunctions.displaycommandresults({"createdatabase"}, session) %>
+
+<% local header_level = htmlviewfunctions.displaysectionstart(form, page_info) %>
+<% htmlviewfunctions.displayinfo(form) %>
+<% if #form.value>0 then %>
+<table id="listtables" class="tablesorter"><thead>
+ <tr>
+ <th>Action</th>
+ <th>Table</th>
+ </tr>
+</thead><tbody>
+<% local table = cfe({ type="hidden" }) %>
+<% for i,tab in ipairs(form.value) do %>
+ <% table.value = tab %>
+ <tr>
+ <td>
+ <% if viewlibrary.check_permission("viewtable") then %>
+ <% htmlviewfunctions.displayitem(cfe({type="link", value={table=table}, label="", option="View", action="viewtable"}), page_info, -1) %>
+ <% end %>
+ </td>
+ <td><%= html.html_escape(tab) %></td>
+ </tr>
+<% end %>
+</tbody></table>
+<% elseif viewlibrary.check_permission("createdatabase") then %>
+ <% htmlviewfunctions.displayitem(cfe({type="form", value={}, label="Create Database", option="Create", action="createdatabase" }), page_info, 0) %>
+<% else %>
+<p>No tables found</p>
+<% end %>
+<% htmlviewfunctions.displaysectionend(header_level) %>