0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
vtiger
/
5.0.4
/
standard
/
htdocs
/
modules
/
Contacts
/
[
Home
]
File: DetailView.php
<?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/Contacts/DetailView.php,v 1.38 2005/04/25 05:04:46 rank Exp $ * Description: TODO: To be written. * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc. * All Rights Reserved. * Contributor(s): ______________________________________.. ********************************************************************************/ require_once('Smarty_setup.php'); require_once('data/Tracker.php'); require_once('modules/Contacts/Contacts.php'); require_once('include/CustomFieldUtil.php'); require_once('include/database/PearDatabase.php'); require_once('include/utils/utils.php'); require_once('user_privileges/default_module_view.php'); global $log; global $mod_strings; global $app_strings; global $currentModule, $singlepane_view; $focus = new Contacts(); if(isset($_REQUEST['record']) && $_REQUEST['record']!='') { //Display the error message if($_SESSION['image_type_error'] != '') { echo '<font color="red">'.$_SESSION['image_type_error'].'</font>'; session_unregister('image_type_error'); } $focus->id=$_REQUEST['record']; $focus->retrieve_entity_info($_REQUEST['record'],'Contacts'); $log->info("Entity info successfully retrieved for Contact DetailView."); $focus->firstname=$focus->column_fields['firstname']; $focus->lastname=$focus->column_fields['lastname']; } if(isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true') { $focus->id = ""; } global $theme, $current_user; $theme_path="themes/".$theme."/"; $image_path=$theme_path."images/"; $log->info("Contact detail view"); $smarty = new vtigerCRM_Smarty; $smarty->assign("MOD", $mod_strings); $smarty->assign("APP", $app_strings); $smarty->assign("THEME", $theme); $smarty->assign("IMAGE_PATH", $image_path); $smarty->assign("PRINT_URL", "phprint.php?jt=".session_id().$GLOBALS['request_string']); $smarty->assign("UPDATEINFO",updateInfo($focus->id)); if(useInternalMailer() == 1) $smarty->assign("INT_MAILER","true"); $contact_name = $focus->lastname; if (getFieldVisibilityPermission($currentModule, $current_user->id,'firstname') == '0') { $contact_name .= ' '.$focus->firstname; } $smarty->assign("NAME",$contact_name); $log->info("Detail Block Informations successfully retrieved."); $smarty->assign("BLOCKS", getBlocks($currentModule,"detail_view",'',$focus->column_fields)); $smarty->assign("CUSTOMFIELD", $cust_fld); $smarty->assign("SINGLE_MOD", 'Contact'); $smarty->assign("ID", $_REQUEST['record']); if(isPermitted("Contacts","EditView",$_REQUEST['record']) == 'yes') $smarty->assign("EDIT_DUPLICATE","permitted"); if(isPermitted("Contacts","Delete",$_REQUEST['record']) == 'yes') $smarty->assign("DELETE","permitted"); if(isPermitted("Emails","EditView",'') == 'yes') { //Added to pass the parents list as hidden for Emails -- 09-11-2005 $parent_email = getEmailParentsList('Contacts',$_REQUEST['record']); $smarty->assign("HIDDEN_PARENTS_LIST",$parent_email); $smarty->assign("SENDMAILBUTTON","permitted"); $smarty->assign("EMAIL1",$focus->column_fields['email']); $smarty->assign("EMAIL2",$focus->column_fields['yahooid']); } if(isPermitted("Contacts","Merge",'') == 'yes') { global $current_user; require("user_privileges/user_privileges_".$current_user->id.".php"); require_once('include/utils/UserInfoUtil.php'); $wordTemplateResult = fetchWordTemplateList("Contacts"); $tempCount = $adb->num_rows($wordTemplateResult); $tempVal = $adb->fetch_array($wordTemplateResult); for($templateCount=0;$templateCount<$tempCount;$templateCount++) { $optionString[$tempVal["templateid"]]=$tempVal["filename"]; $tempVal = $adb->fetch_array($wordTemplateResult); } if($is_admin) $smarty->assign("MERGEBUTTON","permitted"); elseif($tempCount >0) $smarty->assign("MERGEBUTTON","permitted"); $smarty->assign("TEMPLATECOUNT",$tempCount); $smarty->assign("WORDTEMPLATEOPTIONS",$app_strings['LBL_SELECT_TEMPLATE_TO_MAIL_MERGE']); $smarty->assign("TOPTIONS",$optionString); } //Security check for related list $category = getParentTab(); $smarty->assign("CATEGORY",$category); $check_button = Button_Check($module); $smarty->assign("CHECK", $check_button); $tabid = getTabid("Contacts"); $validationData = getDBValidationData($focus->tab_name,$tabid); $data = split_validationdataArray($validationData); $smarty->assign("VALIDATION_DATA_FIELDNAME",$data['fieldname']); $smarty->assign("VALIDATION_DATA_FIELDDATATYPE",$data['datatype']); $smarty->assign("VALIDATION_DATA_FIELDLABEL",$data['fieldlabel']); $smarty->assign("MODULE",$currentModule); $smarty->assign("EDIT_PERMISSION",isPermitted($currentModule,'EditView',$_REQUEST[record])); $smarty->assign("IS_REL_LIST",isPresentRelatedLists($currentModule)); $sql = $adb->pquery('select accountid from vtiger_contactdetails where contactid=?', array($focus->id)); $accountid = $adb->query_result($sql,0,'accountid'); if($accountid == 0) $accountid=''; $smarty->assign("accountid",$accountid); if($singlepane_view == 'true') { $related_array = getRelatedLists($currentModule,$focus); $smarty->assign("RELATEDLISTS", $related_array); } $smarty->assign("TODO_PERMISSION",CheckFieldPermission('parent_id','Calendar')); $smarty->assign("CONTACT_PERMISSION",CheckFieldPermission('contact_id','Calendar')); $smarty->assign("EVENT_PERMISSION",CheckFieldPermission('parent_id','Events')); $smarty->assign("SinglePane_View", $singlepane_view); $smarty->display("DetailView.tpl"); ?>