0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
vtiger
/
5.0.4
/
standard
/
htdocs
/
modules
/
Calendar
/
[
Home
]
File: updateRelations.php
<?php /********************************************************************************* ** The contents of this file are subject to the vtiger CRM Public License Version 1.0 * ("License"); You may not use this file except in compliance with the License * The Original Code is: vtiger CRM Open Source * The Initial Developer of the Original Code is vtiger. * Portions created by vtiger are Copyright (C) vtiger. * All Rights Reserved. * ********************************************************************************/ require_once('include/database/PearDatabase.php'); global $adb; $idlist = $_REQUEST['idlist']; if(isset($_REQUEST['idlist']) && $_REQUEST['idlist'] != '' && $_REQUEST['destination_module'] == 'Contacts') { //split the string and store in an array $storearray = explode (";",$idlist); foreach($storearray as $id) { if($id != '') { $record = $_REQUEST['parentid']; $sql = "insert into vtiger_cntactivityrel values (?,?)"; $adb->pquery($sql, array($id, $_REQUEST["parentid"])); } } header("Location: index.php?action=CallRelatedList&module=Calendar&activity_mode=Events&record=".$record); } elseif(isset($_REQUEST['entityid']) && $_REQUEST['entityid'] != '' && $_REQUEST['destination_module'] == 'Contacts') { $record = $_REQUEST["parid"]; $sql = "insert into vtiger_cntactivityrel values (?,?)"; $adb->pquery($sql, array($_REQUEST["entityid"], $_REQUEST["parid"])); header("Location: index.php?action=DetailView&module=Calendar&activity_mode=Events&record=".$record); } //This if for adding the vtiger_users if(isset($_REQUEST['idlist']) && $_REQUEST['idlist'] != '' && $_REQUEST['destination_module'] == 'Users') { //split the string and store in an array $storearray = explode (";",$idlist); foreach($storearray as $id) { if($id != '') { $record = $_REQUEST['parentid']; $sql = "insert into vtiger_salesmanactivityrel values (?,?)"; $adb->pquery($sql, array($id, $_REQUEST["parentid"])); } } header("Location: index.php?action=DetailView&module=Calendar&activity_mode=Events&record=".$record); } elseif(isset($_REQUEST['entityid']) && $_REQUEST['entityid'] != '' && $_REQUEST['destination_module'] == 'Users') { $record = $_REQUEST['parid']; $sql = "insert into vtiger_salesmanactivityrel values (?,?)"; $adb->pquery($sql, array($_REQUEST["entityid"], $_REQUEST["parid"])); header("Location: index.php?action=DetailView&module=Calendar&activity_mode=Events&record=".$record); } ?>