0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
vtiger
/
5.0.4
/
standard
/
htdocs
/
modules
/
Users
/
[
Home
]
File: DeleteGroup.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/utils/UserInfoUtil.php'); global $adb; $del_id = $_REQUEST['delete_group_id']; $transfer_group_id = $_REQUEST['transfer_group_id']; $transferType = $_REQUEST['assigntype']; if($transferType == 'T') { $transferId = $_REQUEST['transfer_group_id']; $transferType = "Groups"; } elseif($transferType == 'U') { $transferId = $_REQUEST['transfer_user_id']; $transferType = "Users"; } //Updating the user2 vtiger_role vtiger_table deleteGroup($del_id,$transferId,$transferType); header("Location: index.php?action=listgroups&module=Settings&parenttab=Settings"); ?>