<?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/Calls/EditView.php,v 1.6 2005/01/13 11:43:46 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('data/Tracker.php'); require_once('modules/Calls/Call.php'); require_once('modules/Calls/Forms.php'); global $app_strings; global $app_list_strings; global $current_language; global $current_user; // Unimplemented until jscalendar language files are fixed // global $current_language; // global $default_language; // global $cal_codes; $focus = new Call(); if(isset($_REQUEST['record'])) { $focus->retrieve($_REQUEST['record']); } if(isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true') { $focus->id = ""; } //setting default date and time if (is_null($focus->date_start)) $focus->date_start = date('Y-m-d'); if (is_null($focus->time_start)) $focus->time_start = date('H:i'); if (is_null($focus->duration_hours)) $focus->duration_hours = "0"; if (is_null($focus->duration_minutes)) $focus->duration_minutes = "15"; //needed when creating a new call with default values passed in if (isset($_REQUEST['contact_name']) && is_null($focus->contact_name)) { $focus->contact_name = $_REQUEST['contact_name']; } if (isset($_REQUEST['contact_id']) && is_null($focus->contact_id)) { $focus->contact_id = $_REQUEST['contact_id']; } if (isset($_REQUEST['parent_name'])) { $focus->parent_name = $_REQUEST['parent_name']; } if (isset($_REQUEST['parent_id'])) { $focus->parent_id = $_REQUEST['parent_id']; } if (isset($_REQUEST['parent_type'])) { $focus->parent_type = $_REQUEST['parent_type']; } elseif (is_null($focus->parent_type)) { $focus->parent_type = $app_list_strings['record_type_default_key']; } global $theme; $theme_path="themes/".$theme."/"; $image_path=$theme_path."images/"; require_once($theme_path.'layout_utils.php'); $log->info("Call detail view"); $xtpl=new XTemplate ('modules/Calls/EditView.html'); $xtpl->assign("MOD", $mod_strings); $xtpl->assign("APP", $app_strings); // Unimplemented until jscalendar language files are fixed // $xtpl->assign("CALENDAR_LANG", ((empty($cal_codes[$current_language])) ? $cal_codes[$default_language] : $cal_codes[$current_language])); $xtpl->assign("CALENDAR_LANG", "en");$xtpl->assign("CALENDAR_DATEFORMAT", parse_calendardate($app_strings['NTC_DATE_FORMAT'])); if (!isset($focus->id)) $xtpl->assign("USER_ID", $current_user->id); if (!isset($focus->id) && isset($_REQUEST['contact_id'])) $xtpl->assign("CONTACT_ID", $_REQUEST['contact_id']); if (isset($_REQUEST['return_module'])) $xtpl->assign("RETURN_MODULE", $_REQUEST['return_module']); if (isset($_REQUEST['return_action'])) $xtpl->assign("RETURN_ACTION", $_REQUEST['return_action']); if (isset($_REQUEST['return_id'])) $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("JAVASCRIPT", get_set_focus_js().get_validate_record_js()); $xtpl->assign("ID", $focus->id); $xtpl->assign("PARENT_NAME", $focus->parent_name); $xtpl->assign("PARENT_RECORD_TYPE", $focus->parent_type); $xtpl->assign("PARENT_ID", $focus->parent_id); if (isset($focus->name)) $xtpl->assign("NAME", $focus->name); else $xtpl->assign("NAME", ""); $xtpl->assign("DATE_START", $focus->date_start); $xtpl->assign("TIME_START", substr($focus->time_start,0,5)); $xtpl->assign("DESCRIPTION", $focus->description); if ($focus->assigned_user_id == '' && (!isset($focus->id) || $focus->id=0)) $focus->assigned_user_id = $current_user->id; //create the html select code here and assign it $result = get_group_options(); $nameArray = mysql_fetch_array($result); $GROUP_SELECT_OPTION = '<select name="assigned_group_name">'; do { $groupname=$nameArray["name"]; $GROUP_SELECT_OPTION .= '<option value="'; $GROUP_SELECT_OPTION .= $groupname; $GROUP_SELECT_OPTION .= '">'; $GROUP_SELECT_OPTION .= $nameArray["name"]; $GROUP_SELECT_OPTION .= '</option>'; }while($nameArray = mysql_fetch_array($result)); $GROUP_SELECT_OPTION .='<option value=none>none</option>'; $GROUP_SELECT_OPTION .= ' </select>'; $xtpl->assign("ASSIGNED_USER_GROUP_OPTIONS",$GROUP_SELECT_OPTION); $xtpl->assign("ASSIGNED_USER_OPTIONS", get_select_options_with_id(get_user_array(TRUE, "Active", $focus->assigned_user_id), $focus->assigned_user_id)); $xtpl->assign("DURATION_HOURS", $focus->duration_hours); $xtpl->assign("TYPE_OPTIONS", get_select_options_with_id($app_list_strings['record_type_display'], $focus->parent_type)); $xtpl->assign("STATUS_OPTIONS", get_select_options_with_id($app_list_strings['call_status_dom'],$focus->status)); $xtpl->assign("DURATION_MINUTES_OPTIONS", get_select_options_with_id($focus->minutes_values,$focus->duration_minutes)); if (isset($focus->parent_type) && $focus->parent_type != "") { $change_parent_button = "<input title='".$app_strings['LBL_CHANGE_BUTTON_TITLE']."' tabindex='2' accessKey='".$app_strings['LBL_CHANGE_BUTTON_KEY']."' type='button' class='button' value='".$app_strings['LBL_CHANGE_BUTTON_LABEL']."' name='button' LANGUAGE=javascript onclick='return window.open(\"index.php?module=\"+ document.EditView.parent_type.value + \"&action=Popup&html=Popup_picker&form=TasksEditView\",\"test\",\"width=600,height=400,resizable=1,scrollbars=1\");'>"; $xtpl->assign("CHANGE_PARENT_BUTTON", $change_parent_button); } $xtpl->parse("main"); $xtpl->out("main"); ?>