* SPDX-License-Identifier: AGPL-3.0-only ************************************/ global $current_user; // crmv@184240 if (!is_admin($current_user)) { echo getTranslatedString('LBL_UNAUTHORIZED_ACCESS', 'Users'); die(); } // crmv@184240e global $mod_strings, $app_strings; global $theme; $theme_path="themes/".$theme."/"; $delete_user_id = $_REQUEST['record']; $delete_user_name = getUserName($delete_user_id); $output ='
'.$mod_strings['LBL_DELETE'].' '.$mod_strings['LBL_USER'].'
'.$mod_strings['LBL_DELETE_USER'].' '.$delete_user_name.'
'.$mod_strings['LBL_TRANSFER_USER'].' '; $output.='
'; echo $output; ?>