3// ** Try and determine where we are to set the error.
4 $showCloseButton = true;
5
6if ($id_status < 0) {
7// ** THIS IS GENERAL FAILURE -- NO RECOVERY --
8switch ($id_status) {
9case -1:
10 $form_disp_error = "Problem locating the application you want to load.<br>Please be sure to follow the links to get to this site.<br>Please close browser and try your request again.";
11break;
12case -2:
13 $form_disp_error = "Problem loading form.<br>You appear to be previously setup for a different institution.<br>Please close browser and follow the links again.";
14break;
15case -3:
16 $form_disp_error = "<i class='fa fa-exclamation-triangle fa-2x' aria-hidden='true'></i> Loan Application Service is currently offline.<br/>" . $DMSAPP_MODE_ARY['offlineDesc'] . "";
21// ** DO NOT ALLOW the member to go to lnappintro, IF the CU is setup for SSOONLY
22 $showCloseButton = false;
23 $form_disp_error = "<i class='fa fa-exclamation-triangle fa-2x' aria-hidden='true'></i> Loan Application Service is only accessible from Home Banking.";
24
25 } else {
26// ** This could be a form based error
27switch ($form_code) {
28default:
29 $form_disp_error = "A problem has occurred processing your request. Please close your browser and try the request again.";