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"); ?>