* SPDX-License-Identifier: AGPL-3.0-only ************************************/ $delete_role_id = $_REQUEST['roleid']; $delete_role_name = getRoleName($delete_role_id); global $app_strings; global $app_list_strings; global $mod_strings; $smarty=new VteSmarty(); $smarty->assign("APP", $app_strings); $smarty->assign("MOD", return_module_language($current_language,'Settings')); $smarty->assign("CMOD", $mod_strings); global $theme; $theme_path="themes/".$theme."/"; $image_path=$theme_path."images/"; $smarty->assign("IMAGE_PATH",$image_path); $smarty->assign("ROLEID", $delete_role_id); $smarty->assign("ROLENAME", $delete_role_name); $opt = '';//crmv@23800 $smarty->assign("ROLEPOPUPBUTTON", $opt); $smarty->display("DeleteRole.tpl"); ?>