mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-21 23:47:57 +00:00
62 lines
1.8 KiB
PHP
Executable File
62 lines
1.8 KiB
PHP
Executable File
<?php
|
|
if (!defined('sugarEntry') || !sugarEntry) {
|
|
die('Not A Valid Entry Point');
|
|
}
|
|
|
|
require_once('modules/SecurityGroups/SecurityGroupUserRelationship.php');
|
|
|
|
require_once('include/utils.php');
|
|
|
|
|
|
$focus = new SecurityGroupUserRelationship();
|
|
|
|
$focus->retrieve($_REQUEST['record']);
|
|
|
|
foreach ($focus->column_fields as $field) {
|
|
safe_map($field, $focus, true);
|
|
}
|
|
|
|
foreach ($focus->additional_column_fields as $field) {
|
|
safe_map($field, $focus, true);
|
|
}
|
|
|
|
if (!is_admin($GLOBALS['current_user'])
|
|
&& (empty($focus->fetched_row['id'])
|
|
|| $focus->fetched_row['securitygroup_id'] != $focus->securitygroup_id
|
|
|| $focus->fetched_row['user_id'] != $focus->user_id))
|
|
{
|
|
sugar_die('Access denied');
|
|
}
|
|
|
|
// send them to the edit screen.
|
|
if (isset($_REQUEST['record']) && $_REQUEST['record'] != "") {
|
|
$recordID = $_REQUEST['record'];
|
|
}
|
|
|
|
if (isset($_POST['noninheritable']) && $_POST['noninheritable'] == '1') {
|
|
$focus->noninheritable = 1;
|
|
} else {
|
|
$focus->noninheritable = 0;
|
|
}
|
|
|
|
if (isset($_POST['primary_group']) && $_POST['primary_group'] == '1') {
|
|
$focus->primary_group = 1;
|
|
//unset all other primary groups for this user
|
|
$db = DBManagerFactory::getInstance();
|
|
$query = "update securitygroups_users set primary_group = 0 where user_id = '".$focus->user_id."' and id != '".$focus->id."' and primary_group = 1 and deleted = 0";
|
|
$db->query($query);
|
|
} else {
|
|
$focus->primary_group = 0;
|
|
}
|
|
|
|
|
|
$focus->save();
|
|
$recordID = $focus->id;
|
|
|
|
$GLOBALS['log']->debug("Saved record with id of ".$recordID);
|
|
|
|
$header_URL = "Location: index.php?action={$_REQUEST['return_action']}&module={$_REQUEST['return_module']}&record={$_REQUEST['return_id']}";
|
|
$GLOBALS['log']->debug("about to post header URL of: $header_URL");
|
|
|
|
header($header_URL);
|