2012-06-04 16:58:40 +02: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-06-30 18:09:35 +02:00
|
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2018
|
2012-06-04 16:58:40 +02:00
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
*/
|
2018-03-26 07:09:18 +02:00
|
|
|
//includes
|
|
|
|
|
require_once "root.php";
|
|
|
|
|
require_once "resources/require.php";
|
|
|
|
|
require_once "resources/check_auth.php";
|
2013-05-14 07:34:04 +02:00
|
|
|
|
2018-03-26 07:09:18 +02:00
|
|
|
//check prmissions
|
|
|
|
|
if (permission_exists('domain_setting_view')) {
|
|
|
|
|
//access granted
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2018-03-26 07:09:18 +02:00
|
|
|
//toggle enabled
|
|
|
|
|
if (sizeof($_REQUEST) > 1) {
|
2018-03-26 07:10:33 +02:00
|
|
|
//get the variables
|
2019-07-10 20:14:47 +02:00
|
|
|
$action = $_REQUEST["action"];
|
|
|
|
|
$domain_uuid = $_REQUEST["domain_id"];
|
2018-03-26 07:10:33 +02:00
|
|
|
$domain_setting_uuids = $_REQUEST["id"];
|
2019-07-10 20:14:47 +02:00
|
|
|
$enabled = $_REQUEST['enabled'];
|
2014-10-28 10:17:58 +01:00
|
|
|
|
2018-03-26 07:09:18 +02:00
|
|
|
//change enabled value
|
2019-07-10 20:14:47 +02:00
|
|
|
if (
|
|
|
|
|
permission_exists('domain_setting_edit') &&
|
|
|
|
|
is_uuid($domain_uuid) &&
|
|
|
|
|
is_array($domain_setting_uuids) &&
|
|
|
|
|
sizeof($domain_setting_uuids) == 1 &&
|
|
|
|
|
($enabled == 'true' || $enabled == 'false')
|
|
|
|
|
) {
|
|
|
|
|
$array['domain_settings'][0]['domain_setting_uuid'] = $domain_setting_uuids[0];
|
|
|
|
|
$array['domain_settings'][0]['domain_setting_enabled'] = $enabled;
|
|
|
|
|
$database = new database;
|
|
|
|
|
$database->app_name = 'domains';
|
|
|
|
|
$database->app_uuid = 'b31e723a-bf70-670c-a49b-470d2a232f71';
|
|
|
|
|
$database->save($array);
|
|
|
|
|
unset($array);
|
2014-10-28 10:17:58 +01:00
|
|
|
|
2018-08-31 05:09:01 +02:00
|
|
|
message::add($text['message-update']);
|
2019-07-24 10:05:57 +02:00
|
|
|
header("Location: ".PROJECT_PATH."/core/domains/domain_edit.php?id=".$domain_uuid);
|
2018-03-26 07:09:18 +02:00
|
|
|
exit;
|
|
|
|
|
}
|
2014-10-28 10:17:58 +01:00
|
|
|
|
2018-11-14 15:04:57 +01:00
|
|
|
//copy domain settings
|
|
|
|
|
if ($action == 'copy' && permission_exists('domain_setting_add')) {
|
2019-07-10 20:14:47 +02:00
|
|
|
$target_domain_uuid = $_POST["target_domain_uuid"];
|
|
|
|
|
|
|
|
|
|
if (is_uuid($target_domain_uuid) && is_array($domain_setting_uuids) && sizeof($domain_setting_uuids) != 0) {
|
|
|
|
|
foreach ($domain_setting_uuids as $index => $domain_setting_uuid) {
|
|
|
|
|
|
|
|
|
|
if (is_uuid($domain_setting_uuid)) {
|
|
|
|
|
|
|
|
|
|
// get default setting from db
|
|
|
|
|
$sql = "select * from v_domain_settings ";
|
|
|
|
|
$sql .= "where domain_setting_uuid = :domain_setting_uuid ";
|
|
|
|
|
$parameters['domain_setting_uuid'] = $domain_setting_uuid;
|
|
|
|
|
$database = new database;
|
|
|
|
|
$row = $database->select($sql, $parameters, 'row');
|
|
|
|
|
if (is_array($row) && sizeof($row) != 0) {
|
|
|
|
|
$domain_setting_uuid = $row["default_setting_uuid"];
|
|
|
|
|
$domain_setting_category = $row["default_setting_category"];
|
|
|
|
|
$domain_setting_subcategory = $row["default_setting_subcategory"];
|
|
|
|
|
$domain_setting_name = $row["default_setting_name"];
|
|
|
|
|
$domain_setting_value = $row["default_setting_value"];
|
|
|
|
|
$domain_setting_order = $row["default_setting_order"];
|
|
|
|
|
$domain_setting_enabled = $row["default_setting_enabled"];
|
|
|
|
|
$domain_setting_description = $row["default_setting_description"];
|
|
|
|
|
}
|
|
|
|
|
unset($sql, $parameters, $row);
|
2018-11-14 15:04:57 +01:00
|
|
|
|
2019-07-10 20:14:47 +02:00
|
|
|
//set a random password for http_auth_password
|
|
|
|
|
if ($domain_setting_subcategory == "http_auth_password") {
|
|
|
|
|
$domain_setting_value = generate_password();
|
|
|
|
|
}
|
2018-11-14 15:04:57 +01:00
|
|
|
|
2019-07-10 20:14:47 +02:00
|
|
|
// check if exists
|
|
|
|
|
$sql = "select domain_setting_uuid from v_domain_settings ";
|
|
|
|
|
$sql .= "where domain_uuid = :domain_uuid ";
|
|
|
|
|
$sql .= "and domain_setting_category = :domain_setting_category ";
|
|
|
|
|
$sql .= "and domain_setting_subcategory = :domain_setting_subcategory ";
|
|
|
|
|
$sql .= "and domain_setting_name = :domain_setting_name ";
|
|
|
|
|
$sql .= "and domain_setting_name <> 'array' ";
|
|
|
|
|
$parameters['domain_uuid'] = $target_domain_uuid;
|
|
|
|
|
$parameters['domain_setting_category'] = $domain_setting_category;
|
|
|
|
|
$parameters['domain_setting_subcategory'] = $domain_setting_subcategory;
|
|
|
|
|
$parameters['domain_setting_name'] = $domain_setting_name;
|
|
|
|
|
$database = new database;
|
|
|
|
|
$target_domain_setting_uuid = $database->select($sql, $parameters, 'column');
|
|
|
|
|
if (is_uuid($target_domain_setting_uuid)) {
|
|
|
|
|
$action = "update";
|
2018-11-14 15:04:57 +01:00
|
|
|
}
|
2019-07-10 20:14:47 +02:00
|
|
|
else {
|
|
|
|
|
$action = "add";
|
|
|
|
|
$target_domain_setting_uuid = uuid();
|
|
|
|
|
}
|
|
|
|
|
unset($sql, $parameters);
|
|
|
|
|
|
|
|
|
|
// fix null
|
2019-07-24 01:23:00 +02:00
|
|
|
$domain_setting_order = $domain_setting_order != '' ? $domain_setting_order : null;
|
2019-07-10 20:14:47 +02:00
|
|
|
|
|
|
|
|
//prepare the array
|
|
|
|
|
$array['domain_settings'][$index]['domain_uuid'] = $target_domain_uuid;
|
|
|
|
|
$array['domain_settings'][$index]['domain_setting_uuid'] = $target_domain_setting_uuid;
|
|
|
|
|
$array['domain_settings'][$index]['default_setting_category'] = $default_setting_category;
|
|
|
|
|
$array['domain_settings'][$index]['domain_setting_uuid'] = $default_setting_subcategory;
|
|
|
|
|
$array['domain_settings'][$index]['domain_setting_uuid'] = $default_setting_name;
|
|
|
|
|
$array['domain_settings'][$index]['domain_setting_uuid'] = $default_setting_value;
|
|
|
|
|
$array['domain_settings'][$index]['domain_setting_uuid'] = $default_setting_order;
|
|
|
|
|
$array['domain_settings'][$index]['domain_setting_uuid'] = $default_setting_enabled;
|
|
|
|
|
$array['domain_settings'][$index]['domain_setting_uuid'] = $default_setting_description;
|
|
|
|
|
|
2018-11-14 15:04:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // foreach
|
|
|
|
|
|
2019-07-10 20:14:47 +02:00
|
|
|
//save the data
|
|
|
|
|
if (is_array($array) && sizeof($array) != 0) {
|
|
|
|
|
$database = new database;
|
|
|
|
|
$database->app_name = 'domain_settings';
|
|
|
|
|
$database->app_uuid = 'b31e723a-bf70-670c-a49b-470d2a232f71';
|
|
|
|
|
$database->save($array);
|
|
|
|
|
$message = $database->message;
|
2018-11-14 15:04:57 +01:00
|
|
|
|
2019-07-10 20:14:47 +02:00
|
|
|
// set message
|
2019-07-24 01:23:00 +02:00
|
|
|
message::add($text['message-copy'].": ".sizeof($array));
|
2019-07-10 20:14:47 +02:00
|
|
|
|
|
|
|
|
unset($array);
|
|
|
|
|
}
|
2018-11-14 15:04:57 +01:00
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
// set message
|
|
|
|
|
message::add($text['message-copy_failed']);
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-24 10:05:57 +02:00
|
|
|
header("Location: ".PROJECT_PATH."/core/domains/domains.php".($search != '' ? "?search=".escape($search) : null));
|
2018-11-14 15:04:57 +01:00
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-26 07:09:18 +02:00
|
|
|
//delete domain settings
|
|
|
|
|
if ($action == 'delete' && permission_exists('domain_setting_delete')) {
|
|
|
|
|
//add multi-lingual support
|
|
|
|
|
$language = new text;
|
|
|
|
|
$text = $language->get();
|
2014-10-28 10:17:58 +01:00
|
|
|
|
2019-07-10 20:14:47 +02:00
|
|
|
if (is_array($domain_setting_uuids) && sizeof($domain_setting_uuids) != 0) {
|
|
|
|
|
foreach ($domain_setting_uuids as $index => $domain_setting_uuid) {
|
|
|
|
|
if (is_uuid($domain_setting_uuid)) {
|
|
|
|
|
$array['domain_settings'][$index]['domain_setting_uuid'] = $domain_setting_uuid;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (is_array($array) && sizeof($array) != 0) {
|
|
|
|
|
$database = new database;
|
|
|
|
|
$database->app_name = 'domain_settings';
|
|
|
|
|
$database->app_uuid = 'b31e723a-bf70-670c-a49b-470d2a232f71';
|
|
|
|
|
$database->delete($array);
|
|
|
|
|
$message = $database->message;
|
|
|
|
|
|
|
|
|
|
// set message
|
|
|
|
|
$_SESSION["message"] = $text['message-delete'].": ".sizeof($array);
|
|
|
|
|
|
|
|
|
|
unset($array);
|
2018-03-26 07:09:18 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
// set message
|
2018-08-31 05:09:01 +02:00
|
|
|
message::add($text['message-delete_failed'], 'negative');
|
2014-09-21 11:39:32 +02:00
|
|
|
}
|
2014-10-28 10:17:58 +01:00
|
|
|
|
2019-07-24 10:05:57 +02:00
|
|
|
header("Location: ".PROJECT_PATH."/core/domains/domain_edit.php?id=".escape($_REQUEST["domain_uuid"]));
|
2018-03-26 07:09:18 +02:00
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-09-21 11:39:32 +02:00
|
|
|
|
|
|
|
|
//include the paging
|
|
|
|
|
require_once "resources/paging.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2014-09-21 11:39:32 +02:00
|
|
|
//get the variables
|
2019-07-10 20:14:47 +02:00
|
|
|
$order_by = $_GET["order_by"];
|
|
|
|
|
$order = $_GET["order"];
|
2014-09-21 11:39:32 +02:00
|
|
|
|
|
|
|
|
//show the content
|
2019-07-24 10:13:48 +02:00
|
|
|
echo "<form name='domain_frm' id='domain_frm' method='GET' action='".PROJECT_PATH."/core/domain_settings/domain_settings.php'>";
|
2014-09-21 11:39:32 +02:00
|
|
|
echo "<input type='hidden' name='action' id='action' value=''>";
|
2018-06-30 18:09:35 +02:00
|
|
|
echo "<input type='hidden' name='domain_uuid' value='".escape($domain_uuid)."'>";
|
2014-09-21 11:39:32 +02:00
|
|
|
|
2014-07-30 01:29:44 +02:00
|
|
|
//prepare to page the results
|
2019-07-10 20:14:47 +02:00
|
|
|
$sql = "select count(*) from v_domain_settings ";
|
|
|
|
|
$sql .= "where domain_uuid = :domain_uuid ";
|
|
|
|
|
$parameters['domain_uuid'] = $domain_uuid;
|
|
|
|
|
$database = new database;
|
|
|
|
|
$num_rows = $database->select($sql, $parameters, 'column');
|
|
|
|
|
unset($sql);
|
2014-07-30 01:29:44 +02:00
|
|
|
|
|
|
|
|
//prepare to page the results
|
2017-12-29 23:43:02 +01:00
|
|
|
$rows_per_page = ($_SESSION['domain']['paging']['numeric'] != '') ? $_SESSION['domain']['paging']['numeric'] : 1000;
|
2014-07-30 01:29:44 +02:00
|
|
|
$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 = "select * from v_domain_settings ";
|
2019-07-10 20:14:47 +02:00
|
|
|
$sql .= "where domain_uuid = :domain_uuid ";
|
|
|
|
|
if ($order_by == '') {
|
2017-06-03 20:36:56 +02:00
|
|
|
$sql .= "order by domain_setting_category, domain_setting_subcategory, domain_setting_order asc, domain_setting_name, domain_setting_value ";
|
2014-07-30 01:29:44 +02:00
|
|
|
}
|
|
|
|
|
else {
|
2019-07-10 20:14:47 +02:00
|
|
|
$sql .= order_by($order_by, $order);
|
2014-07-30 01:29:44 +02:00
|
|
|
}
|
2019-07-10 20:14:47 +02:00
|
|
|
$sql .= limit_offset($rows_per_page, $offset);
|
|
|
|
|
$database = new database;
|
|
|
|
|
$result = $database->select($sql, $parameters, 'all');
|
|
|
|
|
$result_count = sizeof($result);
|
|
|
|
|
unset($sql, $parameters);
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
$c = 0;
|
|
|
|
|
$row_style["0"] = "row_style0";
|
|
|
|
|
$row_style["1"] = "row_style1";
|
|
|
|
|
|
2014-07-30 01:29:44 +02:00
|
|
|
//show the content
|
2014-06-21 09:51:31 +02:00
|
|
|
echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2019-07-10 20:14:47 +02:00
|
|
|
if (is_array($result) && sizeof($result) != 0) {
|
2012-06-04 16:58:40 +02:00
|
|
|
$previous_category = '';
|
|
|
|
|
foreach($result as $row) {
|
|
|
|
|
if ($previous_category != $row['domain_setting_category']) {
|
2014-10-28 10:17:58 +01:00
|
|
|
$c = 0;
|
2014-09-21 11:39:32 +02:00
|
|
|
echo "<tr>\n";
|
|
|
|
|
echo " <td colspan='7' align='left'>\n";
|
2015-02-06 02:26:06 +01:00
|
|
|
if ($previous_category != '') {
|
|
|
|
|
echo " <br /><br />\n";
|
|
|
|
|
}
|
2014-09-21 11:39:32 +02:00
|
|
|
echo " <b>\n";
|
2014-07-25 09:23:35 +02:00
|
|
|
if (strtolower($row['domain_setting_category']) == "cdr") {
|
|
|
|
|
echo " CDR";
|
|
|
|
|
}
|
|
|
|
|
elseif (strtolower($row['domain_setting_category']) == "ldap") {
|
|
|
|
|
echo " LDAP";
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo " ".ucfirst($row['domain_setting_category']);
|
|
|
|
|
}
|
|
|
|
|
echo " </b>\n";
|
2014-06-21 09:51:31 +02:00
|
|
|
echo " </td>\n";
|
|
|
|
|
echo "</tr>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "<tr>\n";
|
2014-10-28 10:17:58 +01:00
|
|
|
if ((permission_exists("domain_select")
|
|
|
|
|
&& permission_exists("domain_setting_add")
|
2014-09-21 11:39:32 +02:00
|
|
|
&& count($_SESSION['domains']) > 1) ||
|
|
|
|
|
permission_exists('domain_setting_delete')) {
|
2018-06-30 18:09:35 +02:00
|
|
|
echo "<th style='width: 30px; vertical-align: bottom; text-align: center; padding: 0px 3px 2px 8px;'><input type='checkbox' id='chk_all_".escape($row['domain_setting_category'])."' class='chk_all' onchange=\"(this.checked) ? check('all','".strtolower(escape($row['domain_setting_category']))."') : check('none','".strtolower(escape($row['domain_setting_category']))."');\"></th>";
|
2014-09-21 11:39:32 +02:00
|
|
|
}
|
2014-07-25 09:23:35 +02:00
|
|
|
echo "<th>".$text['label-subcategory']."</th>";
|
|
|
|
|
echo "<th>".$text['label-type']."</th>";
|
|
|
|
|
echo "<th>".$text['label-value']."</th>";
|
|
|
|
|
echo "<th style='text-align: center;'>".$text['label-enabled']."</th>";
|
|
|
|
|
echo "<th>".$text['label-description']."</th>";
|
2014-02-26 07:21:37 +01:00
|
|
|
echo "<td class='list_control_icons'>";
|
2012-09-27 02:34:10 +02:00
|
|
|
if (permission_exists('domain_setting_add')) {
|
2019-07-24 10:05:57 +02:00
|
|
|
echo "<a href='".PROJECT_PATH."/core/domain_settings/domain_setting_edit.php?domain_setting_category=".escape($row['domain_setting_category'])."&domain_uuid=".escape($_GET['id'])."' alt='".$text['button-add']."'>".$v_link_label_add."</a>";
|
2014-09-21 11:39:32 +02:00
|
|
|
}
|
|
|
|
|
if (permission_exists('domain_setting_delete')) {
|
|
|
|
|
echo "<a href='javascript:void(0);' onclick=\"if (confirm('".$text['confirm-delete']."')) { document.getElementById('action').value = 'delete'; document.forms.domain_frm.submit(); }\" alt='".$text['button-delete']."'>".$v_link_label_delete."</a>";
|
2012-09-27 02:34:10 +02:00
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
}
|
2019-07-24 10:05:57 +02:00
|
|
|
$tr_link = (permission_exists('domain_setting_edit')) ? " href='".PROJECT_PATH."/core/domain_settings/domain_setting_edit.php?domain_uuid=".escape($row['domain_uuid'])."&id=".escape($row['domain_setting_uuid'])."'" : null;
|
2014-06-21 09:51:31 +02:00
|
|
|
echo "<tr ".$tr_link.">\n";
|
2018-06-30 18:09:35 +02:00
|
|
|
if ((permission_exists("domain_select") && permission_exists("domain_setting_add")
|
|
|
|
|
&& count($_SESSION['domains']) > 1) ||
|
|
|
|
|
permission_exists("domain_setting_delete")) {
|
|
|
|
|
echo " <td valign='top' class='".$row_style[$c]." tr_link_void' style='text-align: center; padding: 3px 3px 0px 8px;'><input type='checkbox' name='id[]' id='checkbox_".escape($row['domain_setting_uuid'])."' value='".escape($row['domain_setting_uuid'])."' onclick=\"if (!this.checked) { document.getElementById('chk_all_".escape($row['domain_setting_category'])."').checked = false; }\"></td>\n";
|
|
|
|
|
$subcat_ids[strtolower($row['domain_setting_category'])][] = 'checkbox_'.escape($row['domain_setting_uuid']);
|
2014-09-21 11:39:32 +02:00
|
|
|
}
|
2014-06-21 09:51:31 +02:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>";
|
|
|
|
|
if (permission_exists('domain_setting_edit')) {
|
2019-07-24 10:05:57 +02:00
|
|
|
echo "<a href='".PROJECT_PATH."/core/domain_settings/domain_setting_edit.php?domain_uuid=".escape($row['domain_uuid'])."&id=".escape($row['domain_setting_uuid'])."'>".escape($row['domain_setting_subcategory'])."</a>";
|
2014-06-21 09:51:31 +02:00
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo $row['domain_setting_subcategory'];
|
|
|
|
|
}
|
|
|
|
|
echo " </td>\n";
|
2018-06-30 18:09:35 +02:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."'>".escape($row['domain_setting_name'])." </td>\n";
|
2015-05-01 10:22:21 +02:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]."' style='width: 30%; max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
$category = $row['domain_setting_category'];
|
|
|
|
|
$subcategory = $row['domain_setting_subcategory'];
|
|
|
|
|
$name = $row['domain_setting_name'];
|
|
|
|
|
if ($category == "domain" && $subcategory == "menu" && $name == "uuid" ) {
|
2014-09-21 11:39:32 +02:00
|
|
|
$sql = "select * from v_menus ";
|
2019-07-10 20:14:47 +02:00
|
|
|
$sql .= "where menu_uuid = :menu_uuid ";
|
|
|
|
|
$parameters['menu_uuid'] = $row['domain_setting_value'];
|
|
|
|
|
$database = new database;
|
|
|
|
|
$sub_result = $database->select($sql, $parameters, 'all');
|
|
|
|
|
if (is_array($sub_result) && sizeof($sub_result) != 0) {
|
|
|
|
|
foreach ($sub_result as &$sub_row) {
|
|
|
|
|
echo escape($sub_row["menu_language"])." - ".escape($sub_row["menu_name"])."\n";
|
|
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
}
|
2019-07-10 20:14:47 +02:00
|
|
|
unset($sql, $parameters, $sub_result, $sub_row);
|
2012-10-17 06:09:22 +02:00
|
|
|
}
|
2016-04-02 03:44:26 +02:00
|
|
|
else if ($category == "domain" && $subcategory == "template" && $name == "name" ) {
|
2014-09-21 11:39:32 +02:00
|
|
|
echo " ".ucwords($row['domain_setting_value']);
|
|
|
|
|
}
|
2016-03-25 23:29:20 +01:00
|
|
|
else if ($category == "domain" && $subcategory == "time_format" && $name == "text" ) {
|
2016-04-02 03:44:26 +02:00
|
|
|
switch ($row['domain_setting_value']) {
|
|
|
|
|
case '12h': echo $text['label-12-hour']; break;
|
|
|
|
|
case '24h': echo $text['label-24-hour']; break;
|
2016-03-25 23:29:20 +01:00
|
|
|
}
|
|
|
|
|
}
|
2016-03-26 02:38:57 +01:00
|
|
|
else if (
|
2016-04-06 01:24:22 +02:00
|
|
|
( $category == "theme" && $subcategory == "menu_main_icons" && $name == "boolean" ) ||
|
2016-03-26 02:38:57 +01:00
|
|
|
( $category == "theme" && $subcategory == "menu_sub_icons" && $name == "boolean" ) ||
|
|
|
|
|
( $category == "theme" && $subcategory == "menu_brand_type" && $name == "text" ) ||
|
|
|
|
|
( $category == "theme" && $subcategory == "menu_style" && $name == "text" ) ||
|
|
|
|
|
( $category == "theme" && $subcategory == "menu_position" && $name == "text" ) ||
|
|
|
|
|
( $category == "theme" && $subcategory == "logo_align" && $name == "text" )
|
|
|
|
|
) {
|
2018-06-30 18:09:35 +02:00
|
|
|
echo " ".$text['label-'.escape($row['domain_setting_value'])];
|
2016-03-25 23:29:20 +01:00
|
|
|
}
|
2015-05-01 10:22:21 +02:00
|
|
|
else if ($subcategory == 'password' || substr_count($subcategory, '_password') > 0 || $category == "login" && $subcategory == "password_reset_key" && $name == "text") {
|
2018-06-30 18:09:35 +02:00
|
|
|
echo " ".str_repeat('*', strlen(escape($row['domain_setting_value'])));
|
2012-10-17 06:09:22 +02:00
|
|
|
}
|
2015-05-01 10:22:21 +02:00
|
|
|
else {
|
2016-03-29 06:29:15 +02:00
|
|
|
if ($category == "theme" && substr_count($subcategory, "_color") > 0 && ($name == "text" || $name == 'array')) {
|
2018-06-30 18:09:35 +02:00
|
|
|
echo " ".(img_spacer('15px', '15px', 'background: '.escape($row['domain_setting_value']).'; margin-right: 4px; vertical-align: middle; border: 1px solid '.(color_adjust($row['domain_setting_value'], -0.18)).'; padding: -1px;'));
|
|
|
|
|
echo "<span style=\"font-family: 'Courier New'; line-height: 6pt;\">".escape($row['domain_setting_value'])."</span>\n";
|
2016-04-02 03:44:26 +02:00
|
|
|
}
|
|
|
|
|
else {
|
2018-06-30 18:09:35 +02:00
|
|
|
echo " ".escape($row['domain_setting_value'])."\n";
|
2016-03-29 06:29:15 +02:00
|
|
|
}
|
2012-10-17 06:09:22 +02:00
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
echo " </td>\n";
|
2014-10-28 10:17:58 +01:00
|
|
|
echo " <td valign='top' class='".$row_style[$c]." tr_link_void' style='text-align: center;'>\n";
|
2019-07-24 10:05:57 +02:00
|
|
|
echo " <a href='".PROJECT_PATH."/core/domain_settings/domain_settings.php?domain_id=".escape($row['domain_uuid'])."&id[]=".escape($row['domain_setting_uuid'])."&enabled=".(($row['domain_setting_enabled'] == 'true') ? 'false' : 'true')."'>".$text['label-'.escape($row['domain_setting_enabled'])]."</a>\n";
|
2014-10-28 10:17:58 +01:00
|
|
|
echo " </td>\n";
|
2018-06-30 18:09:35 +02:00
|
|
|
echo " <td valign='top' class='row_stylebg'>".escape($row['domain_setting_description'])." </td>\n";
|
2014-02-26 07:21:37 +01:00
|
|
|
echo " <td class='list_control_icons'>";
|
2012-09-27 02:34:10 +02:00
|
|
|
if (permission_exists('domain_setting_edit')) {
|
2019-07-24 10:05:57 +02:00
|
|
|
echo "<a href='".PROJECT_PATH."/core/domain_settings/domain_setting_edit.php?domain_uuid=".escape($row['domain_uuid'])."&id=".escape($row['domain_setting_uuid'])."' alt='".$text['button-edit']."'>$v_link_label_edit</a>";
|
2012-09-27 02:34:10 +02:00
|
|
|
}
|
|
|
|
|
if (permission_exists('domain_setting_delete')) {
|
2019-07-24 10:05:57 +02:00
|
|
|
echo "<a href='".PROJECT_PATH."/core/domain_settings/domain_settings.php?domain_uuid=".escape($row['domain_uuid'])."&id[]=".escape($row['domain_setting_uuid'])."&action=delete' alt='".$text['button-delete']."' onclick=\"return confirm('".$text['confirm-delete']."')\">$v_link_label_delete</a>";
|
2012-09-27 02:34:10 +02:00
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
echo " </td>\n";
|
|
|
|
|
echo "</tr>\n";
|
|
|
|
|
$previous_category = $row['domain_setting_category'];
|
|
|
|
|
if ($c==0) { $c=1; } else { $c=0; }
|
|
|
|
|
} //end foreach
|
|
|
|
|
unset($sql, $result, $row_count);
|
|
|
|
|
} //end if results
|
|
|
|
|
|
|
|
|
|
echo "<tr>\n";
|
2016-02-29 19:39:46 +01:00
|
|
|
echo "<td colspan='20' align='left'>\n";
|
2012-06-04 16:58:40 +02:00
|
|
|
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>$paging_controls</td>\n";
|
2014-02-26 07:21:37 +01:00
|
|
|
echo " <td class='list_control_icons'>";
|
2012-09-27 02:34:10 +02:00
|
|
|
if (permission_exists('domain_setting_add')) {
|
2019-07-24 10:05:57 +02:00
|
|
|
echo "<a href='".PROJECT_PATH."/core/domain_settings/domain_setting_edit.php?domain_uuid=".escape($_GET['id'])."' alt='".$text['button-add']."'>$v_link_label_add</a>";
|
2014-09-21 11:39:32 +02:00
|
|
|
}
|
2015-02-15 12:57:14 +01:00
|
|
|
if (permission_exists('domain_setting_delete') && $result_count > 0) {
|
2016-02-29 19:39:46 +01:00
|
|
|
echo "<a href='javascript:void(0);' onclick=\"if (confirm('".$text['confirm-delete']."')) { document.getElementById('action').value = 'delete'; document.getElementById('domain_frm').submit(); }\" alt='".$text['button-delete']."'>".$v_link_label_delete."</a>";
|
2012-09-27 02:34:10 +02:00
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
echo " </td>\n";
|
|
|
|
|
echo " </tr>\n";
|
|
|
|
|
echo " </table>\n";
|
|
|
|
|
echo "</td>\n";
|
|
|
|
|
echo "</tr>\n";
|
2014-09-21 11:39:32 +02:00
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
echo "</table>";
|
2014-09-21 11:39:32 +02:00
|
|
|
echo "</form>";
|
|
|
|
|
|
|
|
|
|
echo "<br /><br />";
|
|
|
|
|
|
|
|
|
|
// check or uncheck all category checkboxes
|
|
|
|
|
if (sizeof($subcat_ids) > 0) {
|
|
|
|
|
echo "<script>\n";
|
|
|
|
|
echo " function check(what, category) {\n";
|
|
|
|
|
foreach ($subcat_ids as $domain_setting_category => $checkbox_ids) {
|
|
|
|
|
echo "if (category == '".$domain_setting_category."') {\n";
|
|
|
|
|
foreach ($checkbox_ids as $index => $checkbox_id) {
|
2019-08-21 21:54:42 +02:00
|
|
|
echo "document.getElementById('".$checkbox_id."').checked = (what == 'all') ? true : false;\n";
|
2014-09-21 11:39:32 +02:00
|
|
|
}
|
|
|
|
|
echo "}\n";
|
|
|
|
|
}
|
|
|
|
|
echo " }\n";
|
|
|
|
|
echo "</script>\n";
|
|
|
|
|
}
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
//include the footer
|
2014-07-30 01:29:44 +02:00
|
|
|
//require_once "resources/footer.php";
|
2018-03-26 07:09:18 +02:00
|
|
|
|
2015-04-30 15:45:13 +02:00
|
|
|
?>
|