Domain Settings: Integrate copy and toggle functions.
This commit is contained in:
parent
ec6c561396
commit
b8e8e61126
|
|
@ -391,6 +391,9 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
||||||
echo "</td>\n";
|
echo "</td>\n";
|
||||||
echo "<td class='vtable' align='left'>\n";
|
echo "<td class='vtable' align='left'>\n";
|
||||||
if (permission_exists('domain_setting_category_edit')) {
|
if (permission_exists('domain_setting_category_edit')) {
|
||||||
|
if ($action == 'add') {
|
||||||
|
$domain_setting_category = $_GET['domain_setting_category'];
|
||||||
|
}
|
||||||
echo " <input type='text' class='formfld' name='domain_setting_category' id='domain_setting_category' maxlength='255' value=\"".escape($domain_setting_category)."\">\n";
|
echo " <input type='text' class='formfld' name='domain_setting_category' id='domain_setting_category' maxlength='255' value=\"".escape($domain_setting_category)."\">\n";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
|
||||||
|
|
@ -37,59 +37,46 @@
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
//toggle enabled
|
//get posted values, if any
|
||||||
if (sizeof($_REQUEST) > 1) {
|
if (is_array($_REQUEST) && @sizeof($_REQUEST) > 1) {
|
||||||
//get the variables
|
//get the variables
|
||||||
$action = $_REQUEST["action"];
|
$action = $_REQUEST["action"];
|
||||||
$domain_uuid = $_REQUEST["domain_id"];
|
$domain_uuid = $_REQUEST["domain_uuid"];
|
||||||
$domain_setting_uuids = $_REQUEST["id"];
|
$domain_setting_uuids = $_REQUEST["id"];
|
||||||
$enabled = $_REQUEST['enabled'];
|
$enabled = $_REQUEST['enabled'];
|
||||||
|
|
||||||
//change enabled value
|
//validate the token
|
||||||
if (
|
$token = new token;
|
||||||
permission_exists('domain_setting_edit') &&
|
if (!$token->validate(PROJECT_PATH."/core/domains/domain_edit.php")) {
|
||||||
is_uuid($domain_uuid) &&
|
message::add($text['message-invalid_token'],'negative');
|
||||||
is_array($domain_setting_uuids) &&
|
header("Location: ".PROJECT_PATH."/core/domains/domains.php");
|
||||||
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);
|
|
||||||
|
|
||||||
message::add($text['message-update']);
|
|
||||||
header("Location: ".PROJECT_PATH."/core/domains/domain_edit.php?id=".$domain_uuid);
|
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
//copy domain settings
|
//copy (to a different domain)
|
||||||
if ($action == 'copy' && permission_exists('domain_setting_add')) {
|
if ($action == 'copy' && permission_exists('domain_select') && count($_SESSION['domains']) > 1) {
|
||||||
$target_domain_uuid = $_POST["target_domain_uuid"];
|
$target_domain_uuid = $_POST["target_domain_uuid"];
|
||||||
|
|
||||||
if (is_uuid($target_domain_uuid) && is_array($domain_setting_uuids) && sizeof($domain_setting_uuids) != 0) {
|
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) {
|
$settings_copied = 0;
|
||||||
|
foreach ($domain_setting_uuids as $domain_setting_uuid) {
|
||||||
|
|
||||||
if (is_uuid($domain_setting_uuid)) {
|
if (is_uuid($domain_setting_uuid)) {
|
||||||
|
|
||||||
// get default setting from db
|
//get domain setting from db
|
||||||
$sql = "select * from v_domain_settings ";
|
$sql = "select * from v_domain_settings ";
|
||||||
$sql .= "where domain_setting_uuid = :domain_setting_uuid ";
|
$sql .= "where domain_setting_uuid = :domain_setting_uuid ";
|
||||||
$parameters['domain_setting_uuid'] = $domain_setting_uuid;
|
$parameters['domain_setting_uuid'] = $domain_setting_uuid;
|
||||||
$database = new database;
|
$database = new database;
|
||||||
$row = $database->select($sql, $parameters, 'row');
|
$row = $database->select($sql, $parameters, 'row');
|
||||||
if (is_array($row) && sizeof($row) != 0) {
|
if (is_array($row) && sizeof($row) != 0) {
|
||||||
$domain_setting_uuid = $row["default_setting_uuid"];
|
$domain_setting_category = $row["domain_setting_category"];
|
||||||
$domain_setting_category = $row["default_setting_category"];
|
$domain_setting_subcategory = $row["domain_setting_subcategory"];
|
||||||
$domain_setting_subcategory = $row["default_setting_subcategory"];
|
$domain_setting_name = $row["domain_setting_name"];
|
||||||
$domain_setting_name = $row["default_setting_name"];
|
$domain_setting_value = $row["domain_setting_value"];
|
||||||
$domain_setting_value = $row["default_setting_value"];
|
$domain_setting_order = $row["domain_setting_order"];
|
||||||
$domain_setting_order = $row["default_setting_order"];
|
$domain_setting_enabled = $row["domain_setting_enabled"];
|
||||||
$domain_setting_enabled = $row["default_setting_enabled"];
|
$domain_setting_description = $row["domain_setting_description"];
|
||||||
$domain_setting_description = $row["default_setting_description"];
|
|
||||||
}
|
}
|
||||||
unset($sql, $parameters, $row);
|
unset($sql, $parameters, $row);
|
||||||
|
|
||||||
|
|
@ -111,57 +98,89 @@
|
||||||
$parameters['domain_setting_name'] = $domain_setting_name;
|
$parameters['domain_setting_name'] = $domain_setting_name;
|
||||||
$database = new database;
|
$database = new database;
|
||||||
$target_domain_setting_uuid = $database->select($sql, $parameters, 'column');
|
$target_domain_setting_uuid = $database->select($sql, $parameters, 'column');
|
||||||
if (is_uuid($target_domain_setting_uuid)) {
|
|
||||||
$action = "update";
|
$action = is_uuid($target_domain_setting_uuid) ? 'update' : 'add';
|
||||||
}
|
|
||||||
else {
|
|
||||||
$action = "add";
|
|
||||||
$target_domain_setting_uuid = uuid();
|
|
||||||
}
|
|
||||||
unset($sql, $parameters);
|
unset($sql, $parameters);
|
||||||
|
|
||||||
// fix null
|
// fix null
|
||||||
$domain_setting_order = $domain_setting_order != '' ? $domain_setting_order : null;
|
$default_setting_order = $default_setting_order != '' ? $default_setting_order : null;
|
||||||
|
|
||||||
//prepare the array
|
//begin array
|
||||||
$array['domain_settings'][$index]['domain_uuid'] = $target_domain_uuid;
|
$array['domain_settings'][0]['domain_uuid'] = $target_domain_uuid;
|
||||||
$array['domain_settings'][$index]['domain_setting_uuid'] = $target_domain_setting_uuid;
|
$array['domain_settings'][0]['domain_setting_category'] = $domain_setting_category;
|
||||||
$array['domain_settings'][$index]['default_setting_category'] = $default_setting_category;
|
$array['domain_settings'][0]['domain_setting_subcategory'] = $domain_setting_subcategory;
|
||||||
$array['domain_settings'][$index]['domain_setting_uuid'] = $default_setting_subcategory;
|
$array['domain_settings'][0]['domain_setting_name'] = $domain_setting_name;
|
||||||
$array['domain_settings'][$index]['domain_setting_uuid'] = $default_setting_name;
|
$array['domain_settings'][0]['domain_setting_value'] = $domain_setting_value;
|
||||||
$array['domain_settings'][$index]['domain_setting_uuid'] = $default_setting_value;
|
$array['domain_settings'][0]['domain_setting_order'] = $domain_setting_order;
|
||||||
$array['domain_settings'][$index]['domain_setting_uuid'] = $default_setting_order;
|
$array['domain_settings'][0]['domain_setting_enabled'] = $domain_setting_enabled;
|
||||||
$array['domain_settings'][$index]['domain_setting_uuid'] = $default_setting_enabled;
|
$array['domain_settings'][0]['domain_setting_description'] = $domain_setting_description;
|
||||||
$array['domain_settings'][$index]['domain_setting_uuid'] = $default_setting_description;
|
|
||||||
|
//insert
|
||||||
|
if ($action == "add" && permission_exists("domain_setting_add")) {
|
||||||
|
$array['domain_settings'][0]['domain_setting_uuid'] = uuid();
|
||||||
|
}
|
||||||
|
//update
|
||||||
|
if ($action == "update" && permission_exists('domain_setting_edit')) {
|
||||||
|
$array['domain_settings'][0]['domain_setting_uuid'] = $target_domain_setting_uuid;
|
||||||
|
}
|
||||||
|
|
||||||
|
//execute
|
||||||
|
if (is_uuid($array['domain_settings'][0]['domain_setting_uuid'])) {
|
||||||
|
$database = new database;
|
||||||
|
$database->app_name = 'domain_settings';
|
||||||
|
$database->app_uuid = 'b31e723a-bf70-670c-a49b-470d2a232f71';
|
||||||
|
$database->save($array);
|
||||||
|
unset($array);
|
||||||
|
|
||||||
|
$settings_copied++;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // foreach
|
|
||||||
|
|
||||||
//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;
|
|
||||||
|
|
||||||
// set message
|
|
||||||
message::add($text['message-copy'].": ".sizeof($array));
|
|
||||||
|
|
||||||
unset($array);
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else {
|
|
||||||
// set message
|
// set message
|
||||||
message::add($text['message-copy_failed']);
|
message::add($text['message-copy'].": ".escape($settings_copied));
|
||||||
}
|
}
|
||||||
|
|
||||||
header("Location: ".PROJECT_PATH."/core/domains/domains.php".($search != '' ? "?search=".escape($search) : null));
|
header("Location: ".PROJECT_PATH."/core/domains/domain_edit.php?id=".escape($_REQUEST["domain_uuid"]));
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
//delete domain settings
|
//toggle
|
||||||
|
$toggled = 0;
|
||||||
|
if ($action == 'toggle' && is_array($domain_setting_uuids) && sizeof($domain_setting_uuids) > 0) {
|
||||||
|
foreach ($domain_setting_uuids as $domain_setting_uuid) {
|
||||||
|
if (is_uuid($domain_setting_uuid)) {
|
||||||
|
//get current status
|
||||||
|
$sql = "select domain_setting_enabled from v_domain_settings where domain_setting_uuid = :domain_setting_uuid ";
|
||||||
|
$parameters['domain_setting_uuid'] = $domain_setting_uuid;
|
||||||
|
$database = new database;
|
||||||
|
$domain_setting_enabled = $database->select($sql, $parameters, 'column');
|
||||||
|
$new_status = $domain_setting_enabled == 'true' ? 'false' : 'true';
|
||||||
|
unset($sql, $parameters);
|
||||||
|
//set new status
|
||||||
|
$array['domain_settings'][0]['domain_setting_uuid'] = $domain_setting_uuid;
|
||||||
|
$array['domain_settings'][0]['domain_setting_enabled'] = $new_status;
|
||||||
|
$database = new database;
|
||||||
|
$database->app_name = 'domain_settings';
|
||||||
|
$database->app_uuid = '2c2453c0-1bea-4475-9f44-4d969650de09';
|
||||||
|
$database->save($array);
|
||||||
|
$message = $database->message;
|
||||||
|
unset($array);
|
||||||
|
//increment toggle total
|
||||||
|
$toggled++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ($toggled > 0) {
|
||||||
|
message::add($text['message-toggle'].': '.$toggled);
|
||||||
|
}
|
||||||
|
|
||||||
|
header("Location: ".PROJECT_PATH."/core/domains/domain_edit.php?id=".escape($_REQUEST["domain_uuid"]));
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
//delete
|
||||||
if ($action == 'delete' && permission_exists('domain_setting_delete')) {
|
if ($action == 'delete' && permission_exists('domain_setting_delete')) {
|
||||||
//add multi-lingual support
|
//add multi-lingual support
|
||||||
$language = new text;
|
$language = new text;
|
||||||
|
|
@ -186,10 +205,6 @@
|
||||||
unset($array);
|
unset($array);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
// set message
|
|
||||||
message::add($text['message-delete_failed'], 'negative');
|
|
||||||
}
|
|
||||||
|
|
||||||
header("Location: ".PROJECT_PATH."/core/domains/domain_edit.php?id=".escape($_REQUEST["domain_uuid"]));
|
header("Location: ".PROJECT_PATH."/core/domains/domain_edit.php?id=".escape($_REQUEST["domain_uuid"]));
|
||||||
exit;
|
exit;
|
||||||
|
|
@ -203,11 +218,6 @@
|
||||||
$order_by = $_GET["order_by"];
|
$order_by = $_GET["order_by"];
|
||||||
$order = $_GET["order"];
|
$order = $_GET["order"];
|
||||||
|
|
||||||
//show the content
|
|
||||||
echo "<form name='domain_frm' id='domain_frm' method='GET' action='".PROJECT_PATH."/core/domain_settings/domain_settings.php'>";
|
|
||||||
echo "<input type='hidden' name='action' id='action' value=''>";
|
|
||||||
echo "<input type='hidden' name='domain_uuid' value='".escape($domain_uuid)."'>";
|
|
||||||
|
|
||||||
//prepare to page the results
|
//prepare to page the results
|
||||||
$sql = "select count(*) from v_domain_settings ";
|
$sql = "select count(*) from v_domain_settings ";
|
||||||
$sql .= "where domain_uuid = :domain_uuid ";
|
$sql .= "where domain_uuid = :domain_uuid ";
|
||||||
|
|
@ -236,23 +246,80 @@
|
||||||
$sql .= limit_offset($rows_per_page, $offset);
|
$sql .= limit_offset($rows_per_page, $offset);
|
||||||
$database = new database;
|
$database = new database;
|
||||||
$result = $database->select($sql, $parameters, 'all');
|
$result = $database->select($sql, $parameters, 'all');
|
||||||
$result_count = sizeof($result);
|
|
||||||
unset($sql, $parameters);
|
unset($sql, $parameters);
|
||||||
|
|
||||||
$c = 0;
|
$c = 0;
|
||||||
$row_style["0"] = "row_style0";
|
$row_style["0"] = "row_style0";
|
||||||
$row_style["1"] = "row_style1";
|
$row_style["1"] = "row_style1";
|
||||||
|
|
||||||
|
//copy settings javascript
|
||||||
|
if (
|
||||||
|
permission_exists("domain_select") &&
|
||||||
|
permission_exists("domain_setting_add") &&
|
||||||
|
is_array($_SESSION['domains']) &&
|
||||||
|
@sizeof($_SESSION['domains']) > 1
|
||||||
|
) {
|
||||||
|
echo "<script language='javascript' type='text/javascript'>\n";
|
||||||
|
echo " var fade_speed = 400;\n";
|
||||||
|
echo " function show_domains() {\n";
|
||||||
|
echo " $('#button_copy').fadeOut(fade_speed, function() {\n";
|
||||||
|
echo " $('#button_back').fadeIn(fade_speed);\n";
|
||||||
|
echo " $('#target_domain_uuid').fadeIn(fade_speed);\n";
|
||||||
|
echo " $('#button_paste').fadeIn(fade_speed);\n";
|
||||||
|
echo " });";
|
||||||
|
echo " }";
|
||||||
|
echo " function hide_domains() {\n";
|
||||||
|
echo " $('#button_back').fadeOut(fade_speed);\n";
|
||||||
|
echo " $('#target_domain_uuid').fadeOut(fade_speed);\n";
|
||||||
|
echo " $('#button_paste').fadeOut(fade_speed, function() {\n";
|
||||||
|
echo " $('#button_copy').fadeIn(fade_speed);\n";
|
||||||
|
echo " document.getElementById('target_domain_uuid').selectedIndex = 0;\n";
|
||||||
|
echo " });\n";
|
||||||
|
echo " }\n";
|
||||||
|
echo "</script>";
|
||||||
|
}
|
||||||
|
|
||||||
//show the content
|
//show the content
|
||||||
|
echo "<form name='domain_frm' id='domain_frm' method='post' action='".PROJECT_PATH."/core/domain_settings/domain_settings.php'>";
|
||||||
|
echo "<input type='hidden' name='".$token['name']."' value='".$token['hash']."'>\n";
|
||||||
|
echo "<input type='hidden' name='domain_uuid' value='".escape($domain_uuid)."'>";
|
||||||
|
|
||||||
|
echo "<div style='float: right;'>\n";
|
||||||
|
if (permission_exists('domain_setting_add')) {
|
||||||
|
echo " <a href='".PROJECT_PATH."/core/domain_settings/domain_setting_edit.php?domain_uuid=".urlencode($domain_uuid)."' alt=\"".$text['button-add']."\"><button type='button' class='btn btn-default'><span class='fas fa-plus'></span> ".$text['button-add']."</button></a>";
|
||||||
|
}
|
||||||
|
if (is_array($result) && @sizeof($result) != 0) {
|
||||||
|
if (permission_exists("domain_select") && permission_exists("domain_setting_add") && count($_SESSION['domains']) > 1) {
|
||||||
|
echo " <button type='button' id='button_copy' class='btn btn-default' alt='".$text['button-copy']."' onclick='show_domains();'><span class='fas fa-copy'></span> ".$text['button-copy']."</button>";
|
||||||
|
echo " <button type='button' id='button_back' class='btn btn-default' style='display: none;' alt='".$text['button-back']."' onclick='hide_domains();'><span class='fas fa-undo-alt'></span> ".$text['button-back']."</button>";
|
||||||
|
echo " <select class='formfld' style='display: none; width: auto;' name='target_domain_uuid' id='target_domain_uuid'>\n";
|
||||||
|
echo " <option value=''>".$text['label-domain']."...</option>\n";
|
||||||
|
foreach ($_SESSION['domains'] as $domain) {
|
||||||
|
echo " <option value='".escape($domain["domain_uuid"])."'>".escape($domain["domain_name"])."</option>\n";
|
||||||
|
}
|
||||||
|
echo " </select>\n";
|
||||||
|
echo " <button type='submit' id='button_paste' name='action' class='btn btn-default' style='display: none;' alt='".$text['button-paste']."' value='copy'><span class='fas fa-paste'></span> ".$text['button-paste']."</button>";
|
||||||
|
}
|
||||||
|
if (permission_exists('default_setting_edit')) {
|
||||||
|
echo " <button type='submit' name='action' class='btn btn-default' alt=\"".$text['button-toggle']."\" value='toggle' onclick=\"if (!confirm('".$text['confirm-toggle']."')) { this.blur(); return false; }\"><span class='fas fa-toggle-on'></span> ".$text['button-toggle']."</button>";
|
||||||
|
}
|
||||||
|
if (permission_exists('default_setting_delete')) {
|
||||||
|
echo " <button type='submit' name='action' class='btn btn-default' alt=\"".$text['button-delete']."\" value='delete' onclick=\"if (!confirm('".$text['confirm-delete']."')) { this.blur(); return false; }\"><span class='fas fa-trash'></span> ".$text['button-delete']."</button>";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
echo "</div>\n";
|
||||||
|
echo "<b>".$text['header-domain_settings']."</b>";
|
||||||
|
echo "<br><br>\n";
|
||||||
|
|
||||||
echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
echo "<table class='tr_hover' width='100%' border='0' cellpadding='0' cellspacing='0'>\n";
|
||||||
|
|
||||||
if (is_array($result) && sizeof($result) != 0) {
|
if (is_array($result) && @sizeof($result) != 0) {
|
||||||
$previous_category = '';
|
$previous_category = '';
|
||||||
foreach($result as $row) {
|
foreach($result as $row) {
|
||||||
if ($previous_category != $row['domain_setting_category']) {
|
if ($previous_category != $row['domain_setting_category']) {
|
||||||
$c = 0;
|
$c = 0;
|
||||||
echo "<tr>\n";
|
echo "<tr>\n";
|
||||||
echo " <td colspan='7' align='left'>\n";
|
echo " <td colspan='7' align='left' class='tr_link_void'>\n";
|
||||||
if ($previous_category != '') {
|
if ($previous_category != '') {
|
||||||
echo " <br /><br />\n";
|
echo " <br /><br />\n";
|
||||||
}
|
}
|
||||||
|
|
@ -279,12 +346,9 @@
|
||||||
echo "<th>".$text['label-value']."</th>";
|
echo "<th>".$text['label-value']."</th>";
|
||||||
echo "<th style='text-align: center;'>".$text['label-enabled']."</th>";
|
echo "<th style='text-align: center;'>".$text['label-enabled']."</th>";
|
||||||
echo "<th>".$text['label-description']."</th>";
|
echo "<th>".$text['label-description']."</th>";
|
||||||
echo "<td class='list_control_icons'>";
|
echo " <td class='tr_link_void' style='width: 1px;'>\n";
|
||||||
if (permission_exists('domain_setting_add')) {
|
if (permission_exists('domain_setting_add')) {
|
||||||
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>";
|
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_button_icon_add."</a>";
|
||||||
}
|
|
||||||
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>";
|
|
||||||
}
|
}
|
||||||
echo "</td>\n";
|
echo "</td>\n";
|
||||||
echo "</tr>\n";
|
echo "</tr>\n";
|
||||||
|
|
@ -357,64 +421,54 @@
|
||||||
}
|
}
|
||||||
echo " </td>\n";
|
echo " </td>\n";
|
||||||
echo " <td valign='top' class='".$row_style[$c]." tr_link_void' style='text-align: center;'>\n";
|
echo " <td valign='top' class='".$row_style[$c]." tr_link_void' style='text-align: center;'>\n";
|
||||||
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";
|
echo " <button type='submit' class='btn btn-link' name='action' value='toggle' onclick=\"document.getElementById('checkbox_".escape($row['domain_setting_uuid'])."').checked=true;\">".$text['label-'.escape($row['domain_setting_enabled'])]."</button>\n";
|
||||||
echo " </td>\n";
|
echo " </td>\n";
|
||||||
echo " <td valign='top' class='row_stylebg'>".escape($row['domain_setting_description'])." </td>\n";
|
echo " <td valign='top' class='row_stylebg'>".escape($row['domain_setting_description'])." </td>\n";
|
||||||
echo " <td class='list_control_icons'>";
|
echo " <td class='tr_link_void'>";
|
||||||
if (permission_exists('domain_setting_edit')) {
|
if (permission_exists('domain_setting_edit')) {
|
||||||
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>";
|
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_button_icon_edit."</a>";
|
||||||
}
|
|
||||||
if (permission_exists('domain_setting_delete')) {
|
|
||||||
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>";
|
|
||||||
}
|
}
|
||||||
echo " </td>\n";
|
echo " </td>\n";
|
||||||
echo "</tr>\n";
|
echo "</tr>\n";
|
||||||
$previous_category = $row['domain_setting_category'];
|
$previous_category = $row['domain_setting_category'];
|
||||||
if ($c==0) { $c=1; } else { $c=0; }
|
$c = $c ? 0 : 1;
|
||||||
} //end foreach
|
}
|
||||||
unset($sql, $result, $row_count);
|
unset($sql, $result, $row_count);
|
||||||
} //end if results
|
}
|
||||||
|
|
||||||
echo "<tr>\n";
|
echo "<tr>\n";
|
||||||
echo "<td colspan='20' 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>$paging_controls</td>\n";
|
|
||||||
echo " <td class='list_control_icons'>";
|
|
||||||
if (permission_exists('domain_setting_add')) {
|
|
||||||
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>";
|
|
||||||
}
|
|
||||||
if (permission_exists('domain_setting_delete') && $result_count > 0) {
|
|
||||||
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>";
|
|
||||||
}
|
|
||||||
echo " </td>\n";
|
|
||||||
echo " </tr>\n";
|
|
||||||
echo " </table>\n";
|
|
||||||
echo "</td>\n";
|
|
||||||
echo "</tr>\n";
|
|
||||||
|
|
||||||
echo "</table>";
|
echo "</table>";
|
||||||
|
|
||||||
|
echo "<div style='text-align: center; white-space: nowrap'>".$paging_controls."</div>";
|
||||||
|
|
||||||
echo "</form>";
|
echo "</form>";
|
||||||
|
|
||||||
echo "<br /><br />";
|
echo "<br /><br />";
|
||||||
|
|
||||||
// check or uncheck all category checkboxes
|
// check or uncheck all category checkboxes
|
||||||
if (isset($subcat_ids) && sizeof($subcat_ids) > 0) {
|
if (isset($subcat_ids) && sizeof($subcat_ids) > 0) {
|
||||||
echo "<script>\n";
|
echo "<script>\n";
|
||||||
echo " function check(what, category) {\n";
|
echo " function check(what, category) {\n";
|
||||||
foreach ($subcat_ids as $domain_setting_category => $checkbox_ids) {
|
foreach ($subcat_ids as $domain_setting_category => $checkbox_ids) {
|
||||||
echo "if (category == '".$domain_setting_category."') {\n";
|
echo "if (category == '".$domain_setting_category."') {\n";
|
||||||
foreach ($checkbox_ids as $index => $checkbox_id) {
|
foreach ($checkbox_ids as $index => $checkbox_id) {
|
||||||
echo "document.getElementById('".$checkbox_id."').checked = (what == 'all') ? true : false;\n";
|
echo "document.getElementById('".$checkbox_id."').checked = (what == 'all') ? true : false;\n";
|
||||||
|
}
|
||||||
|
echo "}\n";
|
||||||
}
|
}
|
||||||
echo "}\n";
|
echo " }\n";
|
||||||
|
echo "</script>\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//handle form actions
|
||||||
|
echo "<script type='text/javascript'>\n";
|
||||||
|
echo " function set_action(action) {\n";
|
||||||
|
echo " document.getElementById('action').value = action;\n";
|
||||||
|
echo " }\n";
|
||||||
|
|
||||||
|
echo " function submit_form(form_id) {\n";
|
||||||
|
echo " document.getElementById(form_id).submit();\n";
|
||||||
echo " }\n";
|
echo " }\n";
|
||||||
echo "</script>\n";
|
echo "</script>\n";
|
||||||
}
|
|
||||||
|
|
||||||
//include the footer
|
?>
|
||||||
//require_once "resources/footer.php";
|
|
||||||
|
|
||||||
?>
|
|
||||||
|
|
@ -581,6 +581,26 @@ $text['header-domains']['ru-ru'] = "Домены";
|
||||||
$text['header-domains']['sv-se'] = "Domäner";
|
$text['header-domains']['sv-se'] = "Domäner";
|
||||||
$text['header-domains']['uk-ua'] = "Домени";
|
$text['header-domains']['uk-ua'] = "Домени";
|
||||||
|
|
||||||
|
$text['header-domain_settings']['en-us'] = "Domain Settings";
|
||||||
|
$text['header-domain_settings']['ar-eg'] = "";
|
||||||
|
$text['header-domain_settings']['de-at'] = "Domain Einstellungen"; //copied from de-de
|
||||||
|
$text['header-domain_settings']['de-ch'] = "Domain Einstellungen"; //copied from de-de
|
||||||
|
$text['header-domain_settings']['de-de'] = "Domain Einstellungen";
|
||||||
|
$text['header-domain_settings']['es-cl'] = "Configuraciones de dominio";
|
||||||
|
$text['header-domain_settings']['es-mx'] = "Configuraciones de dominio"; //copied from es-cl
|
||||||
|
$text['header-domain_settings']['fr-ca'] = "Paramètres du domaine"; //copied from fr-fr
|
||||||
|
$text['header-domain_settings']['fr-fr'] = "Paramètres du domaine";
|
||||||
|
$text['header-domain_settings']['he-il'] = "";
|
||||||
|
$text['header-domain_settings']['it-it'] = "Parametro di Dominio";
|
||||||
|
$text['header-domain_settings']['nl-nl'] = "";
|
||||||
|
$text['header-domain_settings']['pl-pl'] = "Ustawienia domeny";
|
||||||
|
$text['header-domain_settings']['pt-br'] = "Configurações do dominio";
|
||||||
|
$text['header-domain_settings']['pt-pt'] = "Definições do Domínio";
|
||||||
|
$text['header-domain_settings']['ro-ro'] = "";
|
||||||
|
$text['header-domain_settings']['ru-ru'] = "Настройки домена";
|
||||||
|
$text['header-domain_settings']['sv-se'] = "Domän Inställning";
|
||||||
|
$text['header-domain_settings']['uk-ua'] = "Налаштування домену";
|
||||||
|
|
||||||
$text['header-domain_setting-edit']['en-us'] = "Domain Setting";
|
$text['header-domain_setting-edit']['en-us'] = "Domain Setting";
|
||||||
$text['header-domain_setting-edit']['ar-eg'] = "";
|
$text['header-domain_setting-edit']['ar-eg'] = "";
|
||||||
$text['header-domain_setting-edit']['de-at'] = "Domain Einstellungen"; //copied from de-de
|
$text['header-domain_setting-edit']['de-at'] = "Domain Einstellungen"; //copied from de-de
|
||||||
|
|
|
||||||
|
|
@ -561,17 +561,14 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
||||||
if (permission_exists('domain_add')) { //only for superadmin, not admin editing their own domain
|
if (permission_exists('domain_add')) { //only for superadmin, not admin editing their own domain
|
||||||
echo " <input type='button' class='btn' name='' alt='".$text['button-back']."' onclick=\"window.location='domains.php'\" value='".$text['button-back']."'>\n";
|
echo " <input type='button' class='btn' name='' alt='".$text['button-back']."' onclick=\"window.location='domains.php'\" value='".$text['button-back']."'>\n";
|
||||||
}
|
}
|
||||||
//if (permission_exists("domain_select") && permission_exists("domain_setting_add") && count($_SESSION['domains']) > 1) {
|
if (permission_exists("domain_select") && is_array($_SESSION['domains']) && @sizeof($_SESSION['domains']) > 1) {
|
||||||
// echo " <input type='button' class='btn' id='button_copy' alt='".$text['button-copy']."' onclick='show_domains();' value='".$text['button-copy']."'>";
|
echo " <select id='domains' class='formfld' style='width: auto; margin-right: 15px;' onchange=\"window.location.href='?id=' + document.getElementById('domains').options[document.getElementById('domains').selectedIndex].value;\">\n";
|
||||||
// echo " <input type='button' class='btn' style='display: none;' id='button_back' alt='".$text['button-back']."' onclick='hide_domains();' value='".$text['button-back']."'> ";
|
foreach ($_SESSION['domains'] as $domain) {
|
||||||
// echo " <select class='formfld' style='display: none; width: auto;' name='target_domain_uuid' id='target_domain_uuid'>\n";
|
$selected = $domain["domain_uuid"] == $domain_uuid ? "selected='selected'" : null;
|
||||||
// echo " <option value=''>Select Domain...</option>\n";
|
echo " <option value='".escape($domain["domain_uuid"])."' ".$selected.">".escape($domain["domain_name"])."</option>\n";
|
||||||
// foreach ($_SESSION['domains'] as $domain) {
|
}
|
||||||
// echo " <option value='".escape($domain["domain_uuid"])."'>".escape($domain["domain_name"])."</option>\n";
|
echo " </select>\n";
|
||||||
// }
|
}
|
||||||
// echo " </select>\n";
|
|
||||||
// echo " <input type='button' class='btn' id='button_paste' style='display: none;' alt='".$text['button-paste']."' value='".$text['button-paste']."' onclick=\"$('#frm').attr('action', PROJECT_PATH.'/core/domain_settings/domain_settings.php?search='+$('#domain_setting_search').val()).submit();\">";
|
|
||||||
//}
|
|
||||||
if (permission_exists('domain_export')) {
|
if (permission_exists('domain_export')) {
|
||||||
echo " <input type='button' class='btn' name='' alt='".$text['button-export']."' onclick=\"window.location='".PROJECT_PATH."/app/domain_export/index.php?id=".escape($domain_uuid)."'\" value='".$text['button-export']."'>\n";
|
echo " <input type='button' class='btn' name='' alt='".$text['button-export']."' onclick=\"window.location='".PROJECT_PATH."/app/domain_export/index.php?id=".escape($domain_uuid)."'\" value='".$text['button-export']."'>\n";
|
||||||
}
|
}
|
||||||
|
|
@ -642,6 +639,7 @@ if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) {
|
||||||
echo "</form>";
|
echo "</form>";
|
||||||
|
|
||||||
if ($action == "update" && permission_exists('domain_setting_view')) {
|
if ($action == "update" && permission_exists('domain_setting_view')) {
|
||||||
|
echo "<br />\n";
|
||||||
require PROJECT_PATH."core/domain_settings/domain_settings.php";
|
require PROJECT_PATH."core/domain_settings/domain_settings.php";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -190,6 +190,26 @@ $text['message-copy']['sv-se'] = "Kopiering Slutförd";
|
||||||
$text['message-copy']['uk-ua'] = "Скопійовано";
|
$text['message-copy']['uk-ua'] = "Скопійовано";
|
||||||
$text['message-copy']['tr-tr'] = "Kopyalama İşlemi Tamamlandı";
|
$text['message-copy']['tr-tr'] = "Kopyalama İşlemi Tamamlandı";
|
||||||
|
|
||||||
|
$text['message-toggle']['en-us'] = "Toggle Completed";
|
||||||
|
$text['message-toggle']['ar-eg'] = "الانتهاء من تبديل";
|
||||||
|
$text['message-toggle']['de-at'] = "Toggle Completed"; //copied from de-de
|
||||||
|
$text['message-toggle']['de-ch'] = "Toggle Completed"; //copied from de-de
|
||||||
|
$text['message-toggle']['de-de'] = "Toggle Completed";
|
||||||
|
$text['message-toggle']['es-cl'] = "Alternar Completado";
|
||||||
|
$text['message-toggle']['es-mx'] = "Alternar Completado"; //copied from es-cl
|
||||||
|
$text['message-toggle']['fr-ca'] = "Basculer Terminé"; //copied from fr-fr
|
||||||
|
$text['message-toggle']['fr-fr'] = "Basculer Terminé";
|
||||||
|
$text['message-toggle']['he-il'] = "הושלם Toggle";
|
||||||
|
$text['message-toggle']['it-it'] = "Commutazione Completata";
|
||||||
|
$text['message-toggle']['nl-nl'] = "";
|
||||||
|
$text['message-toggle']['pl-pl'] = "Przegubowe Zakończony";
|
||||||
|
$text['message-toggle']['pt-br'] = "Alternar Concluído"; //copied from pt-pt
|
||||||
|
$text['message-toggle']['pt-pt'] = "Alternar Concluído";
|
||||||
|
$text['message-toggle']['ro-ro'] = "Completat toggle";
|
||||||
|
$text['message-toggle']['ru-ru'] = "Переключить выполнено";
|
||||||
|
$text['message-toggle']['sv-se'] = "Växla Avslutade";
|
||||||
|
$text['message-toggle']['uk-ua'] = "переключити Завершений";
|
||||||
|
|
||||||
$text['message-invalid_credentials']['en-us'] = "Invalid Username and/or Password";
|
$text['message-invalid_credentials']['en-us'] = "Invalid Username and/or Password";
|
||||||
$text['message-invalid_credentials']['ar-eg'] = "";
|
$text['message-invalid_credentials']['ar-eg'] = "";
|
||||||
$text['message-invalid_credentials']['de-at'] = "Ungültiger Benutzername und/oder Passwort"; //copied from de-de
|
$text['message-invalid_credentials']['de-at'] = "Ungültiger Benutzername und/oder Passwort"; //copied from de-de
|
||||||
|
|
|
||||||
|
|
@ -639,6 +639,7 @@ $default_login = ($_REQUEST['login'] == 'default') ? true : false;
|
||||||
|
|
||||||
button.btn-icon {
|
button.btn-icon {
|
||||||
margin: 0 2px;
|
margin: 0 2px;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* control icons (define after the default bootstrap btn-default class) */
|
/* control icons (define after the default bootstrap btn-default class) */
|
||||||
|
|
@ -932,16 +933,27 @@ $default_login = ($_REQUEST['login'] == 'default') ? true : false;
|
||||||
font-weight: bold
|
font-weight: bold
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a,
|
||||||
|
button.btn.btn-link {
|
||||||
color: <?php echo ($_SESSION['theme']['text_link_color']['text'] != '') ? $_SESSION['theme']['text_link_color']['text'] : '#004083'; ?>;
|
color: <?php echo ($_SESSION['theme']['text_link_color']['text'] != '') ? $_SESSION['theme']['text_link_color']['text'] : '#004083'; ?>;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover,
|
||||||
|
button.btn.btn-link:hover {
|
||||||
color: <?php echo ($_SESSION['theme']['text_link_color_hover']['text'] != '') ? $_SESSION['theme']['text_link_color_hover']['text'] : '#5082ca'; ?>;
|
color: <?php echo ($_SESSION['theme']['text_link_color_hover']['text'] != '') ? $_SESSION['theme']['text_link_color_hover']['text'] : '#5082ca'; ?>;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button.btn.btn-link {
|
||||||
|
margin: 0;
|
||||||
|
margin-top: -2px;
|
||||||
|
padding: 0;
|
||||||
|
border: none;
|
||||||
|
font-size: inherit;
|
||||||
|
font-family: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
form {
|
form {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue