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.
78 lines
3.2 KiB
78 lines
3.2 KiB
4 months ago
|
<?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/ContactCaseRelationshipEdit.php,v 1.3 2004/10/29 09:55:09 jack Exp $
|
||
|
* Description: TODO: To be written.
|
||
|
* Portions created by SugarCRM are Copyright (C) SugarCRM, Inc.
|
||
|
* All Rights Reserved.
|
||
|
* Contributor(s): ______________________________________..
|
||
|
********************************************************************************/
|
||
|
|
||
|
require_once('XTemplate/xtpl.php');
|
||
|
require_once('modules/Cases/ContactCaseRelationship.php');
|
||
|
require_once('modules/Cases/Forms.php');
|
||
|
require_once('include/utils.php');
|
||
|
|
||
|
global $app_strings;
|
||
|
global $app_list_strings;
|
||
|
global $mod_strings;
|
||
|
|
||
|
$focus = new ContactCaseRelationship();
|
||
|
|
||
|
if(isset($_REQUEST['record'])) {
|
||
|
$focus->retrieve($_REQUEST['record']);
|
||
|
}
|
||
|
|
||
|
if(isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true') {
|
||
|
$focus->id = "";
|
||
|
}
|
||
|
|
||
|
// Prepopulate either side of the relationship if passed in.
|
||
|
safe_map('case_name', $focus);
|
||
|
safe_map('case_id', $focus);
|
||
|
safe_map('contact_name', $focus);
|
||
|
safe_map('contact_id', $focus);
|
||
|
safe_map('contact_role', $focus);
|
||
|
|
||
|
|
||
|
$theme_path="themes/".$theme."/";
|
||
|
$image_path=$theme_path."images/";
|
||
|
require_once($theme_path.'layout_utils.php');
|
||
|
|
||
|
$log->info("Contact case relationship");
|
||
|
|
||
|
$xtpl=new XTemplate ('modules/Cases/ContactCaseRelationshipEdit.html');
|
||
|
$xtpl->assign("MOD", $mod_strings);
|
||
|
$xtpl->assign("APP", $app_strings);
|
||
|
|
||
|
$xtpl->assign("RETURN_URL", "&return_module=$currentModule&return_action=DetailView&return_id=$focus->id");
|
||
|
$xtpl->assign("RETURN_MODULE", $_REQUEST['return_module']);
|
||
|
$xtpl->assign("RETURN_ACTION", $_REQUEST['return_action']);
|
||
|
$xtpl->assign("RETURN_ID", $_REQUEST['return_id']);
|
||
|
$xtpl->assign("THEME", $theme);
|
||
|
$xtpl->assign("IMAGE_PATH", $image_path);$xtpl->assign("PRINT_URL", "phprint.php?jt=".session_id().$GLOBALS['request_string']);
|
||
|
$xtpl->assign("ID", $focus->id);
|
||
|
$xtpl->assign("CONTACT", Array("NAME" => $focus->contact_name, "ID" => $focus->contact_id));
|
||
|
$xtpl->assign("CASES", Array("NAME" => $focus->case_name, "ID" => $focus->case_id));
|
||
|
|
||
|
$xtpl->assign("CONTACT_ROLE_OPTIONS", get_select_options_with_id($app_list_strings['case_relationship_type_dom'], $focus->contact_role));
|
||
|
|
||
|
|
||
|
$xtpl->parse("main");
|
||
|
|
||
|
$xtpl->out("main");
|
||
|
|
||
|
?>
|