Files
fusionpbx/core/contacts/contact_relations.php
T

132 lines
5.0 KiB
PHP
Raw Normal View History

2016-04-25 20:30:23 -05: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>
2024-09-05 16:10:04 -07:00
Portions created by the Initial Developer are Copyright (C) 2008-2024
2016-04-25 20:30:23 -05:00
the Initial Developer. All Rights Reserved.
Contributor(s):
Mark J Crane <markjcrane@fusionpbx.com>
*/
2018-06-08 00:23:30 -06:00
2022-10-10 16:35:14 -06:00
//includes files
2023-06-15 14:28:23 -03:00
require_once dirname(__DIR__, 2) . "/resources/require.php";
2018-06-08 00:23:30 -06:00
require_once "resources/check_auth.php";
//check permissions
if (permission_exists('contact_relation_view')) {
//access granted
}
else {
echo "access denied";
exit;
}
2023-06-01 11:50:12 -06:00
//set from session variables
2025-03-04 14:25:47 -04:00
$list_row_edit_button = filter_var($_SESSION['theme']['list_row_edit_button']['boolean'] ?? false, FILTER_VALIDATE_BOOL);
2023-06-01 11:50:12 -06:00
2018-06-08 00:23:30 -06:00
//get the related contacts
$sql = "select ";
$sql .= "cr.contact_relation_uuid, ";
$sql .= "cr.relation_label, ";
$sql .= "c.contact_uuid, ";
$sql .= "c.contact_organization, ";
$sql .= "c.contact_name_given, ";
$sql .= "c.contact_name_family ";
$sql .= "from ";
$sql .= "v_contact_relations as cr, ";
$sql .= "v_contacts as c ";
$sql .= "where ";
$sql .= "cr.relation_contact_uuid = c.contact_uuid ";
2019-07-26 22:43:33 -06:00
$sql .= "and cr.domain_uuid = :domain_uuid ";
$sql .= "and cr.contact_uuid = :contact_uuid ";
2018-06-08 00:23:30 -06:00
$sql .= "order by ";
$sql .= "c.contact_organization desc, ";
$sql .= "c.contact_name_given asc, ";
$sql .= "c.contact_name_family asc ";
2019-07-26 22:43:33 -06:00
$parameters['domain_uuid'] = $_SESSION['domain_uuid'];
2023-06-01 11:50:12 -06:00
$parameters['contact_uuid'] = $contact_uuid ?? '';
2019-07-26 22:43:33 -06:00
$database = new database;
$contact_relations = $database->select($sql, $parameters, 'all');
unset($sql, $parameters);
2018-06-08 00:23:30 -06:00
//show if exists
2023-06-01 11:50:12 -06:00
if (!empty($contact_relations)) {
2016-04-25 20:30:23 -05:00
//show the content
echo "<div class='action_bar sub shrink'>\n";
echo " <div class='heading'><b>".$text['header-contact_relations']."</b></div>\n";
echo " <div style='clear: both;'></div>\n";
echo "</div>\n";
2016-04-25 20:30:23 -05:00
2024-09-05 16:10:04 -07:00
echo "<div class='card'>\n";
echo "<table class='list'>\n";
echo "<tr class='list-header'>\n";
2016-04-25 20:30:23 -05:00
if (permission_exists('contact_relation_delete')) {
echo " <th class='checkbox'>\n";
2023-06-01 11:50:12 -06:00
echo " <input type='checkbox' id='checkbox_all_relations' name='checkbox_all' onclick=\"edit_all_toggle('relations');\" ".(!empty($contact_relations) ?: "style='visibility: hidden;'").">\n";
echo " </th>\n";
}
echo "<th>".$text['label-contact_relation_label']."</th>\n";
echo "<th>".$text['label-contact_relation_organization']."</th>\n";
echo "<th>".$text['label-contact_relation_name']."</th>\n";
2025-03-04 14:25:47 -04:00
if (permission_exists('contact_relation_edit') && $list_row_edit_button) {
echo " <td class='action-button'>&nbsp;</td>\n";
2016-04-25 20:30:23 -05:00
}
echo "</tr>\n";
2023-06-01 11:50:12 -06:00
if (!empty($contact_relations)) {
$x = 0;
foreach ($contact_relations as $row) {
$list_row_url = '';
if (permission_exists('contact_relation_edit')) {
$list_row_url = "contact_relation_edit.php?contact_uuid=".urlencode($contact_uuid)."&id=".urlencode($row['contact_relation_uuid']);
if ($row['domain_uuid'] != $_SESSION['domain_uuid'] && permission_exists('domain_select')) {
$list_row_url .= '&domain_uuid='.urlencode($row['domain_uuid']).'&domain_change=true';
}
}
echo "<tr class='list-row' href='".$list_row_url."'>\n";
if (permission_exists('contact_relation_delete')) {
echo " <td class='checkbox'>\n";
echo " <input type='checkbox' name='contact_relations[$x][checked]' id='checkbox_".$x."' class='chk_delete checkbox_relations' value='true' onclick=\"edit_delete_action('relations');\">\n";
echo " <input type='hidden' name='contact_relations[$x][uuid]' value='".escape($row['contact_relation_uuid'])."' />\n";
echo " </td>\n";
}
echo " <td>".escape($row['relation_label'])."&nbsp;</td>\n";
echo " <td class='no-link'><a href='contact_edit.php?id=".urlencode($row['contact_uuid'])."'>".escape($row['contact_organization'])."</a>&nbsp;</td>\n";
2023-06-01 11:50:12 -06:00
echo " <td class='no-link'><a href='contact_edit.php?id=".urlencode($row['contact_uuid'])."'>".escape($row['contact_name_given']).((!empty($row['contact_name_given']) && !empty($row['contact_name_family'])) ? ' ' : null).escape($row['contact_name_family'])."</a>&nbsp;</td>\n";
2025-03-04 14:25:47 -04:00
if (permission_exists('contact_relation_edit') && $list_row_edit_button) {
echo " <td class='action-button'>\n";
echo button::create(['type'=>'button','title'=>$text['button-edit'],'icon'=>$_SESSION['theme']['button_icon_edit'],'link'=>$list_row_url]);
echo " </td>\n";
}
echo "</tr>\n";
$x++;
}
unset($contact_relations);
}
echo "</table>";
2024-09-05 16:10:04 -07:00
echo "</div>\n";
echo "<br />\n";
}
2016-04-25 20:30:23 -05:00
2023-06-01 11:50:12 -06:00
?>