num_rows($fieldListResult); $language_strings = return_module_language($current_language,$fld_module); $allfields[$fld_module] = getStdOutput($fieldListResult, $noofrows, $language_strings,$profileid); } if($_REQUEST['fld_module'] != '') $smarty->assign("DEF_MODULE",vtlib_purify($_REQUEST['fld_module'])); else $smarty->assign("DEF_MODULE",'Leads'); /** Function to get the field label/permission array to construct the default orgnization field UI for the specified profile * @param $fieldListResult -- mysql query result that contains the field label and uitype:: Type array * @param $mod_strings -- i18n language mod strings array:: Type array * @param $profileid -- profile id:: Type integer * @returns $standCustFld -- field label/permission array :: Type varchar * */ function getStdOutput($fieldListResult, $noofrows, $lang_strings,$profileid) { global $adb; $standCustFld = Array(); if(!isset($focus->mandatory_fields)) $focus->mandatory_fields = Array(); for($i=0; $i<$noofrows; $i++) { $fieldname = $adb->query_result($fieldListResult,$i,"fieldname"); $uitype = $adb->query_result($fieldListResult,$i,"uitype"); $displaytype = $adb->query_result($fieldListResult,$i,"displaytype"); $fieldlabel = $adb->query_result($fieldListResult,$i,"fieldlabel"); $typeofdata = $adb->query_result($fieldListResult,$i,"typeofdata"); $presence = $adb->query_result($fieldListResult,$i,"presence"); $fieldtype = explode("~",$typeofdata); $mandatory = ''; $readonly = ''; if($fieldtype[1] == 'M') { $mandatory = '*'; $readonly = 'disabled'; } if($lang_strings[$fieldlabel] !='') $standCustFld []= $mandatory.' '.$lang_strings[$fieldlabel]; else $standCustFld []= $mandatory.' '.$fieldlabel; if($adb->query_result($fieldListResult,$i,"visible") == 0 && $displaytype!=3 && $presence != '0') { if($fieldlabel == 'Activity Type') { $visible = "checked"; $readonly = 'disabled'; } else $visible = "checked"; } elseif($displaytype == 3 || $presence == '0') { $visible = "checked"; $readonly = 'disabled'; } else { $visible = ""; } $standCustFld []= ''; } $standCustFld=array_chunk($standCustFld,2); $standCustFld=array_chunk($standCustFld,4); return $standCustFld; } $smarty->assign("FIELD_INFO",$field_module); $smarty->assign("FIELD_LISTS",$allfields); $smarty->assign("MOD", return_module_language($current_language,'Settings')); $smarty->assign("THEME", $theme); $smarty->assign("IMAGE_PATH",$image_path); $smarty->assign("APP", $app_strings); $smarty->assign("CMOD", $mod_strings); $smarty->assign("MODE",'edit'); $smarty->display("FieldAccess.tpl"); ?>