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.
		
		
		
		
		
			
		
			
				
					
					
						
							114 lines
						
					
					
						
							5.1 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							114 lines
						
					
					
						
							5.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/Meetings/DetailView.php,v 1.6 2004/12/16 10:28:55 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/Meetings/Meeting.php'); | |
| require_once('modules/Meetings/Forms.php'); | |
| 
 | |
| $focus = new Meeting(); | |
| 
 | |
| if(isset($_REQUEST['record'])) { | |
|     $focus->retrieve($_REQUEST['record']); | |
| } | |
| if(isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true') { | |
| 	$focus->id = ""; | |
| } | |
| 
 | |
| //needed when creating a new meeting 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['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['account_name']) && is_null($focus->parent_name)) { | |
| 	$focus->parent_name = $_REQUEST['account_name']; | |
| } | |
| if (isset($_REQUEST['account_id']) && is_null($focus->parent_id)) { | |
| 	$focus->parent_id = $_REQUEST['account_id']; | |
| } | |
| 
 | |
| global $theme; | |
| $theme_path="themes/".$theme."/"; | |
| $image_path=$theme_path."images/"; | |
| require_once($theme_path.'layout_utils.php'); | |
| 
 | |
| $log->info("Meeting detail view"); | |
| 
 | |
| $xtpl=new XTemplate ('modules/Meetings/DetailView.html'); | |
| $xtpl->assign("MOD", $mod_strings); | |
| $xtpl->assign("APP", $app_strings); | |
| 
 | |
| 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("ID", $focus->id); | |
| $xtpl->assign("PARENT_NAME", $focus->parent_name); | |
| if (isset($focus->parent_type)) $xtpl->assign("PARENT_MODULE", $focus->parent_type); | |
| $xtpl->assign("PARENT_TYPE", $app_list_strings['record_type_display'][$focus->parent_type]); | |
| $xtpl->assign("PARENT_ID", $focus->parent_id); | |
| $xtpl->assign("NAME", $focus->name); | |
| $xtpl->assign("ASSIGNED_TO", $focus->assigned_user_name); | |
| 
 | |
| $xtpl->assign("LOCATION", $focus->location); | |
| $xtpl->assign("DATE_START", $focus->date_start); | |
| $xtpl->assign("TIME_START", substr($focus->time_start, 0 ,5)); | |
| 
 | |
| // Fix: No line breaks in "Description" field (DetailView) | |
| $xtpl->assign("DESCRIPTION", nl2br($focus->description)); | |
| 
 | |
| $xtpl->assign("DATE_MODIFIED", substr($focus->date_modified,0,16)); | |
| $xtpl->assign("DATE_ENTERED", substr($focus->date_entered,0,16)); | |
| $xtpl->assign("DURATION_HOURS", $focus->duration_hours); | |
| $xtpl->assign("STATUS", $app_list_strings['meeting_status_dom'][$focus->status]); | |
| $xtpl->assign("DURATION_MINUTES", $focus->duration_minutes); | |
|   if($entityDel) | |
|         { | |
|                $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='Meetings'; this.form.return_action.value='ListView'; 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"); | |
| 
 | |
| echo "<BR>\n"; | |
| 
 | |
| 
 | |
| include('modules/Contacts/SubPanelViewContactsAndUsers.php'); | |
| $SubPanel = new SubPanelViewContactsAndUsers(); | |
| $SubPanel->setFocus($focus); | |
| $SubPanel->setHideNewButton(true); | |
| 
 | |
| $SubPanel->ProcessSubPanelListView('modules/Meetings/SubPanelViewInvitees.html',$mod_strings, $action); | |
| 
 | |
| echo "</td></tr>\n"; | |
| 
 | |
| ?>
 | |
| 
 |