@php
$tableWidth = 680;
$colSpan = 2;
$pageTitle = "Messages";
$msgCode = request()->query('msgCode');
$msgText = '';
switch ($msgCode) {
case '1':
$pageTitle = "Seminar Request Submission";
$msgText = "Thank you for requesting seminar information from the CLI.";
$msgText .= "
Your request has been sent successfully and we will reply promptly.
";
break;
case '2':
$pageTitle = "Study Group Request Submission";
$msgText = "Your request has been logged into our system successfully.
";
$msgText .= "Thank you for submitting a New Group Request from CLI.";
$msgText .= "
Your group request submission has been received and will be reviewed by the Institute. We will contact you via email to confirm the group has been approved. Further instructions and log-in information for your participants will also be sent at that time.
";
$lText = "
";
if (session("memberAccess") && session("accountType") == 2) {
$lText .= "| You are currently logged into our system as ";
switch (session("accountType")) {
case 2:
$lText .= "group leader ";
break;
case 8:
$lText .= "group request ";
break;
default:
$lText .= "customer ";
break;
}
$lText .= session("memberName") . ". |
" . chr(10);
$lText .= " Return to the Resource Center |
" . chr(10);
$lText .= " Log out |
" . chr(10);
}
$lText .= "
";
break;
case '3':
$pageTitle = "Results viewing not allowed";
$msgText = "Access to view results for a record you selected is not allowed.";
$msgText .= "
You have been logged out of all secure ASI areas.";
$msgText .= "
If you feel you should be able to view a record we are denying you please contact us.
";
break;
case '4':
$pageTitle = "Composite graph and text results display error";
$msgText = "Composite graph and text results display error.";
$msgText .= "
.
";
break;
case '5':
$pageTitle = "Composite graph and text results display error";
$msgText = "Composite graph and text results display error.";
$msgText .= "
The proper LBL version could not be determined.
";
break;
case '6':
$pageTitle = "Composite graph and text results display error";
$msgText = "Group composites can only be created when more than one record is used.";
$msgText .= "
A group composite graph or group composite graph plus text results can only be created by using more than one record. For example, if there is a group with 8 records in it and there is only one male in the group, a male group composite cannot be created.
";
break;
default:
$msgText = "No message available";
}
@endphp