* SPDX-License-Identifier: AGPL-3.0-only ************************************/ require_once 'modules/PickList/PickListUtils.php'; global $app_strings, $current_language,$adb, $theme; $fieldName = vtlib_purify($_REQUEST["fieldname"]); $fieldLabel = vtlib_purify($_REQUEST["fieldlabel"]); $moduleName = vtlib_purify($_REQUEST["moduleName"]); $mode = $_REQUEST["mode"]; $theme_path="themes/".$theme."/"; $image_path=$theme_path."images/"; $smarty = new VteSmarty(); $smarty->assign("IMAGE_PATH",$image_path); if ($moduleName == 'Events') { $temp_module_strings = return_module_language($current_language, 'Calendar'); }else{ $temp_module_strings = return_module_language($current_language, $moduleName); } if (isset($fieldName)) { $editableValues = getEditablePicklistValues($fieldName, $temp_module_strings, $adb); $nonEditableValues = getNonEditablePicklistValues($fieldName, $temp_module_strings, $adb); } $temp_label = getTranslatedString($fieldLabel); $roleDetails = getAllRoleDetails(); // Remove Organization from the list of roles (which is the first one in the list of roles) array_shift($roleDetails); $smarty->assign("FIELDNAME",$fieldName); $smarty->assign("FIELDLABEL",$temp_label); if (is_array($nonEditableValues) && count($nonEditableValues) == 1 && $nonEditableValues[0] == '') // crmv@167234 $smarty->assign('NONEDITPICKLIST_PRESENCE','false'); else $smarty->assign('NONEDITPICKLIST_PRESENCE','true'); $smarty->assign('NONEDITPICKLIST',$nonEditableValues); $smarty->assign("MODULE",$moduleName); $smarty->assign("PICKVAL",$editableValues); $smarty->assign("ROLEDETAILS",$roleDetails); $smarty->assign("MOD", return_module_language($current_language,'PickList')); $smarty->assign("APP",$app_strings); if($mode == 'add'){ $smarty->display("modules/PickList/AddPickList.tpl"); }elseif($mode == 'edit'){ $smarty->display("modules/PickList/EditPickList.tpl"); }elseif($mode == 'delete'){ $smarty->display("modules/PickList/DeletePickList.tpl"); }