123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?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 <[email protected]>
- Portions created by the Initial Developer are Copyright (C) 2008-2023
- the Initial Developer. All Rights Reserved.
- Contributor(s):
- KonradSC <[email protected]>
- */
- //includes files
- require_once dirname(__DIR__, 2) . "/resources/require.php";
- require_once "resources/check_auth.php";
- //check permissions
- if (permission_exists('bulk_account_settings_devices')) {
- //access granted
- }
- else {
- echo "access denied";
- exit;
- }
- //add multi-lingual support
- $language = new text;
- $text = $language->get();
- //check for the ids
- if (is_array($_REQUEST) && sizeof($_REQUEST) > 0) {
- $device_uuids = $_REQUEST["id"];
- $option_selected = $_REQUEST["option_selected"];
- $new_setting = $_REQUEST["new_setting"];
- foreach($device_uuids as $device_uuid) {
- $device_uuid = check_str($device_uuid);
- if ($device_uuid != '') {
- //line settings
- if (preg_match ('/line/', $option_selected)) {
-
- preg_match ('/line_(.)/', $option_selected, $matches);
- $line_number = $matches[1];
- $matches = null;
- preg_match ('/line_._(.*$)/', $option_selected, $matches);
- $option_line = $matches[1];
- $sql = "select * from v_device_lines ";
- $sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' ";
- $sql .= "and device_uuid = '".$device_uuid."' ";
- $sql .= "and line_number = '".$line_number."' ";
- $database = new database;
- $devices = $database->select($sql, 'all');
- if (is_array($devices)) {
- foreach ($devices as &$row) {
- $device_line_uuid = $row["device_line_uuid"];
- }
- unset ($prep_statement);
- }
-
- $array["device_lines"][$i]["device_line_uuid"] = $device_line_uuid;
- $array["device_lines"][$i][$option_line] = $new_setting;
- $array["device_lines"][$i]["domain_uuid"] = $domain_uuid;
- $array["device_lines"][$i]["device_uuid"] = $device_uuid;
- $database = new database;
- $database->app_name = 'bulk_account_settings';
- $database->app_uuid = null;
- $database->save($array);
- $message = $database->message;
-
- unset($database,$array,$i);
- }
- //other device settings
- else {
- $array["devices"][$i]["domain_uuid"] = $domain_uuid;
- $array["devices"][$i]["device_uuid"] = $device_uuid;
- $array["devices"][$i][$option_selected] = $new_setting;
- $database = new database;
- $database->app_name = 'bulk_account_settings';
- $database->app_uuid = null;
- $database->save($array);
- $message = $database->message;
-
- //echo "<pre>".print_r($message, true)."<pre>\n";
- //exit;
-
- unset($database,$array,$i);
- }
- }
- }
- }
- //redirect the browser
- $_SESSION["message"] = $text['message-update'];
- header("Location: bulk_account_settings_devices.php?option_selected=".$option_selected."");
- return;
- ?>
|