123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- <?php
- /*
- FusionPBX
- Version: MPL 1.1
- The contents of this file are subject to the Mozilla Public License Version
- 1.1 (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
- http://www.mozilla.org/MPL/
- Software distributed under the License is distributed on an "AS IS" basis,
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- for the specific language governing rights and limitations under the
- License.
- The Original Code is FusionPBX
- The Initial Developer of the Original Code is
- Mark J Crane <[email protected]>
- Portions created by the Initial Developer are Copyright (C) 2008-2010
- the Initial Developer. All Rights Reserved.
- Contributor(s):
- Mark J Crane <[email protected]>
- */
- include "root.php";
- require_once "includes/config.php";
- require_once "includes/checkauth.php";
- if (!ifgroup("superadmin")) {
- echo "access denied";
- exit;
- }
- require_once "includes/header.php";
- require_once "includes/paging.php";
- $orderby = $_GET["orderby"];
- $order = $_GET["order"];
- echo "<div align='center'>";
- echo "<table width='100%' border='0' cellpadding='0' cellspacing='2'>\n";
- echo "<tr class='border'>\n";
- echo " <td align=\"center\">\n";
- echo " <br>";
- echo "<table width='100%' border='0'><tr>\n";
- echo "<td width='50%' align='left' nowrap><b>Template List</b></td>\n";
- echo "<td width='50%' align='right'>\n";
- echo " <input type='button' class='btn' value='Restore Default' onclick=\"document.location.href='template_restore_default.php';\" />";
- echo "</td>\n";
- echo "<td width='35' nowrap></td>\n";
- echo "</tr></table>";
- $sql = "";
- $sql .= "select * from v_templates ";
- $sql .= "where domain_uuid = '$domain_uuid' ";
- if (strlen($orderby)> 0) { $sql .= "order by $orderby $order "; }
- $prepstatement = $db->prepare(check_sql($sql));
- $prepstatement->execute();
- $result = $prepstatement->fetchAll();
- $numrows = count($result);
- unset ($prepstatement, $result, $sql);
- $rowsperpage = 10;
- $param = "";
- $page = $_GET['page'];
- if (strlen($page) == 0) { $page = 0; $_GET['page'] = 0; }
- list($pagingcontrols, $rowsperpage, $var3) = paging($numrows, $param, $rowsperpage);
- $offset = $rowsperpage * $page;
- $sql = "";
- $sql .= "select * from v_templates ";
- $sql .= "where domain_uuid = '$domain_uuid' ";
- if (strlen($orderby)> 0) { $sql .= "order by $orderby $order "; }
- $sql .= " limit $rowsperpage offset $offset ";
- $prepstatement = $db->prepare(check_sql($sql));
- $prepstatement->execute();
- $result = $prepstatement->fetchAll();
- $resultcount = count($result);
- unset ($prepstatement, $sql);
- $c = 0;
- $rowstyle["0"] = "rowstyle0";
- $rowstyle["1"] = "rowstyle1";
- echo "<div align='center'>\n";
- echo "<table width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
- echo "<tr>\n";
- echo thorderby('templatename', 'Name', $orderby, $order);
- echo thorderby('templatedesc', 'Description', $orderby, $order);
- echo "<td align='right' width='42'>\n";
- echo " <a href='templates_edit.php' alt='add'>$v_link_label_add</a>\n";
- //echo " <input type='button' class='btn' name='' alt='add' onclick=\"window.location='templates_edit.php'\" value='+'>\n";
- echo "</td>\n";
- echo "<tr>\n";
- if ($resultcount == 0) { //no results
- }
- else { //received results
- foreach($result as $row) {
- //print_r( $row );
- echo "<tr >\n";
- echo " <td valign='top' class='".$rowstyle[$c]."'>".$row[templatename]." </td>\n";
- echo " <td valign='top' class='".$rowstyle[$c]."'>".$row[templatedesc]." </td>\n";
- echo " <td valign='top' align='right'>\n";
- echo " <a href='templates_edit.php?id=".$row[templateid]."' alt='edit'>$v_link_label_edit</a>\n";
- echo " <a href='templates_delete.php?id=".$row[templateid]."' alt='delete' onclick=\"return confirm('Do you really want to delete this?')\">$v_link_label_delete</a>\n";
- //echo " <input type='button' class='btn' name='' alt='edit' onclick=\"window.location='templates_edit.php?id=".$row[template_id]."'\" value='e'>\n";
- //echo " <input type='button' class='btn' name='' alt='delete' onclick=\"if (confirm('Are you sure you want to delete this?')) { window.location='templates_delete.php?id=".$row[template_id]."' }\" value='x'>\n";
- echo " </td>\n";
- echo "</tr>\n";
- if ($c==0) { $c=1; } else { $c=0; }
- } //end foreach
- unset($sql, $result, $rowcount);
- } //end if results
- echo "<tr>\n";
- echo "<td colspan='3' align='left'>\n";
- echo " <table width='100%' cellpadding='0' cellspacing='0'>\n";
- echo " <tr>\n";
- echo " <td width='33.3%' nowrap> </td>\n";
- echo " <td width='33.3%' align='center' nowrap>$pagingcontrols</td>\n";
- echo " <td width='33.3%' align='right'>\n";
- echo " <a href='templates_edit.php' alt='add'>$v_link_label_add</a>\n";
- //echo " <input type='button' class='btn' name='' alt='add' onclick=\"window.location='templates_edit.php'\" value='+'>\n";
- echo " </td>\n";
- echo " </tr>\n";
- echo " </table>\n";
- echo "</td>\n";
- echo "</tr>\n";
- echo "</table>";
- echo "</div>";
- echo "<br><br>";
- echo "<br><br>";
- echo "</td>";
- echo "</tr>";
- echo "</table>";
- echo "</div>";
- echo "<br><br>";
- require_once "includes/footer.php";
- unset ($resultcount);
- unset ($result);
- unset ($key);
- unset ($val);
- unset ($c);
- ?>
|