mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
33 lines
1.1 KiB
PHP
33 lines
1.1 KiB
PHP
<?php
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
|
|
require_once('include/database/PearDatabase.php');
|
|
require_once('include/utils/utils.php');
|
|
global $current_user,$currentModule;
|
|
global $table_prefix;
|
|
global $adb;
|
|
|
|
$tabid=getTabid($currentModule);
|
|
|
|
//crmv@25255
|
|
if(isset($_REQUEST['selectedColumnsString'])) {
|
|
$selected_col_string = rtrim($_REQUEST['selectedColumnsString'],",");
|
|
$merge_criteria_cols = explode(',',$selected_col_string);
|
|
|
|
// Drop all the existing merge field selections
|
|
$adb->pquery("DELETE FROM {$table_prefix}_user2mergefields WHERE tabid=? AND userid=?", array($tabid, $current_user->id));
|
|
|
|
if(!empty($merge_criteria_cols)) {
|
|
// Update the new merge field selections
|
|
foreach($merge_criteria_cols as $merge_fieldid) {
|
|
$adb->pquery("INSERT INTO {$table_prefix}_user2mergefields (userid, tabid, fieldid, visible) VALUES (?,?,?,?)",
|
|
array($current_user->id, $tabid, $merge_fieldid, 1));
|
|
}
|
|
}
|
|
}
|
|
//crmv@25255e
|
|
|
|
VteSession::remove('merge_user_fields'); //crmv@26280
|