User: Fix resend messages about legal information - refs BT#20521

pull/4574/head
Christian 3 years ago
parent c480b975e0
commit a16f8bc8ea
  1. 25
      main/admin/user_information.php

@ -517,29 +517,15 @@ if (api_is_multiple_url_enabled()) {
if (isset($_GET['action'])) { if (isset($_GET['action'])) {
switch ($_GET['action']) { switch ($_GET['action']) {
case 'send_legal': case 'send_legal':
/*$subject = get_lang('SendLegalSubject');
$content = sprintf(
get_lang('SendLegalDescriptionToUrlX'),
api_get_path(WEB_PATH)
);
MessageManager::send_message_simple($userId, $subject, $content);
Display::addFlash(Display::return_message(get_lang('Sent')));*/
// ofaj // ofaj
LegalManager::sendLegal($userId); LegalManager::sendLegal($userId);
break; header('Location: '.$currentUrl);
exit;
case 'delete_legal': case 'delete_legal':
// ofaj // ofaj
LegalManager::deleteLegal($userId); LegalManager::deleteLegal($userId);
/*$extraFieldValue = new ExtraFieldValue('user'); header('Location: '.$currentUrl);
$value = $extraFieldValue->get_values_by_handler_and_field_variable( exit;
$userId,
'legal_accept'
);
$result = $extraFieldValue->delete($value['id']);
if ($result) {
Display::addFlash(Display::return_message(get_lang('Deleted')));
}*/
break;
case 'unsubscribe': case 'unsubscribe':
$courseId = !empty($_GET['course_id']) ? (int) $_GET['course_id'] : 0; $courseId = !empty($_GET['course_id']) ? (int) $_GET['course_id'] : 0;
$sessionId = !empty($_GET['id_session']) ? (int) $_GET['id_session'] : 0; $sessionId = !empty($_GET['id_session']) ? (int) $_GET['id_session'] : 0;
@ -560,7 +546,6 @@ if (isset($_GET['action'])) {
} }
header('Location: '.$currentUrl); header('Location: '.$currentUrl);
exit; exit;
break;
case 'unsubscribe_session_course': case 'unsubscribe_session_course':
$courseId = !empty($_GET['course_id']) ? (int) $_GET['course_id'] : 0; $courseId = !empty($_GET['course_id']) ? (int) $_GET['course_id'] : 0;
$sessionId = !empty($_GET['id_session']) ? (int) $_GET['id_session'] : 0; $sessionId = !empty($_GET['id_session']) ? (int) $_GET['id_session'] : 0;
@ -573,14 +558,12 @@ if (isset($_GET['action'])) {
Display::addFlash(Display::return_message(get_lang('UserUnsubscribed'))); Display::addFlash(Display::return_message(get_lang('UserUnsubscribed')));
header('Location: '.$currentUrl); header('Location: '.$currentUrl);
exit; exit;
break;
case 'export': case 'export':
Export::arrayToCsv( Export::arrayToCsv(
$csvContent, $csvContent,
'user_information_'.$user['user_id'] 'user_information_'.$user['user_id']
); );
exit; exit;
break;
} }
} }

Loading…
Cancel
Save