retrieve_entity_info($RECORD,$currentmodule); $focus->id = $RECORD; $focus->name=$focus->column_fields['campaignname']; $log->debug("id is ".$focus->id); $log->debug("name is ".$focus->name); } global $mod_strings; global $app_strings,$adb; global $theme; global $currentModule; $theme_path="themes/".$theme."/"; $image_path=$theme_path."images/"; $smarty = new vtigerCRM_Smarty; if(isset($_REQUEST['isDuplicate']) && $_REQUEST['isDuplicate'] == 'true') { $focus->id = ""; } if(isset($_REQUEST['mode']) && $_REQUEST['mode'] != ' ') { $smarty->assign("OP_MODE",vtlib_purify($_REQUEST['mode'])); } if (isset($focus->name)) $smarty->assign("NAME", $focus->name); $related_array=getRelatedLists($currentModule,$focus); // vtlib customization: Related module could be disabled, check it if(isset($related_array)) { foreach($related_array as $mod_key=>$mod_val) { if($mod_key == "Contacts" || $mod_key == "Leads") { $rel_checked=$_REQUEST[$mod_key.'_all']; $rel_check_split=explode(";",$rel_checked); if (is_array($mod_val)) { $mod_val["checked"]=array(); if (isset($mod_val['entries'])) { foreach($mod_val['entries'] as $key=>$val) { if(in_array($key,$rel_check_split)) $related_array[$mod_key]["checked"][$key] = 'checked'; else $related_array[$mod_key]["checked"][$key] = ''; } } } } } } // END $smarty->assign("RELATEDLISTS", $related_array); require_once('include/ListView/RelatedListViewSession.php'); if(!empty($_REQUEST['selected_header']) && !empty($_REQUEST['relation_id'])) { $relationId = vtlib_purify($_REQUEST['relation_id']); RelatedListViewSession::addRelatedModuleToSession($relationId, vtlib_purify($_REQUEST['selected_header'])); } $open_related_modules = RelatedListViewSession::getRelatedModulesFromSession(); $smarty->assign("SELECTEDHEADERS", $open_related_modules); require_once('modules/CustomView/CustomView.php'); // Module Sequence Numbering $mod_seq_field = getModuleSequenceField($currentModule); if ($mod_seq_field != null) { $mod_seq_id = $focus->column_fields[$mod_seq_field['name']]; } else { $mod_seq_id = $focus->id; } $smarty->assign('MOD_SEQ_ID', $mod_seq_id); // END $smarty->assign("TODO_PERMISSION",CheckFieldPermission('parent_id','Calendar')); $smarty->assign("EVENT_PERMISSION",CheckFieldPermission('parent_id','Events')); $smarty->assign("CATEGORY",$category); $smarty->assign("UPDATEINFO",updateInfo($focus->id)); $smarty->assign("ID",$focus->id); $smarty->assign("MODULE",$currentmodule); $smarty->assign("SINGLE_MOD",$app_strings['Campaign']); $smarty->assign("MOD",$mod_strings); $smarty->assign("APP",$app_strings); $smarty->assign("THEME", $theme); $smarty->assign("IMAGE_PATH", $image_path); $smarty->assign("RECORDID", $RECORD); $smarty->assign('MAX_RECORDS', $list_max_entries_per_page); $check_button = Button_Check($module); $smarty->assign("CHECK", $check_button); if(isset($_REQUEST['ajax']) && $_REQUEST['ajax'] != '') $smarty->display("RelatedListContents.tpl"); else $smarty->display("RelatedLists.tpl"); } ?>