mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
21 lines
955 B
PHP
21 lines
955 B
PHP
<?php
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
//crmv@26896
|
|
global $current_user;
|
|
$relation_id = $_REQUEST['relation_id'];
|
|
$tabid = $_REQUEST['tabid'];
|
|
if ($relation_id != '' & $tabid != '') {
|
|
$tb_count = 1;
|
|
$result = $adb->pquery('select tb_count from vte_turbolift_count where userid = ? and relation_id = ? and tabid = ?',array($current_user->id,$relation_id,$tabid));
|
|
if ($result && $adb->num_rows($result) > 0) {
|
|
$tb_count = $adb->query_result($result,0,'tb_count')+1;
|
|
$adb->pquery('update vte_turbolift_count set tb_count = ? where userid = ? and relation_id = ? and tabid = ?',array($tb_count,$current_user->id,$relation_id,$tabid));
|
|
} else {
|
|
$adb->pquery('insert into vte_turbolift_count values (?,?,?,?)',array($current_user->id,$relation_id,$tabid,$tb_count));
|
|
}
|
|
}
|
|
//crmv@26896e
|
|
?>
|