processSugarBean("CAMPAIGN", $focus, $offset); if($result == null) { sugar_die($app_strings['ERROR_NO_RECORD']); } $focus=$result; } else { header("Location: index.php?module=Accounts&action=index"); } // if campaign type is set to newsletter, then include newsletter detail view.. // ..else default to legacy detail view // include ('modules/Campaigns/NewsLetterTrackDetailView.php'); if(isset($focus->campaign_type) && $focus->campaign_type == "NewsLetter"){ echo getClassicModuleTitle($mod_strings['LBL_MODULE_NAME'], array($mod_strings['LBL_NEWSLETTER'],$focus->name), true); } else{ echo getClassicModuleTitle($mod_strings['LBL_MODULE_NAME'], array($mod_strings['LBL_MODULE_NAME'],$focus->name), true); } $GLOBALS['log']->info("Campaign detail view"); $smarty = new Sugar_Smarty(); $smarty->assign("MOD", $mod_strings); $smarty->assign("APP", $app_strings); $smarty->assign("GRIDLINE", $gridline); $smarty->assign("PRINT_URL", "index.php?".$GLOBALS['request_string']); $smarty->assign("ID", $focus->id); $smarty->assign("ASSIGNED_TO", $focus->assigned_user_name); $smarty->assign("STATUS", $app_list_strings['campaign_status_dom'][$focus->status]); $smarty->assign("NAME", $focus->name); $smarty->assign("TYPE", $app_list_strings['campaign_type_dom'][$focus->campaign_type]); $smarty->assign("START_DATE", $focus->start_date); $smarty->assign("END_DATE", $focus->end_date); $smarty->assign("BUDGET", $focus->budget); $smarty->assign("ACTUAL_COST", $focus->actual_cost); $smarty->assign("EXPECTED_COST", $focus->expected_cost); $smarty->assign("EXPECTED_REVENUE", $focus->expected_revenue); $smarty->assign("OBJECTIVE", nl2br($focus->objective)); $smarty->assign("CONTENT", nl2br($focus->content)); $smarty->assign("DATE_MODIFIED", $focus->date_modified); $smarty->assign("DATE_ENTERED", $focus->date_entered); $smarty->assign("CREATED_BY", $focus->created_by_name); $smarty->assign("MODIFIED_BY", $focus->modified_by_name); $smarty->assign("TRACKER_URL", $sugar_config['site_url'] . '/campaign_tracker.php?track=' . $focus->tracker_key); $smarty->assign("TRACKER_COUNT", intval($focus->tracker_count)); $smarty->assign("TRACKER_TEXT", $focus->tracker_text); $smarty->assign("REFER_URL", $focus->refer_url); if(isset($focus->campaign_type) && $focus->campaign_type == "Email" || $focus->campaign_type == "NewsLetter") { $smarty->assign("TRACK_DELETE_BUTTON",""); } $currency = new Currency(); if(isset($focus->currency_id) && !empty($focus->currency_id)) { $currency->retrieve($focus->currency_id); if( $currency->deleted != 1){ $smarty->assign("CURRENCY", $currency->iso4217 .' '.$currency->symbol ); }else $smarty->assign("CURRENCY", $currency->getDefaultISO4217() .' '.$currency->getDefaultCurrencySymbol() ); }else{ $smarty->assign("CURRENCY", $currency->getDefaultISO4217() .' '.$currency->getDefaultCurrencySymbol() ); } global $current_user; if(is_admin($current_user) && $_REQUEST['module'] != 'DynamicLayout' && !empty($_SESSION['editinplace'])){ $smarty->assign("ADMIN_EDIT","".SugarThemeRegistry::current()->getImage("EditLayout","border='0' align='bottom'",null,null,'.gif',$mod_strings['LBL_EDIT_LAYOUT']).""); } global $xtpl; $xtpl = $smarty; $detailView->processListNavigation($xtpl, "CAMPAIGN", $offset, $focus->is_AuditEnabled()); // adding custom fields: require_once('modules/DynamicFields/templates/Files/DetailView.php'); //if this is a newsletter, we need to build dropdown $selected_marketing_id = ''; if(isset($focus->campaign_type)){ //we need to build the dropdown of related marketing values $options_str = ""; //populate the dropdown $smarty->assign("FILTER_LABEL", $mod_strings['LBL_FILTER_CHART_BY']); $smarty->assign("MKT_DROP_DOWN",$options_str); } //add chart $seps = array("-", "/"); $dates = array(date($GLOBALS['timedate']->dbDayFormat), $GLOBALS['timedate']->dbDayFormat); $dateFileNameSafe = str_replace($seps, "_", $dates); $cache_file_name = $current_user->getUserPrivGuid()."_campaign_response_by_activity_type_".$dateFileNameSafe[0]."_".$dateFileNameSafe[1].".xml"; $cache_file_name_roi = $current_user->getUserPrivGuid()."_campaign_response_by_roi_".$dateFileNameSafe[0]."_".$dateFileNameSafe[1].".xml"; $chart= new campaign_charts(); //if marketing id has been selected, then set "latest_marketing_id" to the selected value //latest marketing id will be passed in to filter the charts and subpanels if(!empty($selected_marketing_id)){$latest_marketing_id = $selected_marketing_id;} if(empty($latest_marketing_id) || $latest_marketing_id === 'all'){ $smarty->assign("MY_CHART", $chart->campaign_response_by_activity_type($app_list_strings['campainglog_activity_type_dom'],$app_list_strings['campainglog_target_type_dom'],$focus->id,sugar_cached("xml/$cache_file_name"),true)); }else{ $smarty->assign("MY_CHART", $chart->campaign_response_by_activity_type($app_list_strings['campainglog_activity_type_dom'],$app_list_strings['campainglog_target_type_dom'],$focus->id,sugar_cached("xml/$cache_file_name"),true,$latest_marketing_id)); } //end chart //custom chart code require_once('include/SugarCharts/SugarChartFactory.php'); $sugarChart = SugarChartFactory::getInstance(); $resources = $sugarChart->getChartResources(); $smarty->assign('chartResources', $resources); echo $smarty->fetch('modules/Campaigns/TrackDetailView.tpl'); require_once('include/SubPanel/SubPanelTiles.php'); $subpanel = new SubPanelTiles($focus, 'Campaigns'); //if latest marketing id is empty, or if it is set to 'all'', then do no filtering, otherwise filter.. //.. out the chart and subpanels by marketing id if(empty($latest_marketing_id) || $latest_marketing_id === 'all'){ //do nothing, no filtering is needed }else{ //get array of layout defs $layoutDefsArr= $subpanel->subpanel_definitions->layout_defs; //iterate through layout defs for processing of subpanels. If a marketing Id is specified, then we need to... //.. filter the subpanels by it so they match the chart rendered in code above. foreach($layoutDefsArr as $subpanels_name => $subpanels){ //process each subpanel definition foreach($subpanels as $subpane_key => $subpane){ //see if "function_parameters" key exists in subpanel properties array if (isset($subpane['function_parameters'])){ //if a function_parameters property key exists, then process further $functionParamsArr = $subpane['function_parameters'];//$panelProperty; //Check the array of function parameters and see if //one exists for market value id. if (isset($functionParamsArr['EMAIL_MARKETING_ID_VALUE'])){ //We found the property, lets fill in the marketing id value... //.. into the subpanel object, using the keys of the array that.. //.. we used to get to thi property $subpanel->subpanel_definitions->layout_defs[$subpanels_name][$subpane_key]['function_parameters']['EMAIL_MARKETING_ID_VALUE'] = $latest_marketing_id; } }//end if (isset($subpane['function_parameters'])){ }//end foreach($subpanels as $subpane_key => $subpane){ }//_pp($subpanel->subpanel_definitions->layout_defs); }//end else $alltabs=$subpanel->subpanel_definitions->get_available_tabs(); if (!empty($alltabs)) { foreach ($alltabs as $name) { if ($name == 'prospectlists' || $name=='emailmarketing' || $name == 'tracked_urls') { $subpanel->subpanel_definitions->exclude_tab($name); } } } echo $subpanel->display(); ?>