assign("MOD", $mod_strings); $xtpl->assign("APP", $app_strings); if(isset($_REQUEST['module'])) { $xtpl->assign("MODULE", $_REQUEST['module']); } if(isset($_REQUEST['return_module'])) { $xtpl->assign("RETURN_MODULE", $_REQUEST['return_module']); } if(isset($_REQUEST['return_id'])) { $xtpl->assign("RETURN_ID", $_REQUEST['return_id']); } if(isset($_REQUEST['return_id'])) { $xtpl->assign("RETURN_ACTION", $_REQUEST['return_action']); } if(isset($_REQUEST['record'])) { $xtpl->assign("RECORD", $_REQUEST['record']); } global $theme; global $currentModule; $ev = new EditView; $xtpl->assign("TITLE1", $this->getModuleTitle( true, array( $this->_getModuleTitleListParam(), $mod_strings['LBL_WEB_TO_LEAD_FORM_TITLE1'] ) ) ); $xtpl->assign("TITLE2", $this->getModuleTitle( true, array( $this->_getModuleTitleListParam(), $mod_strings['LBL_WEB_TO_LEAD_FORM_TITLE2'] ) ) ); $site_url = $sugar_config['site_url']; $web_post_url = $site_url.'/index.php?entryPoint=WebToLeadCapture'; $json = getJSONobj(); // Users Popup $popup_request_data = array( 'call_back_function' => 'set_return', 'form_name' => 'WebToLeadCreation', 'field_to_name_array' => array( 'id' => 'assigned_user_id', 'user_name' => 'assigned_user_name', ), ); $xtpl->assign('encoded_users_popup_request_data', $json->encode($popup_request_data)); //Campaigns popup $popup_request_data = array( 'call_back_function' => 'set_return', 'form_name' => 'WebToLeadCreation', 'field_to_name_array' => array( 'id' => 'campaign_id', 'name' => 'campaign_name', ), ); $encoded_users_popup_request_data = $json->encode($popup_request_data); $xtpl->assign('encoded_campaigns_popup_request_data' , $json->encode($popup_request_data)); //create the cancel button $cancel_buttons_html = ""; $xtpl->assign("CANCEL_BUTTON", $cancel_buttons_html ); $field_defs_js = "var field_defs = {'Contacts':["; //bug: 47574 - make sure, that webtolead_email1 field has same required attribute as email1 field if(isset($lead->field_defs['webtolead_email1']) && isset($lead->field_defs['email1']) && isset($lead->field_defs['email1']['required'])){ $lead->field_defs['webtolead_email1']['required'] = $lead->field_defs['email1']['required']; } $count= 0; foreach($lead->field_defs as $field_def) { $email_fields = false; if($field_def['name']== 'email1' || $field_def['name']== 'email2') { $email_fields = true; } if($field_def['name']!= 'account_name'){ if( ( $field_def['type'] == 'relate' && empty($field_def['custom_type']) ) || $field_def['type'] == 'assigned_user_name' || $field_def['type'] =='link' || (isset($field_def['source']) && $field_def['source']=='non-db' && !$email_fields) || $field_def['type'] == 'id') { continue; } } if($field_def['name']== 'deleted' || $field_def['name']=='converted' || $field_def['name']=='date_entered' || $field_def['name']== 'date_modified' || $field_def['name']=='modified_user_id' || $field_def['name']=='assigned_user_id' || $field_def['name']=='created_by' || $field_def['name']=='team_id') { continue; } $field_def['vname'] = preg_replace('/:$/','',translate($field_def['vname'],'Leads')); //$cols_name = "{'".$field_def['vname']."'}"; $col_arr = array(); if((isset($field_def['required']) && $field_def['required'] != null && $field_def['required'] != 0) || $field_def['name']=='last_name' ){ $cols_name=$field_def['vname'].' '.$app_strings['LBL_REQUIRED_SYMBOL']; $col_arr[0]=$cols_name; $col_arr[1]=$field_def['name']; $col_arr[2]=true; } else{ $cols_name=$field_def['vname']; $col_arr[0]=$cols_name; $col_arr[1]=$field_def['name']; } if (! in_array($cols_name, $fields)) { array_push($fields,$col_arr); } $count++; } $xtpl->assign("WEB_POST_URL",$web_post_url); //$xtpl->assign("LEAD_SELECT_FIELDS",'MOD.LBL_SELECT_LEAD_FIELDS'); require_once('include/QuickSearchDefaults.php'); $qsd = QuickSearchDefaults::getQuickSearchDefaults(); $sqs_objects = array('account_name' => $qsd->getQSParent(), 'assigned_user_name' => $qsd->getQSUser(), 'campaign_name' => $qsd->getQSCampaigns(), ); $quicksearch_js = ''; $xtpl->assign("JAVASCRIPT", $quicksearch_js); if (empty($focus->assigned_user_id) && empty($focus->id)) $focus->assigned_user_id = $current_user->id; if (empty($focus->assigned_name) && empty($focus->id)) $focus->assigned_user_name = $current_user->user_name; $xtpl->assign("ASSIGNED_USER_OPTIONS", get_select_options_with_id(get_user_array(TRUE, "Active", $focus->assigned_user_id), $focus->assigned_user_id)); $xtpl->assign("ASSIGNED_USER_NAME", $focus->assigned_user_name); $xtpl->assign("ASSIGNED_USER_ID", $focus->assigned_user_id ); $xtpl->assign("REDIRECT_URL_DEFAULT",'http://'); //required fields on Webtolead form $campaign= new Campaign(); $javascript = new javascript(); $javascript->setFormName('WebToLeadCreation'); $javascript->setSugarBean($lead); $javascript->addAllFields(''); //$javascript->addFieldGeneric('redirect_url', '', 'LBL_REDIRECT_URL' ,'true'); $javascript->addFieldGeneric('campaign_name', '', 'LBL_RELATED_CAMPAIGN' ,'true'); $javascript->addFieldGeneric('assigned_user_name', '', 'LBL_ASSIGNED_TO' ,'true'); $javascript->addToValidateBinaryDependency('campaign_name', 'alpha', $app_strings['ERR_SQS_NO_MATCH_FIELD'] . $mod_strings['LBL_LEAD_NOTIFY_CAMPAIGN'], 'false', '', 'campaign_id'); $javascript->addToValidateBinaryDependency('assigned_user_name', 'alpha', $app_strings['ERR_SQS_NO_MATCH_FIELD'] . $app_strings['LBL_ASSIGNED_TO'], 'false', '', 'assigned_user_id'); echo $javascript->getScript(); $json = getJSONobj(); $lead_fields = $json->encode($fields); $xtpl->assign("LEAD_FIELDS",$lead_fields); $classname = "SUGAR_GRID"; $xtpl->assign("CLASSNAME",$classname); $xtpl->assign("DRAG_DROP_CHOOSER_WEB_TO_LEAD",constructDDWebToLeadFields($fields,$classname)); $xtpl->parse("main"); $xtpl->out("main"); /* $str = ""; echo $str; */ /* *This function constructs Drag and Drop multiselect box of subscriptions for display in manage subscription form */ function constructDDWebToLeadFields($fields,$classname){ require_once("include/templates/TemplateDragDropChooser.php"); global $mod_strings; $d2 = array(); //now call function that creates javascript for invoking DDChooser object $dd_chooser = new TemplateDragDropChooser(); $dd_chooser->args['classname'] = $classname; $dd_chooser->args['left_header'] = $mod_strings['LBL_AVALAIBLE_FIELDS_HEADER']; $dd_chooser->args['mid_header'] = $mod_strings['LBL_LEAD_FORM_FIRST_HEADER']; $dd_chooser->args['right_header'] = $mod_strings['LBL_LEAD_FORM_SECOND_HEADER']; $dd_chooser->args['left_data'] = $fields; $dd_chooser->args['mid_data'] = $d2; $dd_chooser->args['right_data'] = $d2; $dd_chooser->args['title'] = ' '; $dd_chooser->args['left_div_name'] = 'ddgrid2'; $dd_chooser->args['mid_div_name'] = 'ddgrid3'; $dd_chooser->args['right_div_name'] = 'ddgrid4'; $dd_chooser->args['gridcount'] = 'three'; $str = $dd_chooser->displayScriptTags(); $str .= $dd_chooser->displayDefinitionScript(); $str .= $dd_chooser->display(); $str .= ""; $str .= ""; return $str; } /** * function to retrieve webtolead image and title. path to help file * refactored to use SugarView::getModuleTitle() * * @deprecated use SugarView::getModuleTitle() instead * * @param $module string not used, only for backward compatibility * @param $image_name string image name * @param $module_title string to display as the module title * @param $show_help boolean which determines if the print and help links are shown. * @return string HTML */ function get_webtolead_title( $module, $image_name, $module_title, $show_help ) { return $GLOBALS['current_view']->getModuleTitle($show_help); }