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.
		
		
		
		
		
			
		
			
				
					
					
						
							144 lines
						
					
					
						
							6.5 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							144 lines
						
					
					
						
							6.5 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: /advent/projects/wesat/vtiger_crm/sugarcrm/modules/Activities/DetailView.php,v 1.12 2005/03/17 11:26:49 ray 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/Activities/Activity.php');
							 | 
						|
								require_once('modules/Activities/Forms.php');
							 | 
						|
								require_once('include/CustomFieldUtil.php');
							 | 
						|
								require_once('include/database/PearDatabase.php');
							 | 
						|
								require_once('include/utils.php');
							 | 
						|
								require_once('include/uifromdbutil.php');
							 | 
						|
								global $mod_strings;
							 | 
						|
								if( $_SESSION['mail_send_error']!="")
							 | 
						|
								{
							 | 
						|
									echo '<b><font color=red>'. $mod_strings{"LBL_NOTIFICATION_ERROR"}.'</font></b><br>';
							 | 
						|
								}
							 | 
						|
								session_unregister('mail_send_error');
							 | 
						|
								
							 | 
						|
								$activity_mode = $_REQUEST['activity_mode'];
							 | 
						|
								if($activity_mode == 'Task')
							 | 
						|
								{
							 | 
						|
								        $tab_type = 'Activities';
							 | 
						|
								}
							 | 
						|
								elseif($activity_mode == 'Events')
							 | 
						|
								{
							 | 
						|
								        $tab_type = 'Events';
							 | 
						|
								}
							 | 
						|
								$tab_id=getTabid($tab_type);
							 | 
						|
								
							 | 
						|
								$focus = new Activity();
							 | 
						|
								
							 | 
						|
								if(isset($_REQUEST['record']) && isset($_REQUEST['record'])) {
							 | 
						|
								    $focus->retrieve_entity_info($_REQUEST['record'],$tab_type);
							 | 
						|
								    $focus->id = $_REQUEST['record'];	
							 | 
						|
								    $focus->name=$focus->column_fields['subject'];		
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								if(isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true') {
							 | 
						|
									$focus->id = "";
							 | 
						|
								} 
							 | 
						|
								
							 | 
						|
								//needed when creating a new task with default values passed in
							 | 
						|
								if (isset($_REQUEST['contactname']) && is_null($focus->contactname)) {
							 | 
						|
									$focus->contactname = $_REQUEST['contactname'];
							 | 
						|
								}
							 | 
						|
								if (isset($_REQUEST['contact_id']) && is_null($focus->contact_id)) {
							 | 
						|
									$focus->contact_id = $_REQUEST['contact_id'];
							 | 
						|
								}
							 | 
						|
								if (isset($_REQUEST['opportunity_name']) && is_null($focus->parent_name)) {
							 | 
						|
									$focus->parent_name = $_REQUEST['opportunity_name'];
							 | 
						|
								}
							 | 
						|
								if (isset($_REQUEST['opportunity_id']) && is_null($focus->parent_id)) {
							 | 
						|
									$focus->parent_id = $_REQUEST['opportunity_id'];
							 | 
						|
								}
							 | 
						|
								if (isset($_REQUEST['accountname']) && is_null($focus->parent_name)) {
							 | 
						|
									$focus->parent_name = $_REQUEST['accountname'];
							 | 
						|
								}
							 | 
						|
								if (isset($_REQUEST['accountid']) && is_null($focus->parent_id)) {
							 | 
						|
									$focus->parent_id = $_REQUEST['accountid'];
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								global $theme;
							 | 
						|
								$theme_path="themes/".$theme."/";
							 | 
						|
								$image_path=$theme_path."images/";
							 | 
						|
								require_once($theme_path.'layout_utils.php');
							 | 
						|
								
							 | 
						|
								$log->info("Activities detail view");
							 | 
						|
								
							 | 
						|
								$xtpl=new XTemplate ('modules/Activities/DetailView.html');
							 | 
						|
								$xtpl->assign("MOD", $mod_strings);
							 | 
						|
								$xtpl->assign("APP", $app_strings);
							 | 
						|
								$xtpl->assign("ACTIVITY_MODE", $activity_mode);
							 | 
						|
								
							 | 
						|
								if (isset($focus->name)) $xtpl->assign("NAME", $focus->name);
							 | 
						|
								else $xtpl->assign("NAME", "");
							 | 
						|
								
							 | 
						|
								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'].'&activity_mode='.$activity_mode);
							 | 
						|
								$xtpl->assign("JAVASCRIPT", get_set_focus_js().get_validate_record_js());
							 | 
						|
								$xtpl->assign("ID", $focus->id);
							 | 
						|
								$xtpl->assign("NAME", $focus->name);
							 | 
						|
								//get Block 1 Information
							 | 
						|
								$block_1 = getDetailBlockInformation($tab_type,1,$focus->column_fields);
							 | 
						|
								$xtpl->assign("BLOCK1", $block_1);
							 | 
						|
								
							 | 
						|
								//get Reminder Information
							 | 
						|
								$block_7 = getDetailBlockInformation($tab_type,7,$focus->column_fields);
							 | 
						|
								$xtpl->assign("BLOCK7", $block_7);
							 | 
						|
								
							 | 
						|
								//get Address Information
							 | 
						|
								
							 | 
						|
								$block_2 = getDetailBlockInformation($tab_type,2,$focus->column_fields);
							 | 
						|
								$xtpl->assign("BLOCK2", $block_2);
							 | 
						|
								//get Description Information
							 | 
						|
								
							 | 
						|
								$permissionData = $_SESSION['action_permission_set'];
							 | 
						|
								if(isPermitted("Activities",1,$_REQUEST['record']) == 'yes')
							 | 
						|
								{
							 | 
						|
									$xtpl->assign("EDITBUTTON","<td><input title=\"$app_strings[LBL_EDIT_BUTTON_TITLE]\" accessKey=\"$app_strings[LBL_EDIT_BUTTON_KEY]\" class=\"button\" onclick=\"this.form.return_module.value='Activities'; this.form.return_action.value='DetailView'; this.form.return_id.value='".$_REQUEST['record']."'; this.form.action.value='EditView'\" type=\"submit\" name=\"Edit\" value=\"$app_strings[LBL_EDIT_BUTTON_LABEL]\"></td>");
							 | 
						|
								
							 | 
						|
								
							 | 
						|
									$xtpl->assign("DUPLICATEBUTTON","<td><input title=\"$app_strings[LBL_DUPLICATE_BUTTON_TITLE]\" accessKey=\"$app_strings[LBL_DUPLICATE_BUTTON_KEY]\" class=\"button\" onclick=\"this.form.return_module.value='Activities'; this.form.return_action.value='DetailView'; this.form.isDuplicate.value='true'; this.form.action.value='EditView'\" type=\"submit\" name=\"Duplicate\" value=\"$app_strings[LBL_DUPLICATE_BUTTON_LABEL]\"></td>");
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								if(isPermitted("Activities",2,$_REQUEST['record']) == 'yes')
							 | 
						|
								{
							 | 
						|
									$xtpl->assign("DELETEBUTTON","<td><input title=\"$app_strings[LBL_DELETE_BUTTON_TITLE]\" accessKey=\"$app_strings[LBL_DELETE_BUTTON_KEY]\" class=\"button\" onclick=\"this.form.return_module.value='Activities'; this.form.return_action.value='index'; this.form.action.value='Delete'; return confirm('$app_strings[NTC_DELETE_CONFIRMATION]')\" type=\"submit\" name=\"Delete\" value=\"$app_strings[LBL_DELETE_BUTTON_LABEL]\"></td>");
							 | 
						|
								}
							 | 
						|
								  
							 | 
						|
								$xtpl->parse("main");
							 | 
						|
								
							 | 
						|
								$xtpl->out("main");
							 | 
						|
								if($_REQUEST['activity_mode'] == 'Events')
							 | 
						|
								{
							 | 
						|
									include('modules/Activities/RenderRelatedListUI.php');
							 | 
						|
									$focus->get_users($focus->id);
							 | 
						|
									$focus->get_contacts($focus->id);
							 | 
						|
									$focus->get_products($focus->id);
							 | 
						|
								}
							 | 
						|
								
							 | 
						|
								?>
							 | 
						|
								
							 |