You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							56 lines
						
					
					
						
							2.1 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							56 lines
						
					
					
						
							2.1 KiB
						
					
					
				| <?php | |
| /********************************************************************************* | |
|  * The contents of this file are subject to the SugarCRM Public License Version 1.1.2 | |
|  * ("License"); You may not use this file except in compliance with the  | |
|  * License. You may obtain a copy of the License at http://www.sugarcrm.com/SPL | |
|  * Software distributed under the License is distributed on an  "AS IS"  basis, | |
|  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for | |
|  * the specific language governing rights and limitations under the License. | |
|  * The Original Code is:  SugarCRM Open Source | |
|  * The Initial Developer of the Original Code is SugarCRM, Inc. | |
|  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.; | |
|  * All Rights Reserved. | |
|  * Contributor(s): ______________________________________. | |
|  ********************************************************************************/ | |
| /********************************************************************************* | |
|  * $Header:  vtiger_crm/sugarcrm/modules/Cases/SaveContactCaseRelationship.php,v 1.1 2004/08/17 15:03:56 gjayakrishnan Exp $ | |
|  * Description:  TODO: To be written. | |
|  ********************************************************************************/ | |
| 
 | |
| require_once('modules/Cases/ContactCaseRelationship.php'); | |
| require_once('include/logging.php'); | |
| require_once('include/utils.php'); | |
| 
 | |
| $log =& LoggerManager::getLogger('save'); | |
| 
 | |
| $focus = new ContactCaseRelationship(); | |
| 
 | |
| $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); | |
| } | |
| 
 | |
| // send them to the edit screen. | |
| if(isset($_REQUEST['record']) && $_REQUEST['record'] != "") | |
| { | |
|     $recordID = $_REQUEST['record']; | |
| } | |
| 
 | |
| $focus->save(); | |
| $recordID = $focus->id; | |
| 
 | |
| $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']}"; | |
| $log->debug("about to post header URL of: $header_URL"); | |
| 
 | |
| header($header_URL); | |
| ?> | |
| 
 | |
| 
 |