2012-12-29 10:17:12 +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>
|
2015-04-06 23:58:55 +02:00
|
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2015
|
2012-12-29 10:17:12 +01:00
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
*/
|
|
|
|
|
require_once "root.php";
|
2013-07-06 08:03:27 +02:00
|
|
|
require_once "resources/require.php";
|
2013-07-06 07:50:55 +02:00
|
|
|
require_once "resources/check_auth.php";
|
2012-12-29 10:17:12 +01:00
|
|
|
if (permission_exists('voicemail_view')) {
|
|
|
|
|
//access granted
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
2014-11-15 01:16:29 +01:00
|
|
|
|
2012-12-29 10:17:12 +01:00
|
|
|
//add multi-lingual support
|
2015-01-18 11:04:43 +01:00
|
|
|
$language = new text;
|
|
|
|
|
$text = $language->get();
|
2012-12-29 10:17:12 +01:00
|
|
|
|
2015-04-06 23:57:06 +02:00
|
|
|
//set the voicemail id and voicemail uuid arrays
|
|
|
|
|
foreach ($_SESSION['user']['extension'] as $index => $row) {
|
2014-11-15 01:16:29 +01:00
|
|
|
if (strlen($row['number_alias']) > 0) {
|
2015-04-06 23:57:06 +02:00
|
|
|
$voicemail_ids[$index]['voicemail_id'] = $row['number_alias'];
|
2014-11-15 01:16:29 +01:00
|
|
|
}
|
|
|
|
|
else {
|
2015-04-06 23:57:06 +02:00
|
|
|
$voicemail_ids[$index]['voicemail_id'] = $row['user'];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
foreach ($_SESSION['user']['voicemail'] as $row) {
|
|
|
|
|
if (strlen($row['voicemail_uuid']) > 0) {
|
|
|
|
|
$voicemail_uuids[]['voicemail_uuid'] = $row['voicemail_uuid'];
|
2014-11-15 01:16:29 +01:00
|
|
|
}
|
2013-11-20 23:27:56 +01:00
|
|
|
}
|
2012-12-29 10:17:12 +01:00
|
|
|
|
|
|
|
|
//additional includes
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/header.php";
|
|
|
|
|
require_once "resources/paging.php";
|
2012-12-29 10:17:12 +01:00
|
|
|
|
|
|
|
|
//show the content
|
2015-02-15 05:54:32 +01:00
|
|
|
echo "<table width='100%' cellpadding='0' cellspacing='0' border='0'>\n";
|
2012-12-29 10:17:12 +01:00
|
|
|
echo " <tr>\n";
|
2015-02-15 05:54:32 +01:00
|
|
|
echo " <td width='50%' align='left' nowrap='nowrap' valign='top'>";
|
|
|
|
|
echo " <b>".$text['title-voicemails']."</b>";
|
|
|
|
|
echo " <br /><br />";
|
|
|
|
|
echo " ".$text['description-voicemail'];
|
|
|
|
|
echo " <br /><br />";
|
|
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " <td width='30%' align='right' valign='top'>\n";
|
|
|
|
|
echo " <form method='get' action=''>\n";
|
|
|
|
|
echo " <input type='text' class='txt' style='width: 150px' name='search' value='".$search."'>";
|
2014-05-02 11:11:52 +02:00
|
|
|
echo " <input type='submit' class='btn' name='submit' value='".$text['button-search']."'>";
|
2015-02-15 05:54:32 +01:00
|
|
|
echo " </form>\n";
|
2014-05-02 11:11:52 +02:00
|
|
|
echo " </td>\n";
|
2012-12-29 10:17:12 +01:00
|
|
|
echo " </tr>\n";
|
|
|
|
|
echo "</table>\n";
|
|
|
|
|
|
|
|
|
|
//prepare to page the results
|
|
|
|
|
$sql = "select count(*) as num_rows from v_voicemails ";
|
|
|
|
|
$sql .= "where domain_uuid = '$domain_uuid' ";
|
2014-05-02 11:11:52 +02:00
|
|
|
if (strlen($search) > 0) {
|
|
|
|
|
$sql .= "and (";
|
|
|
|
|
$sql .= " voicemail_id like '%".$search."%' ";
|
|
|
|
|
$sql .= " or voicemail_mail_to like '%".$search."%' ";
|
|
|
|
|
$sql .= " or voicemail_local_after_email like '%".$search."%' ";
|
|
|
|
|
$sql .= " or voicemail_enabled like '%".$search."%' ";
|
|
|
|
|
$sql .= " or voicemail_description like '%".$search."%' ";
|
|
|
|
|
$sql .= ") ";
|
|
|
|
|
}
|
2013-11-20 23:27:56 +01:00
|
|
|
if (!permission_exists('voicemail_delete')) {
|
|
|
|
|
$x = 0;
|
2015-04-06 23:57:06 +02:00
|
|
|
if (count($voicemail_uuids) > 0) {
|
2013-11-20 23:27:56 +01:00
|
|
|
$sql .= "and (";
|
2015-04-06 23:57:06 +02:00
|
|
|
foreach($voicemail_uuids as $row) {
|
2013-11-20 23:27:56 +01:00
|
|
|
if ($x == 0) {
|
2015-04-06 23:57:06 +02:00
|
|
|
$sql .= "voicemail_uuid = '".$row['voicemail_uuid']."' ";
|
2013-11-20 23:27:56 +01:00
|
|
|
}
|
|
|
|
|
else {
|
2015-04-06 23:57:06 +02:00
|
|
|
$sql .= " or voicemail_uuid = '".$row['voicemail_uuid']."'";
|
2013-11-20 23:27:56 +01:00
|
|
|
}
|
|
|
|
|
$x++;
|
|
|
|
|
}
|
|
|
|
|
$sql .= ")";
|
|
|
|
|
}
|
2015-04-06 23:57:06 +02:00
|
|
|
else {
|
|
|
|
|
$sql .= "and voicemail_uuid is null ";
|
|
|
|
|
}
|
2013-11-20 23:27:56 +01:00
|
|
|
}
|
2012-12-29 10:17:12 +01:00
|
|
|
$prep_statement = $db->prepare($sql);
|
|
|
|
|
if ($prep_statement) {
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$row = $prep_statement->fetch(PDO::FETCH_ASSOC);
|
|
|
|
|
if ($row['num_rows'] > 0) {
|
|
|
|
|
$num_rows = $row['num_rows'];
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$num_rows = '0';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//prepare to page the results
|
2013-01-25 00:01:09 +01:00
|
|
|
$rows_per_page = 150;
|
2012-12-29 10:17:12 +01:00
|
|
|
$param = "";
|
2015-04-06 23:57:06 +02:00
|
|
|
if ($search != '') { $param .= "&search=".$search; }
|
|
|
|
|
if ($order_by != '') { $param .= "&order_by=".$order_by."&order=".$order; }
|
2012-12-29 10:17:12 +01:00
|
|
|
$page = $_GET['page'];
|
2014-02-26 06:53:22 +01:00
|
|
|
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;
|
2012-12-29 10:17:12 +01:00
|
|
|
|
|
|
|
|
//get the list
|
2015-04-06 23:57:06 +02:00
|
|
|
$sql = str_replace('count(*) as num_rows', '*', $sql);
|
|
|
|
|
$sql .= ($order_by != '') ? "order by ".$order_by." ".$order." " : "order by voicemail_id asc ";
|
|
|
|
|
$sql .= "limit ".$rows_per_page." offset ".$offset." ";
|
2012-12-29 10:17:12 +01:00
|
|
|
$prep_statement = $db->prepare(check_sql($sql));
|
|
|
|
|
$prep_statement->execute();
|
|
|
|
|
$result = $prep_statement->fetchAll(PDO::FETCH_NAMED);
|
|
|
|
|
$result_count = count($result);
|
|
|
|
|
unset ($prep_statement, $sql);
|
|
|
|
|
|
|
|
|
|
$c = 0;
|
|
|
|
|
$row_style["0"] = "row_style0";
|
|
|
|
|
$row_style["1"] = "row_style1";
|
|
|
|
|
|
|
|
|
|
if ($result_count > 0) {
|
2015-04-06 23:57:06 +02:00
|
|
|
|
|
|
|
|
echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
|
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo th_order_by('voicemail_id', $text['label-voicemail_id'], $order_by, $order);
|
|
|
|
|
echo th_order_by('voicemail_mail_to', $text['label-voicemail_mail_to'], $order_by, $order);
|
|
|
|
|
echo th_order_by('voicemail_file', $text['label-voicemail_file_attached'], $order_by, $order);
|
|
|
|
|
echo th_order_by('voicemail_local_after_email', $text['label-voicemail_local_after_email'], $order_by, $order);
|
|
|
|
|
echo "<th>".$text['label-tools']."</th>\n";
|
|
|
|
|
echo th_order_by('voicemail_enabled', $text['label-voicemail_enabled'], $order_by, $order);
|
|
|
|
|
echo th_order_by('voicemail_description', $text['label-voicemail_description'], $order_by, $order);
|
|
|
|
|
if (permission_exists('voicemail_add') || permission_exists('voicemail_edit') || permission_exists('voicemail_delete')) {
|
|
|
|
|
echo "<td class='list_control_icons' style='width: 25px;'>";
|
|
|
|
|
if (permission_exists('voicemail_add')) {
|
|
|
|
|
echo "<a href='voicemail_edit.php' alt='".$text['button-add']."'>$v_link_label_add</a>";
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo " ";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
2012-12-29 10:17:12 +01:00
|
|
|
foreach($result as $row) {
|
2014-06-22 06:34:19 +02:00
|
|
|
$tr_link = (permission_exists('voicemail_edit')) ? "href='voicemail_edit.php?id=".$row['voicemail_uuid']."'" : null;
|
|
|
|
|
echo "<tr ".$tr_link.">\n";
|
2014-06-21 05:42:09 +02:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>";
|
|
|
|
|
if (permission_exists('voicemail_edit')) {
|
|
|
|
|
echo "<a href='voicemail_edit.php?id=".$row['voicemail_uuid']."'>".$row['voicemail_id']."</a>";
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo $row['voicemail_id'];
|
|
|
|
|
}
|
|
|
|
|
echo " </td>\n";
|
2012-12-29 10:17:12 +01:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".$row['voicemail_mail_to']." </td>\n";
|
2015-02-24 09:09:01 +01:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".(($row['voicemail_file'] == 'attach') ? $text['label-true'] : $text['label-false'])."</td>\n";
|
2014-06-21 05:42:09 +02:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".ucwords($row['voicemail_local_after_email'])." </td>\n";
|
2014-02-26 06:53:22 +01:00
|
|
|
echo " <td valign='middle' class='".$row_style[$c]."' style='white-space: nowrap;'>\n";
|
2015-04-06 23:57:06 +02:00
|
|
|
if (permission_exists('voicemail_message_view')) {
|
|
|
|
|
echo " <a href='voicemail_messages.php?id=".$row['voicemail_uuid']."'>".$text['label-view']."</a> \n";
|
|
|
|
|
}
|
|
|
|
|
if (permission_exists('voicemail_greeting_view')) {
|
|
|
|
|
echo " <a href='".PROJECT_PATH."/app/voicemail_greetings/voicemail_greetings.php?id=".$row['voicemail_id']."'>".$text['label-greetings']."</a>\n";
|
|
|
|
|
}
|
2012-12-30 01:58:17 +01:00
|
|
|
echo " </td>\n";
|
2014-06-21 05:42:09 +02:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".ucwords($row['voicemail_enabled'])." </td>\n";
|
2012-12-30 01:58:17 +01:00
|
|
|
echo " <td valign='top' class='row_stylebg' width='30%'>".$row['voicemail_description']." </td>\n";
|
2015-04-06 23:57:06 +02:00
|
|
|
if (permission_exists('voicemail_edit') || permission_exists('voicemail_delete')) {
|
|
|
|
|
echo " <td class='list_control_icons' style='width: 25px;'>";
|
|
|
|
|
if (permission_exists('voicemail_edit')) {
|
|
|
|
|
echo "<a href='voicemail_edit.php?id=".$row['voicemail_uuid']."' alt='".$text['button-edit']."'>$v_link_label_edit</a>";
|
|
|
|
|
}
|
|
|
|
|
if (permission_exists('voicemail_delete')) {
|
|
|
|
|
echo "<a href='voicemail_delete.php?id=".$row['voicemail_uuid']."' alt='".$text['button-delete']."' onclick=\"return confirm('".$text['confirm-delete']."')\">$v_link_label_delete</a>";
|
|
|
|
|
}
|
|
|
|
|
echo " </td>\n";
|
2012-12-29 10:17:12 +01:00
|
|
|
}
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
if ($c==0) { $c=1; } else { $c=0; }
|
|
|
|
|
} //end foreach
|
|
|
|
|
unset($sql, $result, $row_count);
|
|
|
|
|
|
2015-04-06 23:57:06 +02:00
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo "<td colspan='11' align='left'>\n";
|
|
|
|
|
echo " <table width='100%' cellpadding='0' cellspacing='0'>\n";
|
|
|
|
|
echo " <tr>\n";
|
|
|
|
|
echo " <td width='33.3%' nowrap='nowrap'> </td>\n";
|
|
|
|
|
echo " <td width='33.3%' align='center' nowrap='nowrap'>$paging_controls</td>\n";
|
|
|
|
|
echo " <td class='list_control_icons'>";
|
|
|
|
|
if (permission_exists('voicemail_add')) {
|
|
|
|
|
echo "<a href='voicemail_edit.php' alt='".$text['button-add']."'>$v_link_label_add</a>";
|
|
|
|
|
}
|
|
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " </tr>\n";
|
|
|
|
|
echo " </table>\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
|
|
|
|
|
echo "</table>";
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "<br />";
|
|
|
|
|
echo $text['message-mailbox_not_found'];
|
2012-12-29 10:17:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
echo "<br /><br />";
|
|
|
|
|
|
|
|
|
|
//include the footer
|
2013-07-06 08:29:50 +02:00
|
|
|
require_once "resources/footer.php";
|
2012-12-29 10:17:12 +01:00
|
|
|
?>
|