fusionpbx/app/email_templates/email_templates.php

262 lines
9.9 KiB
PHP
Raw Normal View History

2017-12-17 09:51:29 +01:00
<?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 <markjcrane@fusionpbx.com>
2018-04-03 09:09:42 +02:00
Portions created by the Initial Developer are Copyright (C) 2016-2018
2017-12-17 09:51:29 +01:00
the Initial Developer. All Rights Reserved.
*/
//includes
require_once "root.php";
require_once "resources/require.php";
//check permissions
require_once "resources/check_auth.php";
if (permission_exists('email_template_view')) {
//access granted
}
else {
echo "access denied";
exit;
}
//add multi-lingual support
$language = new text;
$text = $language->get();
//get the action
if (is_array($_POST["email_templates"])) {
$email_templates = $_POST["email_templates"];
foreach($email_templates as $row) {
if ($row['action'] == 'delete') {
$action = 'delete';
break;
}
}
}
//delete the email_templates
if (permission_exists('email_template_delete')) {
if ($action == "delete") {
//download
$obj = new email_templates;
$obj->delete($email_templates);
//redirect
2018-08-31 05:09:01 +02:00
message::add($text['message-delete']);
header('Location: '.$_SERVER['PHP_SELF']);
exit;
2017-12-17 09:51:29 +01:00
}
}
//get variables used to control the order
$order_by = $_GET["order_by"];
$order = $_GET["order"];
2017-12-17 09:51:29 +01:00
//add the search term
$search = strtolower($_GET["search"]);
2017-12-17 09:51:29 +01:00
if (strlen($search) > 0) {
$sql_search = " (";
$sql_search .= " lower(template_language) like :search ";
$sql_search .= " or lower(template_category) like :search ";
$sql_search .= " or lower(template_subcategory) like :search ";
//$sql_search .= " or lower(template_subject) like :search ";
//$sql_search .= " or lower(template_body) like :search ";
$sql_search .= " or lower(template_type) like :search ";
$sql_search .= " or lower(template_enabled) like :search ";
$sql_search .= " or lower(template_description) like :search ";
2017-12-17 09:51:29 +01:00
$sql_search .= ") ";
$parameters['search'] = '%'.$search.'%';
2017-12-17 09:51:29 +01:00
}
//additional includes
require_once "resources/header.php";
require_once "resources/paging.php";
//prepare to page the results
$sql = "select count(*) from v_email_templates ";
2017-12-17 09:51:29 +01:00
if ($_GET['show'] == "all" && permission_exists('email_template_all')) {
if ($sql_search != '') {
2017-12-17 09:51:29 +01:00
$sql .= "where ".$sql_search;
}
}
else {
$sql .= "where (domain_uuid = :domain_uuid or domain_uuid is null) ";
if ($sql_search != '') {
$sql .= "and ".$sql_search;
2017-12-17 09:51:29 +01:00
}
$parameters['domain_uuid'] = $domain_uuid;
2017-12-17 09:51:29 +01:00
}
$database = new database;
$num_rows = $database->select($sql, $parameters, 'column');
2017-12-17 09:51:29 +01:00
//prepare to page the results
$rows_per_page = ($_SESSION['domain']['paging']['numeric'] != '') ? $_SESSION['domain']['paging']['numeric'] : 50;
$param = "";
$page = $_GET['page'];
if (strlen($page) == 0) { $page = 0; $_GET['page'] = 0; }
list($paging_controls, $rows_per_page, $var3) = paging($num_rows, $param, $rows_per_page);
$offset = $rows_per_page * $page;
//get the list
$sql = str_replace('count(*)', '*', $sql);
$sql .= order_by($order_by, $order, 'template_language', 'asc');
$sql .= limit_offset($rows_per_page, $offset);
$database = new database;
$result = $database->select($sql, $parameters, 'all');
unset($sql, $parameters);
2017-12-17 09:51:29 +01:00
//alternate the row style
$c = 0;
$row_style["0"] = "row_style0";
$row_style["1"] = "row_style1";
//define the checkbox_toggle function
echo "<script type=\"text/javascript\">\n";
echo " function checkbox_toggle(item) {\n";
echo " var inputs = document.getElementsByTagName(\"input\");\n";
echo " for (var i = 0, max = inputs.length; i < max; i++) {\n";
2018-06-30 19:14:55 +02:00
echo " if (inputs[i].type === 'checkbox') {\n";
echo " if (document.getElementById('checkbox_all').checked == true) {\n";
2017-12-17 09:51:29 +01:00
echo " inputs[i].checked = true;\n";
echo " }\n";
echo " else {\n";
echo " inputs[i].checked = false;\n";
echo " }\n";
echo " }\n";
echo " }\n";
echo " }\n";
echo "</script>\n";
//show the content
echo "<table width='100%' border='0'>\n";
echo " <tr>\n";
echo " <td width='50%' align='left' nowrap='nowrap'><b>".$text['title-email_templates']."</b></td>\n";
echo " <form method='get' action=''>\n";
echo " <td width='50%' style='vertical-align: top; text-align: right; white-space: nowrap;'>\n";
if (permission_exists('email_template_all')) {
if ($_GET['show'] == 'all') {
echo " <input type='hidden' name='show' value='all'>";
}
else {
echo " <input type='button' class='btn' value='".$text['button-show_all']."' onclick=\"window.location='email_templates.php?show=all';\">\n";
}
}
2018-06-30 19:14:55 +02:00
echo " <input type='text' class='txt' style='width: 150px' name='search' id='search' value='".escape($search)."'>\n";
2017-12-17 09:51:29 +01:00
echo " <input type='submit' class='btn' name='submit' value='".$text['button-search']."'>\n";
echo " </td>\n";
echo " </form>\n";
echo " </tr>\n";
echo "</table>\n";
echo "<form method='post' action=''>\n";
echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
echo "<tr>\n";
echo " <th style='width:30px;'>\n";
echo " <input type='checkbox' name='checkbox_all' id='checkbox_all' value='' onclick=\"checkbox_toggle();\">\n";
echo " </th>\n";
if ($_GET['show'] == "all" && permission_exists('email_template_all')) {
echo th_order_by('domain_name', $text['label-domain'], $order_by, $order, '', '', $param);
}
echo th_order_by('template_language', $text['label-template_language'], $order_by, $order);
echo th_order_by('template_category', $text['label-template_category'], $order_by, $order);
echo th_order_by('template_subcategory', $text['label-template_subcategory'], $order_by, $order);
//echo th_order_by('domain_uuid', $text['label-domain_uuid'], $order_by, $order);
2018-04-03 09:09:42 +02:00
echo th_order_by('template_type', $text['label-template_type'], $order_by, $order);
2017-12-17 09:51:29 +01:00
echo th_order_by('template_enabled', $text['label-template_enabled'], $order_by, $order);
echo th_order_by('template_description', $text['label-template_description'], $order_by, $order);
echo " <td class='list_control_icons'>";
if (permission_exists('email_template_add')) {
echo " <a href='email_template_edit.php' alt='".$text['button-add']."'>$v_link_label_add</a>";
}
else {
echo "&nbsp;\n";
}
echo " </td>\n";
echo "<tr>\n";
if (is_array($result) && @sizeof($result) != 0) {
2017-12-17 09:51:29 +01:00
$x = 0;
foreach($result as $row) {
if (permission_exists('email_template_edit')) {
2018-06-30 19:14:55 +02:00
$tr_link = "href='email_template_edit.php?id=".escape($row['email_template_uuid'])."'";
2017-12-17 09:51:29 +01:00
}
echo "<tr ".$tr_link.">\n";
echo " <td valign='top' class='".$row_style[$c]." tr_link_void' style='align: center; padding: 3px 3px 0px 8px;'>\n";
echo " <input type='checkbox' name=\"email_templates[$x][checked]\" id='checkbox_".$x."' value='true' onclick=\"if (!this.checked) { document.getElementById('chk_all_".$x."').checked = false; }\">\n";
2018-06-30 19:14:55 +02:00
echo " <input type='hidden' name=\"email_templates[$x][email_template_uuid]\" value='".escape($row['email_template_uuid'])."' />\n";
2017-12-17 09:51:29 +01:00
echo " </td>\n";
if ($_GET['show'] == "all" && permission_exists('email_template_all')) {
2017-12-17 10:14:49 +01:00
if (strlen($_SESSION['domains'][$row['domain_uuid']]['domain_name']) > 0) {
$domain = $_SESSION['domains'][$row['domain_uuid']]['domain_name'];
}
else {
$domain = $text['label-global'];
}
2018-06-30 19:14:55 +02:00
echo " <td valign='top' class='".$row_style[$c]."'>".escape($domain)."</td>\n";
2017-12-17 09:51:29 +01:00
}
2018-06-30 19:14:55 +02:00
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['template_language'])."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['template_category'])."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['template_subcategory'])."&nbsp;</td>\n";
//echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['template_subject'])."&nbsp;</td>\n";
//echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['template_body'])."&nbsp;</td>\n";
//echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['domain_uuid'])."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['template_type'])."&nbsp;</td>\n";
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['template_enabled'])."&nbsp;</td>\n";
echo " <td valign='top' class='row_stylebg'>".escape($row['template_description'])."&nbsp;</td>\n";
2017-12-17 09:51:29 +01:00
echo " <td class='list_control_icons'>";
if (permission_exists('email_template_edit')) {
2018-06-30 19:14:55 +02:00
echo "<a href='email_template_edit.php?id=".escape($row['email_template_uuid'])."' alt='".$text['button-edit']."'>$v_link_label_edit</a>";
2017-12-17 09:51:29 +01:00
}
if (permission_exists('email_template_delete')) {
2019-08-21 03:53:21 +02:00
echo "<button type='submit' class='btn btn-default list_control_icon' name=\"email_templates[$x][action]\" alt='".$text['button-delete']."' value='delete'><span class='fas fa-minus'></span></button>";
2017-12-17 09:51:29 +01:00
}
echo " </td>\n";
echo "</tr>\n";
$x++;
if ($c==0) { $c=1; } else { $c=0; }
}
}
unset($result, $row);
2017-12-17 09:51:29 +01:00
echo "<tr>\n";
echo "<td colspan='8' align='left'>\n";
echo " <table width='100%' cellpadding='0' cellspacing='0'>\n";
echo " <tr>\n";
echo " <td width='33.3%' nowrap='nowrap'>&nbsp;</td>\n";
echo " <td width='33.3%' align='center' nowrap='nowrap'>$paging_controls</td>\n";
echo " <td class='list_control_icons'>";
if (permission_exists('email_template_add')) {
echo "<a href='email_template_edit.php' alt='".$text['button-add']."'>$v_link_label_add</a>";
}
else {
echo "&nbsp;";
}
echo " </td>\n";
echo " </tr>\n";
echo " </table>\n";
echo "</td>\n";
echo "</tr>\n";
echo "</table>";
echo "</form>\n";
echo "<br /><br />";
//include the footer
require_once "resources/footer.php";
?>