System unknown error type: [8] Undefined index: HTTP_ACCEPT_ENCODING

on line 316 in file /home/dotlynx/public_html/dotlynx/classes/templateProcessor.class.php
1 /home/dotlynx/public_html/dotlynx/classes/errorHandler.class.php line 98Kint::trace()
  • Source
  • 91 file_put_contents(APPPATH . "/logs/warning_log" . date('Y-m-d h:i:s') . ".txt",
    92 $total_error_string);
    93 header("location:/" . ERROR_URL);
    94 // send mail to the devs
    95 }
    96 else {
    97 echo ($total_error_string);
    98 Kint::trace();
    99 }
    100 exit(0);
    101 break;
    102 }
    103 /* Don't execute PHP internal error handler */
    104 return true;
    105 }
2 /home/dotlynx/public_html/dotlynx/classes/templateProcessor.class.php line 316errorHandler::handleErrors(errorNumber, errorString, errorFile, errorLine, 4)
  • Source
  • Arguments
  • 309 return $this->output[$key];
    310 }
    311
    312
    313 // send gzip encoding http header
    314 public function sendEncodingHeader()
    315 {
    316 if (strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) {
    317 header('Content-Encoding: gzip');
    318 }
    319 }
    320
    321 /**
    322 * @return string
    323 */
  • errorNumber integer 8
    errorString string (37) "Undefined index: HTTP_ACCEPT_ENCODING"
    errorFile string (69) "/home/dotlynx/public_html/dotlynx/classes/templateProcessor. …"
    /home/dotlynx/public_html/dotlynx/classes/templateProcessor.class.php
    errorLine integer 316
    4 array (0)
3 /home/dotlynx/public_html/dotlynx/application/admin/index.php line 110templateProcessor->sendEncodingHeader()
  • Source
  • Callee object [templateProcessor]
  • 103 try
    104 {
    105 $pageSections = array('index' => 0);
    106 $tags = array('index' => array('title' => $frameworkVars['labels']['PROJECTNAME'] . ' | Admin',
    107 'allFormValues' => $allFormValues, "message" => $allFormValues['message'],
    108 'frameworkVars' => $frameworkVars));
    109 $tpl = new templateProcessor($tags, $pageSections);
    110 $tpl->sendEncodingHeader();
    111 echo $tpl->getCompressedHTML();
    112
    113
    114 }
    115 catch (Exception $e)
    116 {
    117 echo $e->getMessage();
  • object templateProcessor (8)
    • object (8)
    • Available methods (13)
    • Static class properties (1)
    • private output -> array (1)
      'index' => string (7563) "<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8 …"
      <!DOCTYPE html>
      <html lang="en">
      <head>
      <meta charset="utf-8">
      <meta name="viewport" content="width=device-width, initial-scale=1.0" />
      <title>DOTLynx | Admin</title>
      <link rel="stylesheet" href="css/app.css?g=commoncss,extracss" />
      <link href="css/theme.less" rel="stylesheet/less">
      <link rel="shortcut icon" href="favicon.ico" />
      </head>
      <body class="login">
      <!-- PAGE -->
      <section id="page"> 
        <!-- HEADER -->
        <header> 
          <!-- NAV-BAR -->
          <div class="container">
            <div class="row">
              <div class="col-md-4 col-md-offset-4"> </div>
            </div>
          </div>
          <!--/NAV-BAR --> 
        </header>
        <!--/HEADER --> 
        <!-- LOGIN -->
        <section id="login_bg" class="visible animated fadeInUp">
          <div class="container">
            <div class="row">
              <div class="col-md-4 col-md-offset-4">
                <div class="login-box"> 
                  <div id="logo"><img src="images/admin_logo.png" alt="logo"><br/>D.O.T Compliance Management System</div>
                  <h2 class="bigintro">Sign In</h2>
                  <div class="divide-40"></div>
                  <form role="form" method="post">
                    <div class="form-group">
                      <label for="email">Email address</label>
                      <i class="fa fa-envelope"></i>
                      <input  class="form-control" id="userName" name="userName" >
                    </div>
                    <div class="form-group">
                      <label for="password">Password</label>
                      <i class="fa fa-lock"></i>
                      <input type="password" class="form-control" id="password" name="password" >
                    </div>
                    <div>
                      <input type="hidden" name="action" value="login">
                      <button type="submit" class="btn btn-danger">Submit</button>
                    </div>
                  </form>
                  <div class="divide-20"></div>
                  <div class="login-helpers">
                    <a href="#" onClick="swapScreen('forgot_bg');return false;">Forgot Password?</a>
      
                  </div>
                  
                </div>
              </div>
            </div>
          </div>
        </section>
        <!--/LOGIN --> 
        <!-- REGISTER -->
        <section id="register_bg" class="font-400 ">
          <div class="container">
            <div class="row">
              <div class="col-md-4 col-md-offset-4">
                <div class="login-box">
                  <div id="logo"><img src="images/admin_logo.png" alt="logo"><br/>D.O.T Compliance Management System</div>
                  <h2 class="bigintro">Create Account</h2>
                  <div class="divide-40"></div>
                  <form role="form" name="form1" action="" method="post">
                    <div class="form-group">
                      <label for="exampleInputEmail1">Email address : </label>
                      {emailValue}
                    </div>
                    <div class="form-group">
                      <label for="exampleInputPassword1">Password</label>
                      <i class="fa fa-lock"></i>
                      <input type="password" class="form-control" id="passwordChange" name="passwordChange" >
                    </div>
                    <div class="form-group">
                      <label for="exampleInputPassword2">Repeat Password</label>
                      <i class="fa fa-check-square-o"></i>
                      <input type="password" class="form-control" id="confirmPasswordChange" name="confirmPasswordChange" >
                    </div>
      			  <div class="form-group {dotHide}">
                      <label for="dot">DOT</label>
                      <i class="fa fa-font"></i>
                      <input type="text" class="form-control" id="dot" name="dot">
                    </div>
                    <div>
                      <input type="hidden" name="action" value="register">
                      <button type="submit" class="btn btn-success">Create Account</button>
                    </div>
                  </form>
      
                  <div class="login-helpers"> <a href="#" onClick="swapScreen('login_bg');return false;"> Back to Login</a> <br>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </section>
        <!--/REGISTER --> 
        <!-- FORGOT PASSWORD -->
        <section id="forgot_bg" class="">
          <div class="container">
            <div class="row">
              <div class="col-md-4 col-md-offset-4">
                <div class="login-box">
                  <div id="logo"><img src="images/admin_logo.png" alt="logo"><br/>D.O.T Compliance Management System</div>
                  <h2 class="bigintro">Reset Password</h2>
                  <div class="divide-40"></div>
                  <form role="form" name="form2" action="" method="post">
                    <div class="form-group">
                      <label for="email">Enter your Email address</label>
                      <i class="fa fa-envelope"></i>
                      <input type="email" class="form-control" id="email" name="email" >
                    </div>
                    <div>
                      <input type="hidden" name="action" value="forgotPassword">
                      <button type="submit" class="btn btn-info">Send Me Reset Instructions</button>
                    </div>
                  </form>
                  <div class="login-helpers"> <a href="#" onClick="swapScreen('login_bg');return false;">Back to Login</a> <br>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </section>
        <!-- FORGOT PASSWORD -->
        <!-- CHANGE PASSWORD -->
        <section id="changePass_bg" class="">
          <div class="container">
            <div class="row">
              <div class="col-md-4 col-md-offset-4">
                <div class="login-box">
                  <div id="logo"><img src="images/admin_logo.png" alt="logo"><br/>D.O.T Compliance Management System</div>
                  <h2 class="bigintro">Change Password</h2>
                  <div class="divide-40"></div>
                  <div id="messageHolderChgPass"></div>
                  <form method="post" id="changePasswordFrm" name="changePasswordFrm" action="">
                    <div class="form-group">
                      <label for="email">Enter your New password</label>
                      <i class="fa fa-envelope"></i>
                      <input type="password" class="form-control" id="passwordChange" name="passwordChange" >
                    </div>
                    <div class="form-group">
                      <label for="email">Enter New password again</label>
                      <i class="fa fa-envelope"></i>
                      <input type="password" class="form-control" id="confirmPasswordChange" name="confirmPasswordChange" >
                    </div>
                    <div>
                      <input type="hidden" name="verificationCode" value="">
                      <input type="hidden" name="action" value="changePassword">
                      <button type="submit" id="changePasswordBtn" class="btn btn-info">Change Password</button>
                    </div>
                  </form>
                  <div class="login-helpers"> <a href="#" onClick="swapScreen('login_bg');return false;">Back to Login</a> <br>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </section>
        <!-- CHANGE PASSWORD -->
      </section>
      <script type="text/javascript" src="js/theme.js"></script> 
      <script type="text/javascript" src="js/less.min.js"></script> 
      <script language="javascript" type="text/javascript" src="js/app.js?g=commonjs,extrajs,indexjs"></script> 
      <script>
              jQuery(document).ready(function() {
                  App.setPage("login_bg");  //Set current page
                  App.init(); //Initialise plugins and elements
              });
          </script> 
      <script type="text/javascript">
              function swapScreen(id) {
                  jQuery('.visible').removeClass('visible animated fadeInUp');
                  jQuery('#'+id).addClass('visible animated fadeInUp');
              }
          </script> 
      <!-- /JAVASCRIPTS -->
      </body>
      </html>
      
      private rowTag -> string (1) "p"
      private tags -> array (1)
      'index' => array (4)
      'title' => string (15) "DOTLynx | Admin"
      'allFormValues' => array (9)
      'view' => string (29) "templates/index.template.html"
      'view_1' => string (0) ""
      'view_2' => string (0) ""
      'message' => string (0) ""
      'login_bgSection' => string (25) "visible animated fadeInUp"
      'register_bgSection' => string (0) ""
      'forgot_bgSection' => string (0) ""
      'changePass_bgSection' => string (0) ""
      'verificationCode' => string (0) ""
      'message' => string (0) ""
      'frameworkVars' => array (9)
      'labels' => array (948)
      'GLOBAL_CREATE' => string (6) "Create"
      'GLOBAL_ADD' => string (3) "Add"
      'GLOBAL_EDIT' => string (4) "Edit"
      'GLOBAL_DELETE' => string (6) "Delete"
      'GLOBAL_VIEW' => string (4) "View"
      'GLOBAL_LOGIN' => string (5) "Login"
      'GLOBAL_INFO' => string (4) "Info"
      'HOME' => string (4) "Home"
      'GLOBAL_CHANGE_PASSWORD' => string (15) "Change Password"
      'GLOBAL_DOWNLOAD' => string (8) "Download"
      'QUARTERLY_AUDITS' => string (6) "Audits"
      'PROJECTNAME' => string (7) "DOTLynx"
      'CLIENT_COMPANYNAME' => string (12) "Company Name"
      'CLIENT_STREETADDRESS' => string (14) "Street Address"
      'CLIENT_CITY' => string (4) "City"
      'CLIENT_STATE' => string (5) "State"
      'CLIENT_ZIP' => string (3) "Zip"
      'CLIENT_PHONE' => string (5) "Phone"
      'CLIENT_FAX' => string (3) "Fax"
      'CLIENT_MAINEMAIL' => string (10) "Main Email"
      'CLIENT_WEBSITE' => string (7) "Website"
      'CLIENT_DOT' => string (3) "DOT"
      'CLIENT_MC' => string (2) "MC"
      'CLIENT_LASTBITINSPECTIONDATE' => string (24) "Last BIT Inspection Date"
      'CLIENT_LASTDOTINSPECTIONDATE' => string (24) "Last DOT Inspection Date"
      'CLIENT_EIN' => string (3) "EIN"
      'CLIENT_EXCLUDEFROMPOOLAUDIT' => string (24) "Exclude from Pool Audit?"
      'CLIENT_POLLING_INTERVAL' => string (16) "Polling Interval"
      'TERMINALS_NAME' => string (4) "Name"
      'TERMINALS_STREETADDRESS' => string (14) "Street Address"
      'TERMINALS_CITY' => string (4) "City"
      'TERMINALS_STATE' => string (5) "State"
      'TERMINALS_ZIP' => string (3) "Zip"
      'TERMINALS_PHONE' => string (5) "Phone"
      'TERMINALS_FAX' => string (3) "Fax"
      'TERMINALS_MAINEMAIL' => string (10) "Main Email"
      'TERMINALS_BITINSPECTIONDATE' => string (19) "BIT Inspection Date"
      'TERMINALS_CLIENT' => string (6) "Client"
      'FORMS_FORMNAME' => string (9) "Form Name"
      'FORMS_DESCRIPTION' => string (11) "Description"
      'FORMS_PULLNOTICE' => string (15) "{formType} Form"
      'FORMS_CLIENT' => string (6) "Client"
      'FORMS_CATEGORY' => string (8) "Category"
      'FORMS_EXPDATE' => string (15) "Expiration Date"
      'DRIVERS_CLIENT' => string (6) "Client"
      'DRIVERS_EMPLOYEEID' => string (11) "Employee Id"
      'DRIVERS_FIRSTNAME' => string (10) "First Name"
      'DRIVERS_LASTNAME' => string (9) "Last Name"
      'DRIVERS_DOB' => string (3) "DOB"
      'DRIVERS_SSN' => string (3) "SSN"
      'DRIVERS_STREETADDRESS' => string (14) "Street Address"
      'DRIVERS_CITY' => string (4) "City"
      'DRIVERS_STATE' => string (5) "State"
      'DRIVERS_ZIP' => string (3) "Zip"
      'DRIVERS_PHONE' => string (5) "Phone"
      'DRIVERS_DLNUMBER' => string (9) "DL Number"
      'DRIVERS_DLSTATE' => string (8) "DL State"
      'DRIVERS_DLEXPIRATIONDATE' => string (18) "DL Expiration Date"
      'DRIVERS_MEDICALSTATUS' => string (14) "Medical Status"
      'DRIVERS_MEDICALDATE' => string (12) "Medical Date"
      'DRIVERS_MEDICALDATEEXPIRATION' => string (23) "Medical Date Expiration"
      'DRIVERS_DOCTORNAME' => string (11) "Doctor Name"
      'DRIVERS_DOCTORREGISTRYNUMBER' => string (22) "Doctor Registry Number"
      'DRIVERS_MVRSTATUS' => string (10) "MVR Status"
      'DRIVERS_MVRDATEOBTAINED' => string (17) "MVR Date Obtained"
      'DRIVERS_MVRDATEEXPIRATION' => string (19) "MVR Date Expiration"
      'DRIVERS_MVRUPLOAD' => string (10) "MVR Upload"
      'DRIVERS_PULLNOTICESTATUS' => string (18) "Pull Notice Status"
      'DRIVERS_PULLNOTICEDATEOBTAINED' => string (25) "Pull Notice Date Obtained"
      'DRIVERS_PULLNOTICEDATEEXPIRATION' => string (27) "Pull Notice Date Expiration"
      'DRIVERS_UPLOADPULLNOTICE' => string (18) "Upload Pull Notice"
      'DRIVERS_APPLICATION' => string (22) "Employment Application"
      'DRIVERS_UPLOADAPPLICATION' => string (22) "Employment Application"
      'DRIVERS_PHOTO' => string (21) "Upload Driver's Photo"
      'DRIVERS_PREVIOUSPREEMPLOYMENTALCOHOLDRUGSTATEMENT' => string (48) "Previous Pre-Employment Alcohol & Drug Statement"
      'DRIVERS_UPLOADSTATEMENT' => string (48) "Previous Pre-Employment Alcohol & Drug Statement"
      'DRIVERS_CERTIFICATIONOFCOMPLIANCEWITHDRIVERLICENSE' => string (47) "Certification of Compliance with Driver License"
      'DRIVERS_UPLOADCERTIFICATION' => string (47) "Certification of Compliance with Driver License"
      'DRIVERS_FAIRCREDITREPORTINGACTSTATEMENT' => string (26) "Medical Certification Form"
      'DRIVERS_UPLOADFAIRCREDITSTATEMENT' => string (26) "Medical Certification Form"
      'DRIVERS_DRIVERSTATEMENTOFONDUTYHOURSCOMPENSATEDWORK' => string (51) "Driver Statement of On Duty Hours/ Compensated Work"
      'DRIVERS_UPLOADDRIVERSTATEMENT' => string (51) "Driver Statement of On Duty Hours/ Compensated Work"
      'DRIVERS_PREVIOUSEMPLOYERCHECK' => string (23) "Previous Employer Check"
      'DRIVERS_UPLOADCHECKDOCUMENT' => string (23) "Previous Employer Check"
      'DRIVERS_ALCOHOLDRUGPOLICYRECEIPT' => string (29) "Alcohol & Drug Policy Receipt"
      'DRIVERS_UPLOADRECEIPT' => string (29) "Alcohol & Drug Policy Receipt"
      'DRIVERS_COPYOFDRIVERLICENSE' => string (22) "Copy of Driver License"
      'DRIVERS_UPLOADDRIVERLICENSE' => string (22) "Copy of Driver License"
      'DRIVERS_DRUGTESTRESULT' => string (24) "Initial Drug Test Result"
      'DRIVERS_UPLOADDRUGTESTRESULT' => string (24) "Initial Drug Test Result"
      'DRIVERS_DLCLASS' => string (8) "DL Class"
      'DRIVERS_ANNUALREVIEW' => string (28) "Copy of Social Security Card"
      'DRIVERS_UPLOADANNUALREVIEW' => string (28) "Copy of Social Security Card"
      'DRIVERS_ANNUAL_REVIEW' => string (20) "Driver Annual Review"
      'DRIVERS_UPLOADDRIVERANNUALREVIEW' => string (20) "Driver Annual Review"
      'DRIVERS_TERMINAL' => string (8) "Terminal"
      'MEDICAL_REGISTRY_VERIFICATION' => string (29) "Medical Registry Verification"
      'DRIVERS_UPLOADMEDICALREGISTRYVERIFICATION' => string (29) "Medical Registry Verification"
      'LIBRARY_FORMNAME' => string (9) "Form Name"
      'LIBRARY_DESCRIPTION' => string (11) "Description"
      'LIBRARY_UPLOADFIELD' => string (12) "Upload Field"
      'LOGIN_USERNAME' => string (9) "User Name"
      'LOGIN_PASSWORD' => string (8) "Password"
      'LOGIN_CONFIRMPASSWORD' => string (16) "Confirm Password"
      'LOGIN_VERIFIED' => string (8) "Verified"
      'USER_FIRSTNAME' => string (10) "First Name"
      'USER_LASTNAME' => string (9) "Last Name"
      'USER_EMAIL' => string (5) "Email"
      'USER_VERIFYEMAIL' => string (12) "Verify Email"
      'USER_CLIENT' => string (6) "Client"
      'USER_LOGIN' => string (5) "Login"
      'USER_' => string (0) ""
      'ADD_CLIENT' => string (10) "Add Client"
      'EDIT_CLIENT' => string (11) "Edit Client"
      'MANAGE_CLIENT' => string (13) "Manage Client"
      'VIEW_CLIENT' => string (11) "View Client"
      'DELETE_CLIENT' => string (44) "Are you sure you wish to delete this Client?"
      'INVALID_CLIENT' => string (14) "Invalid Client"
      'ADD_DESCRIPTION_CLIENT' => string (48) "Please use the form below to create a new Client"
      'EDIT_DESCRIPTION_CLIENT' => string (44) "Please use the form below to edit the Client"
      'MANAGE_DESCRIPTION_CLIENT' => string (93) "You can search and locate Client records here to view, edit, …"
      You can search and locate Client records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_CLIENT' => string (42) "Showing details of a single Client record."
      'ADD_SUCCESS_CLIENT' => string (36) "Client {ROWNAME} added successfully."
      'EDIT_SUCCESS_CLIENT' => string (37) "Client {ROWNAME} edited successfully."
      'DELETE_SUCCESS_CLIENT' => string (38) "Client {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_CLIENT' => string (39) "Client {ROWNAME} verified successfully."
      'CLIENT_MODULE_NAME' => string (6) "Client"
      'ADD_TERMINALS' => string (13) "Add Terminals"
      'EDIT_TERMINALS' => string (14) "Edit Terminals"
      'MANAGE_TERMINALS' => string (16) "Manage Terminals"
      'VIEW_TERMINALS' => string (14) "View Terminals"
      'DELETE_TERMINALS' => string (47) "Are you sure you wish to delete this Terminals?"
      'INVALID_TERMINALS' => string (17) "Invalid Terminals"
      'ADD_DESCRIPTION_TERMINALS' => string (51) "Please use the form below to create a new Terminals"
      'EDIT_DESCRIPTION_TERMINALS' => string (47) "Please use the form below to edit the Terminals"
      'MANAGE_DESCRIPTION_TERMINALS' => string (96) "You can search and locate Terminals records here to view, ed …"
      You can search and locate Terminals records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_TERMINALS' => string (45) "Showing details of a single Terminals record."
      'ADD_SUCCESS_TERMINALS' => string (39) "Terminals {ROWNAME} added successfully."
      'EDIT_SUCCESS_TERMINALS' => string (40) "Terminals {ROWNAME} edited successfully."
      'DELETE_SUCCESS_TERMINALS' => string (41) "Terminals {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_TERMINALS' => string (42) "Terminals {ROWNAME} verified successfully."
      'TERMINALS_MODULE_NAME' => string (9) "Terminals"
      'ADD_FORMS' => string (9) "Add Forms"
      'EDIT_FORMS' => string (10) "Edit Forms"
      'MANAGE_FORMS' => string (12) "Manage Forms"
      'VIEW_FORMS' => string (10) "View Forms"
      'DELETE_FORMS' => string (43) "Are you sure you wish to delete this Forms?"
      'INVALID_FORMS' => string (13) "Invalid Forms"
      'ADD_DESCRIPTION_FORMS' => string (47) "Please use the form below to create a new Forms"
      'EDIT_DESCRIPTION_FORMS' => string (43) "Please use the form below to edit the Forms"
      'MANAGE_DESCRIPTION_FORMS' => string (92) "You can search and locate Forms records here to view, edit,  …"
      You can search and locate Forms records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_FORMS' => string (41) "Showing details of a single Forms record."
      'ADD_SUCCESS_FORMS' => string (35) "Forms {ROWNAME} added successfully."
      'EDIT_SUCCESS_FORMS' => string (36) "Forms {ROWNAME} edited successfully."
      'DELETE_SUCCESS_FORMS' => string (37) "Forms {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_FORMS' => string (38) "Forms {ROWNAME} verified successfully."
      'FORMS_MODULE_NAME' => string (5) "Forms"
      'ADD_DRIVERS' => string (10) "Add Driver"
      'ADD_DRIVERSDRAFT' => string (11) "Save Driver"
      'EDIT_DRIVERS' => string (11) "Edit Driver"
      'MANAGE_DRIVERS' => string (14) "Manage Drivers"
      'NON_COMPLIANT_DRIVERS_REPORT' => string (28) "Non Compliant Drivers Report"
      'MANAGE_NONCOMPLIANTDRIVERS' => string (28) "Manage Non-Compliant Drivers"
      'MANAGE_COMPLIANTDRIVERS' => string (24) "Manage Compliant Drivers"
      'MANAGE_MEDICALDRIVERS' => string (54) "Manage Drivers With Uncompleted Medical Certification "
      'MANAGE_MVRDRIVERS' => string (35) "Manage Drivers With Uncompleted MVR"
      'MANAGE_REQUIREDDRIVERS' => string (46) "Manage Drivers With Uncompleted Required Forms"
      'VIEW_DRIVERS' => string (12) "View Drivers"
      'DELETE_DRIVERS' => string (45) "Are you sure you wish to delete this Drivers?"
      'INVALID_DRIVERS' => string (15) "Invalid Drivers"
      'ADD_DESCRIPTION_DRIVERS' => string (49) "Please use the form below to create a new Drivers"
      'EDIT_DESCRIPTION_DRIVERS' => string (45) "Please use the form below to edit the Drivers"
      'MANAGE_DESCRIPTION_DRIVERS' => string (94) "You can search and locate Drivers records here to view, edit …"
      You can search and locate Drivers records here to view, edit, delete or perform other actions.
      'MANAGE_DESCRIPTION_NONCOMPLIANTDRIVERS' => string (108) "You can search and locate Non-Compliant Drivers records here …"
      You can search and locate Non-Compliant Drivers records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_DRIVERS' => string (43) "Showing details of a single Drivers record."
      'ADD_SUCCESS_DRIVERS' => string (37) "Drivers {ROWNAME} added successfully."
      'EDIT_SUCCESS_DRIVERS' => string (38) "Drivers {ROWNAME} edited successfully."
      'DELETE_SUCCESS_DRIVERS' => string (39) "Drivers {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_DRIVERS' => string (40) "Drivers {ROWNAME} verified successfully."
      'DRIVERS_MODULE_NAME' => string (7) "Drivers"
      'ADD_LIBRARY' => string (11) "Add Library"
      'EDIT_LIBRARY' => string (12) "Edit Library"
      'MANAGE_LIBRARY' => string (14) "Manage Library"
      'VIEW_LIBRARY' => string (12) "View Library"
      'DELETE_LIBRARY' => string (45) "Are you sure you wish to delete this Library?"
      'INVALID_LIBRARY' => string (15) "Invalid Library"
      'ADD_DESCRIPTION_LIBRARY' => string (49) "Please use the form below to create a new Library"
      'EDIT_DESCRIPTION_LIBRARY' => string (45) "Please use the form below to edit the Library"
      'MANAGE_DESCRIPTION_LIBRARY' => string (94) "You can search and locate Library records here to view, edit …"
      You can search and locate Library records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_LIBRARY' => string (43) "Showing details of a single Library record."
      'ADD_SUCCESS_LIBRARY' => string (37) "Library {ROWNAME} added successfully."
      'EDIT_SUCCESS_LIBRARY' => string (38) "Library {ROWNAME} edited successfully."
      'DELETE_SUCCESS_LIBRARY' => string (39) "Library {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_LIBRARY' => string (40) "Library {ROWNAME} verified successfully."
      'LIBRARY_MODULE_NAME' => string (7) "Library"
      'ADD_LOGIN' => string (9) "Add Login"
      'EDIT_LOGIN' => string (10) "Edit Login"
      'MANAGE_LOGIN' => string (12) "Manage Login"
      'VIEW_LOGIN' => string (10) "View Login"
      'DELETE_LOGIN' => string (43) "Are you sure you wish to delete this Login?"
      'INVALID_LOGIN' => string (13) "Invalid Login"
      'ADD_DESCRIPTION_LOGIN' => string (47) "Please use the form below to create a new Login"
      'EDIT_DESCRIPTION_LOGIN' => string (43) "Please use the form below to edit the Login"
      'MANAGE_DESCRIPTION_LOGIN' => string (92) "You can search and locate Login records here to view, edit,  …"
      You can search and locate Login records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_LOGIN' => string (41) "Showing details of a single Login record."
      'ADD_SUCCESS_LOGIN' => string (35) "Login {ROWNAME} added successfully."
      'EDIT_SUCCESS_LOGIN' => string (36) "Login {ROWNAME} edited successfully."
      'DELETE_SUCCESS_LOGIN' => string (37) "Login {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_LOGIN' => string (38) "Login {ROWNAME} verified successfully."
      'LOGIN_MODULE_NAME' => string (5) "Login"
      'ADD_USER' => string (8) "Add User"
      'EDIT_USER' => string (9) "Edit User"
      'MANAGE_USER' => string (11) "Manage User"
      'VIEW_USER' => string (9) "View User"
      'DELETE_USER' => string (42) "Are you sure you wish to delete this User?"
      'INVALID_USER' => string (12) "Invalid User"
      'ADD_DESCRIPTION_USER' => string (46) "Please use the form below to create a new User"
      'EDIT_DESCRIPTION_USER' => string (42) "Please use the form below to edit the User"
      'MANAGE_DESCRIPTION_USER' => string (91) "You can search and locate User records here to view, edit, d …"
      You can search and locate User records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_USER' => string (40) "Showing details of a single User record."
      'ADD_SUCCESS_USER' => string (34) "User {ROWNAME} added successfully."
      'EDIT_SUCCESS_USER' => string (35) "User {ROWNAME} edited successfully."
      'DELETE_SUCCESS_USER' => string (36) "User {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_USER' => string (37) "User {ROWNAME} verified successfully."
      'USER_MODULE_NAME' => string (4) "User"
      'USER_USERNAME' => string (9) "User Name"
      'USER_PASSWORD' => string (8) "Password"
      'USER_CONFIRMPASSWORD' => string (16) "Confirm Password"
      'USER_VERIFIED' => string (8) "Verified"
      'LOGIN_OLDPASSWORD' => string (12) "Old Password"
      'LOGIN_NEWPASSWORD' => string (12) "New Password"
      'CHANGE_PASSWORD' => string (15) "Change Password"
      'CHANGE_PASSWORD_DESCRIPTION' => string (56) "Please use the form below to change {usersName} password"
      'CHANGE_TEMPPASSWORD' => string (25) "Change Temporary Password"
      'MESSAGES_FROM' => string (4) "From"
      'MESSAGES_TITLE' => string (5) "Title"
      'MESSAGES_BODY' => string (4) "Body"
      'MESSAGES_CONVERSATIONID' => string (15) "Conversation Id"
      'RECIPIENTS_CONVERSATIONID' => string (15) "Conversation Id"
      'RECIPIENTS_TO' => string (2) "To"
      'RECIPIENTS_STATUS' => string (6) "Status"
      'MESSAGEATTACHMENTS_MESSAGEID' => string (10) "Message Id"
      'MESSAGEATTACHMENTS_FILE' => string (4) "File"
      'AUDITS_TYPE' => string (4) "Type"
      'AUDITS_DATE' => string (4) "Date"
      'AUDITS_TIME' => string (4) "Time"
      'AUDITS_DUEDATE' => string (8) "Due Date"
      'AUDITS_TOTALDRIVERSSELECTED' => string (22) "Total Drivers Selected"
      'AUDITS_TOTALCLIENTSAFFECTED' => string (22) "Total Clients Affected"
      'AUDITS_STATUS' => string (6) "Status"
      'AUDITDRIVERS_AUDITID' => string (8) "Audit Id"
      'AUDITDRIVERS_DRIVERID' => string (9) "Driver Id"
      'AUDITDRIVERS_AUDITSTATUS' => string (12) "Audit Status"
      'AUDITDRIVERS_FILE1' => string (16) "Audit Drugs form"
      'AUDITDRIVERS_FILE2' => string (18) "Audit Alcohol form"
      'ADD_MESSAGES' => string (12) "Add Messages"
      'EDIT_MESSAGES' => string (13) "Edit Messages"
      'MANAGE_MESSAGES' => string (15) "Manage Messages"
      'VIEW_MESSAGES' => string (13) "View Messages"
      'DELETE_MESSAGES' => string (46) "Are you sure you wish to delete this Messages?"
      'INVALID_MESSAGES' => string (16) "Invalid Messages"
      'ADD_DESCRIPTION_MESSAGES' => string (50) "Please use the form below to create a new Messages"
      'EDIT_DESCRIPTION_MESSAGES' => string (46) "Please use the form below to edit the Messages"
      'MANAGE_DESCRIPTION_MESSAGES' => string (95) "You can search and locate Messages records here to view, edi …"
      You can search and locate Messages records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_MESSAGES' => string (44) "Showing details of a single Messages record."
      'ADD_SUCCESS_MESSAGES' => string (38) "Messages {ROWNAME} added successfully."
      'SENT_SUCCESS_MESSAGES' => string (37) "Messages {ROWNAME} sent successfully."
      'EDIT_SUCCESS_MESSAGES' => string (39) "Messages {ROWNAME} edited successfully."
      'DELETE_SUCCESS_MESSAGES' => string (40) "Messages {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_MESSAGES' => string (41) "Messages {ROWNAME} verified successfully."
      'MESSAGES_MODULE_NAME' => string (8) "Messages"
      'INBOX' => string (8) "Lynxtalk"
      'ADD_DESCRIPTION_INBOX' => string (89) "You can search and locate Messages records here to view, del …"
      You can search and locate Messages records here to view, delete or perform other actions.
      'ADD_RECIPIENTS' => string (14) "Add Recipients"
      'EDIT_RECIPIENTS' => string (15) "Edit Recipients"
      'MANAGE_RECIPIENTS' => string (17) "Manage Recipients"
      'VIEW_RECIPIENTS' => string (15) "View Recipients"
      'DELETE_RECIPIENTS' => string (48) "Are you sure you wish to delete this Recipients?"
      'INVALID_RECIPIENTS' => string (18) "Invalid Recipients"
      'ADD_DESCRIPTION_RECIPIENTS' => string (52) "Please use the form below to create a new Recipients"
      'EDIT_DESCRIPTION_RECIPIENTS' => string (48) "Please use the form below to edit the Recipients"
      'MANAGE_DESCRIPTION_RECIPIENTS' => string (97) "You can search and locate Recipients records here to view, e …"
      You can search and locate Recipients records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_RECIPIENTS' => string (46) "Showing details of a single Recipients record."
      'ADD_SUCCESS_RECIPIENTS' => string (40) "Recipients {ROWNAME} added successfully."
      'EDIT_SUCCESS_RECIPIENTS' => string (41) "Recipients {ROWNAME} edited successfully."
      'DELETE_SUCCESS_RECIPIENTS' => string (42) "Recipients {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_RECIPIENTS' => string (43) "Recipients {ROWNAME} verified successfully."
      'RECIPIENTS_MODULE_NAME' => string (10) "Recipients"
      'ADD_MESSAGEATTACHMENTS' => string (23) "Add Message Attachments"
      'EDIT_MESSAGEATTACHMENTS' => string (24) "Edit Message Attachments"
      'MANAGE_MESSAGEATTACHMENTS' => string (26) "Manage Message Attachments"
      'VIEW_MESSAGEATTACHMENTS' => string (24) "View Message Attachments"
      'DELETE_MESSAGEATTACHMENTS' => string (57) "Are you sure you wish to delete this Message Attachments?"
      'INVALID_MESSAGEATTACHMENTS' => string (27) "Invalid Message Attachments"
      'ADD_DESCRIPTION_MESSAGEATTACHMENTS' => string (61) "Please use the form below to create a new Message Attachment …"
      Please use the form below to create a new Message Attachments
      'EDIT_DESCRIPTION_MESSAGEATTACHMENTS' => string (57) "Please use the form below to edit the Message Attachments"
      'MANAGE_DESCRIPTION_MESSAGEATTACHMENTS' => string (106) "You can search and locate Message Attachments records here t …"
      You can search and locate Message Attachments records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_MESSAGEATTACHMENTS' => string (55) "Showing details of a single Message Attachments record."
      'ADD_SUCCESS_MESSAGEATTACHMENTS' => string (49) "Message Attachments {ROWNAME} added successfully."
      'EDIT_SUCCESS_MESSAGEATTACHMENTS' => string (50) "Message Attachments {ROWNAME} edited successfully."
      'DELETE_SUCCESS_MESSAGEATTACHMENTS' => string (51) "Message Attachments {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_MESSAGEATTACHMENTS' => string (52) "Message Attachments {ROWNAME} verified successfully."
      'MESSAGEATTACHMENTS_MODULE_NAME' => string (19) "Message Attachments"
      'ADD_AUDITS' => string (10) "Add Audits"
      'EDIT_AUDITS' => string (11) "Edit Audits"
      'MANAGE_AUDITS' => string (13) "Manage Audits"
      'VIEW_AUDITS' => string (11) "View Audits"
      'DELETE_AUDITS' => string (44) "Are you sure you wish to delete this Audits?"
      'INVALID_AUDITS' => string (14) "Invalid Audits"
      'ADD_DESCRIPTION_AUDITS' => string (48) "Please use the form below to create a new Audits"
      'EDIT_DESCRIPTION_AUDITS' => string (44) "Please use the form below to edit the Audits"
      'MANAGE_DESCRIPTION_AUDITS' => string (93) "You can search and locate Audits records here to view, edit, …"
      You can search and locate Audits records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_AUDITS' => string (42) "Showing details of a single Audits record."
      'ADD_SUCCESS_AUDITS' => string (36) "Audits {ROWNAME} added successfully."
      'EDIT_SUCCESS_AUDITS' => string (37) "Audits {ROWNAME} edited successfully."
      'DELETE_SUCCESS_AUDITS' => string (38) "Audits {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_AUDITS' => string (39) "Audits {ROWNAME} verified successfully."
      'AUDITS_MODULE_NAME' => string (6) "Audits"
      'ADD_AUDITDRIVERS' => string (17) "Add Audit Drivers"
      'EDIT_AUDITDRIVERS' => string (18) "Edit Audit Drivers"
      'MANAGE_AUDITDRIVERS' => string (20) "Manage Audit Drivers"
      'MANAGE_AUDITANDRECONCILATION' => string (23) "Audits & Reconciliation"
      'VIEW_AUDITDRIVERS' => string (18) "View Audit Drivers"
      'DELETE_AUDITDRIVERS' => string (51) "Are you sure you wish to delete this Audit Drivers?"
      'INVALID_AUDITDRIVERS' => string (21) "Invalid Audit Drivers"
      'ADD_DESCRIPTION_AUDITDRIVERS' => string (55) "Please use the form below to create a new Audit Drivers"
      'EDIT_DESCRIPTION_AUDITDRIVERS' => string (51) "Please use the form below to edit the Audit Drivers"
      'MANAGE_DESCRIPTION_AUDITDRIVERS' => string (100) "You can search and locate Audit Drivers records here to view …"
      You can search and locate Audit Drivers records here to view, edit, delete or perform other actions.
      'MANAGE_DESCRIPTION_AUDITANDRECONCILATION' => string (45) "Audits & Reconciliation Elements and Features"
      'VIEW_DESCRIPTION_AUDITDRIVERS' => string (49) "Showing details of a single Audit Drivers record."
      'ADD_SUCCESS_AUDITDRIVERS' => string (43) "Audit Drivers {ROWNAME} added successfully."
      'EDIT_SUCCESS_AUDITDRIVERS' => string (44) "Audit Drivers {ROWNAME} edited successfully."
      'DELETE_SUCCESS_AUDITDRIVERS' => string (45) "Audit Drivers {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_AUDITDRIVERS' => string (46) "Audit Drivers {ROWNAME} verified successfully."
      'AUDITDRIVERS_MODULE_NAME' => string (13) "Audit Drivers"
      'DRIVERS_STATUS' => string (6) "Status"
      'DRIVERS_MIDDLENAME' => string (11) "Middle Name"
      'VEHICLES_CLIENT' => string (6) "Client"
      'VEHICLES_LICENSEPLATENUMBER' => string (20) "License Plate Number"
      'VEHICLES_MODEL' => string (5) "Model"
      'VEHICLES_YEAR' => string (4) "Year"
      'VEHICLES_VIN' => string (3) "VIN"
      'VEHICLES_TIRESIZE' => string (9) "Tire Size"
      'VEHICLES_REGISTEREDOWNER' => string (16) "Registered Owner"
      'VEHICLES_NUMBEROFAXLES' => string (15) "Number of Axles"
      'VEHICLES_GVWRCLASS' => string (10) "GVWR Class"
      'VEHICLES_OVERALLVEHICLELENGTH' => string (29) "Overall Vehicle Length (Feet)"
      'TRAILERS_OVERALLVEHICLELENGTH' => string (29) "Overall Trailer Length (Feet)"
      'VEHICLES_VEHICLELENGTH' => string (21) "Vehicle Length (Feet)"
      'TRAILERS_TRAILERLENGTH' => string (21) "Trailer Length (Feet)"
      'VEHICLES_VEHICLEWIDTH' => string (22) "Vehicle Width (Inches)"
      'TRAILERS_VEHICLEWIDTH' => string (22) "Trailer Width (Inches)"
      'VEHICLES_VEHICLEHEIGHT' => string (21) "Vehicle Height (Feet)"
      'TRAILERS_VEHICLEHEIGHT' => string (21) "Trailer Height (Feet)"
      'VEHICLES_CABINCOLOR' => string (11) "Cabin Color"
      'TRAILERS_CABINCOLOR' => string (5) "Color"
      'VEHICLES_BODYSERIALNO' => string (18) "Body Serial Number"
      'TRAILERS_BODYSERIALNO' => string (13) "Serial Number"
      'VEHICLES_ENGINESERIALNO' => string (20) "Engine Serial Number"
      'VEHICLES_TRANSMISSIONTYPE' => string (17) "Transmission Type"
      'VEHICLES_TRANSMISSIONNO' => string (19) "Transmission Number"
      'VEHICLES_DIFFERENTIALTYPE' => string (17) "Differential Type"
      'VEHICLES_DIFFERENTIALNO' => string (19) "Differential Number"
      'VEHICLES_PHOTO' => string (5) "Photo"
      'VEHICLES_REGEXPDATE' => string (28) "Registration Expiration Date"
      'VEHICLES_DEVICE_ID' => string (9) "Device Id"
      'ADD_VEHICLES' => string (12) "Add Vehicles"
      'EDIT_VEHICLES' => string (13) "Edit Vehicles"
      'MANAGE_VEHICLES' => string (15) "Manage Vehicles"
      'MANAGE_COMPLIANTVEHICLES' => string (25) "Manage Compliant Vehicles"
      'MANAGE_NONCOMPLIANTVEHICLES' => string (29) "Manage Non-Compliant Vehicles"
      'MANAGE_NONACQUISITIONREGISTRATIONVEHICLES' => string (56) "Manage Non-Compliant Acquisition & Registration Vehicles"
      'VIEW_VEHICLES' => string (13) "View Vehicles"
      'DELETE_VEHICLES' => string (46) "Are you sure you wish to delete this Vehicles?"
      'INVALID_VEHICLES' => string (16) "Invalid Vehicles"
      'ADD_DESCRIPTION_VEHICLES' => string (50) "Please use the form below to create a new Vehicles"
      'EDIT_DESCRIPTION_VEHICLES' => string (46) "Please use the form below to edit the Vehicles"
      'MANAGE_DESCRIPTION_VEHICLES' => string (95) "You can search and locate Vehicles records here to view, edi …"
      You can search and locate Vehicles records here to view, edit, delete or perform other actions.
      'MANAGE_DESCRIPTION_TRAILERS' => string (95) "You can search and locate Trailers records here to view, edi …"
      You can search and locate Trailers records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_VEHICLES' => string (44) "Showing details of a single Vehicles record."
      'ADD_SUCCESS_VEHICLES' => string (38) "Vehicles {ROWNAME} added successfully."
      'EDIT_SUCCESS_VEHICLES' => string (39) "Vehicles {ROWNAME} edited successfully."
      'DELETE_SUCCESS_VEHICLES' => string (40) "Vehicles {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_VEHICLES' => string (41) "Vehicles {ROWNAME} verified successfully."
      'VEHICLES_MODULE_NAME' => string (8) "Vehicles"
      'MANAGE_COMPLIANTTRAILERS' => string (25) "Manage Compliant Trailers"
      'MANAGE_NONCOMPLIANTTRAILERS' => string (29) "Manage Non-Compliant Trailers"
      'ADD_TRAILERS' => string (12) "Add Trailers"
      'EDIT_TRAILERS' => string (13) "Edit Trailers"
      'MANAGE_TRAILERS' => string (15) "Manage Trailers"
      'MANAGE_NONACQUISITIONREGISTRATIONTRAILERS' => string (56) "Manage Non-Compliant Acquisition & Registration Trailers"
      'VIEW_TRAILERS' => string (13) "View Trailers"
      'DELETE_TRAILERS' => string (46) "Are you sure you wish to delete this Trailers?"
      'INVALID_TRAILERS' => string (16) "Invalid Trailers"
      'ADD_DESCRIPTION_TRAILERS' => string (50) "Please use the form below to create a new Trailers"
      'EDIT_DESCRIPTION_TRAILERS' => string (46) "Please use the form below to edit the Trailers"
      'VIEW_DESCRIPTION_TRAILERS' => string (44) "Showing details of a single Trailers record."
      'ADD_SUCCESS_TRAILERS' => string (38) "Trailers {ROWNAME} added successfully."
      'EDIT_SUCCESS_TRAILERS' => string (39) "Trailers {ROWNAME} edited successfully."
      'DELETE_SUCCESS_TRAILERS' => string (40) "Trailers {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_TRAILERS' => string (41) "Trailers {ROWNAME} verified successfully."
      'TRAILERS_MODULE_NAME' => string (8) "Trailers"
      'CLIENT_IFTAACCOUNTNUMBER' => string (19) "IFTA Account Number"
      'CLIENT_COPYOFIFTA' => string (12) "Copy of IFTA"
      'DRIVERS_HIREDATE' => string (9) "Hire Date"
      'VEHICLES_UNITNUMBER' => string (11) "Unit Number"
      'VEHICLES_CURRENTODOMETERREADING' => string (24) "Initial Odometer Reading"
      'VEHICLES_DATEOFLASTMAINTENANCE' => string (24) "Date of Last Maintenance"
      'VEHICLES_MAINTENANCEINTERVALMILEAGE' => string (28) "Maintenance Interval Mileage"
      'VEHICLES_MAINTENANCEINTERVALTIME' => string (25) "Maintenance Interval Time"
      'VEHICLES_BASESTATEOFREGISTRATION' => string (26) "Base State of Registration"
      'VEHICLES_DATEOFREGISTRATION' => string (20) "Date of Registration"
      'VEHICLES_COPYOFREGISTRATION' => string (20) "Copy of Registration"
      'VEHICLES_IRPPLATE' => string (9) "IRP Plate"
      'VEHICLES_IRPACCOUNTNUMBER' => string (18) "IRP Account Number"
      'VEHICLES_VEHICLEISOWNED' => string (16) "Vehicle is Owned"
      'TRAILERS_VEHICLEISOWNED' => string (16) "Trailer is Owned"
      'VEHICLES_PURCHASEDATE' => string (13) "Purchase Date"
      'VEHICLES_COPYOFPURCHASEAGREEMENT' => string (26) "Copy of Purchase Agreement"
      'VEHICLES_VEHICLEISLEASED' => string (17) "Vehicle is Leased"
      'TRAILERS_VEHICLEISLEASED' => string (17) "Trailer is Leased"
      'VEHICLES_LEASEDATE' => string (10) "Lease Date"
      'VEHICLES_LESSORINFORMATION' => string (18) "Lessor Information"
      'VEHICLES_COPYOFLEASEAGREEMENT' => string (23) "Copy of Lease Agreement"
      'VEHICLES_INSERVICEDATE' => string (15) "IN Service Date"
      'VEHICLES_STATUS' => string (6) "Status"
      'VEHICLES_LEASEEXPDATE' => string (21) "Lease Expiration Date"
      'DRIVERRECORDS_CLIENT' => string (6) "Client"
      'DRIVERRECORDS_DRIVER' => string (6) "Driver"
      'DRIVERRECORDS_TRANSKEY' => string (8) "Transkey"
      'DRIVERRECORDS_STATUS' => string (6) "Status"
      'DRIVERRECORDS_STATUSDETAIL' => string (13) "Status Detail"
      'DRIVERRECORDS_STATUSDESCRIPTION' => string (18) "Status Description"
      'DRIVERRECORDS_DRIVERLICENSENUMBER' => string (21) "Driver License Number"
      'DRIVERRECORDS_LASTNAME' => string (9) "Last Name"
      'DRIVERRECORDS_DRIVERLICENSESTATE' => string (20) "Driver License State"
      'DRIVERRECORDS_DOB' => string (3) "DOB"
      'DRIVERRECORDS_MOTORCARRIERID' => string (16) "Motor Carrier Id"
      'DRIVERRECORDS_INTERNALREFID' => string (15) "Internal Ref Id"
      'DRIVERRECORDS_AUTHCODE' => string (9) "Auth Code"
      'DRIVERRECORDS_DRIVERCONSENT' => string (14) "Driver Consent"
      'DRIVERRECORDS_PRIVACYSTATEMENT' => string (17) "Privacy Statement"
      'DRIVERRECORDS_FIRSTNAME' => string (10) "First Name"
      'DRIVERRECORDS_MIDDLEINITIAL' => string (14) "Middle Initial"
      'DRIVERRECORDS_DOTNUMBER' => string (10) "Dot Number"
      'DRIVERRECORDS_AUTHCODEURL' => string (13) "Auth Code Url"
      'ADD_DRIVERRECORDS' => string (15) "Add PSP Records"
      'EDIT_DRIVERRECORDS' => string (16) "Edit PSP Records"
      'MANAGE_DRIVERRECORDS' => string (18) "Manage PSP Records"
      'VIEW_DRIVERRECORDS' => string (16) "View PSP Records"
      'DELETE_DRIVERRECORDS' => string (49) "Are you sure you wish to delete this PSP Records?"
      'INVALID_DRIVERRECORDS' => string (19) "Invalid PSP Records"
      'ADD_DESCRIPTION_DRIVERRECORDS' => string (53) "Please use the form below to create a new PSP Records"
      'EDIT_DESCRIPTION_DRIVERRECORDS' => string (49) "Please use the form below to edit the PSP Records"
      'MANAGE_DESCRIPTION_DRIVERRECORDS' => string (90) "You can search and locate PSP Records here to view, edit, de …"
      You can search and locate PSP Records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_DRIVERRECORDS' => string (47) "Showing details of a single PSP Records record."
      'ADD_SUCCESS_DRIVERRECORDS' => string (41) "PSP Records {ROWNAME} added successfully."
      'EDIT_SUCCESS_DRIVERRECORDS' => string (42) "PSP Records {ROWNAME} edited successfully."
      'DELETE_SUCCESS_DRIVERRECORDS' => string (43) "PSP Records {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_DRIVERRECORDS' => string (44) "PSP Records {ROWNAME} verified successfully."
      'DRIVERRECORDS_MODULE_NAME' => string (11) "PSP Records"
      'PLANS_NAME' => string (4) "Name"
      'PLANS_CLIENT' => string (6) "Client"
      'PLANS_CLIENTUSERS' => string (12) "Client Users"
      'PLANS_LYNXTALK' => string (8) "Lynxtalk"
      'PLANS_PRICE' => string (5) "Price"
      'PLANS_PRIVATE' => string (7) "Private"
      'PLANS_POPULAR' => string (7) "Popular"
      'PLANS_DESCRIPTION' => string (11) "Description"
      'PLANS_TERM' => string (12) "Payment Term"
      'PLANS_PRICING' => string (13) "Contact Sales"
      'PLANS_PSP' => string (10) "PSP Record"
      'ORGANIZATIONS_NAME' => string (4) "Name"
      'ORGANIZATIONS_FIRSTNAME' => string (10) "First Name"
      'ORGANIZATIONS_LASTNAME' => string (9) "Last Name"
      'ORGANIZATIONS_LOGIN' => string (5) "Login"
      'ORGANIZATIONS_DOT' => string (10) "DOT Number"
      'ORGANIZATIONPLAN_ORGANIZATION' => string (12) "Organization"
      'ORGANIZATIONPLAN_PLAN' => string (4) "Plan"
      'ORGANIZATIONPLAN_STARTDATE' => string (10) "Start Date"
      'ORGANIZATIONPLAN_ENDDATE' => string (8) "End Date"
      'ORGANIZATIONPLAN_RENEWALDATE' => string (12) "Renewal date"
      'ADD_PLANS' => string (9) "Add Plans"
      'EDIT_PLANS' => string (10) "Edit Plans"
      'MANAGE_PLANS' => string (12) "Manage Plans"
      'VIEW_PLANS' => string (10) "View Plans"
      'MY_PLANS' => string (7) "My Plan"
      'DELETE_PLANS' => string (43) "Are you sure you wish to delete this Plans?"
      'INVALID_PLANS' => string (13) "Invalid Plans"
      'ADD_DESCRIPTION_PLANS' => string (47) "Please use the form below to create a new Plans"
      'EDIT_DESCRIPTION_PLANS' => string (43) "Please use the form below to edit the Plans"
      'MANAGE_DESCRIPTION_PLANS' => string (92) "You can search and locate Plans records here to view, edit,  …"
      You can search and locate Plans records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_PLANS' => string (41) "Showing details of a single Plans record."
      'ADD_SUCCESS_PLANS' => string (35) "Plans {ROWNAME} added successfully."
      'EDIT_SUCCESS_PLANS' => string (36) "Plans {ROWNAME} edited successfully."
      'DELETE_SUCCESS_PLANS' => string (37) "Plans {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_PLANS' => string (38) "Plans {ROWNAME} verified successfully."
      'PLANS_MODULE_NAME' => string (5) "Plans"
      'ADD_ORGANIZATIONS' => string (17) "Add Organizations"
      'EDIT_ORGANIZATIONS' => string (18) "Edit Organizations"
      'MANAGE_ORGANIZATIONS' => string (20) "Manage Organizations"
      'VIEW_ORGANIZATIONS' => string (18) "View Organizations"
      'DELETE_ORGANIZATIONS' => string (51) "Are you sure you wish to delete this Organizations?"
      'INVALID_ORGANIZATIONS' => string (21) "Invalid Organizations"
      'ADD_DESCRIPTION_ORGANIZATIONS' => string (55) "Please use the form below to create a new Organizations"
      'EDIT_DESCRIPTION_ORGANIZATIONS' => string (51) "Please use the form below to edit the Organizations"
      'MANAGE_DESCRIPTION_ORGANIZATIONS' => string (100) "You can search and locate Organizations records here to view …"
      You can search and locate Organizations records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_ORGANIZATIONS' => string (49) "Showing details of a single Organizations record."
      'ADD_SUCCESS_ORGANIZATIONS' => string (43) "Organizations {ROWNAME} added successfully."
      'EDIT_SUCCESS_ORGANIZATIONS' => string (44) "Organizations {ROWNAME} edited successfully."
      'DELETE_SUCCESS_ORGANIZATIONS' => string (45) "Organizations {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_ORGANIZATIONS' => string (46) "Organizations {ROWNAME} verified successfully."
      'ORGANIZATIONS_MODULE_NAME' => string (13) "Organizations"
      'ADD_ORGANIZATIONPLAN' => string (21) "Add Organization Plan"
      'EDIT_ORGANIZATIONPLAN' => string (22) "Edit Organization Plan"
      'MANAGE_ORGANIZATIONPLAN' => string (24) "Manage Organization Plan"
      'VIEW_ORGANIZATIONPLAN' => string (22) "View Organization Plan"
      'DELETE_ORGANIZATIONPLAN' => string (55) "Are you sure you wish to delete this Organization Plan?"
      'INVALID_ORGANIZATIONPLAN' => string (25) "Invalid Organization Plan"
      'ADD_DESCRIPTION_ORGANIZATIONPLAN' => string (59) "Please use the form below to create a new Organization Plan"
      'EDIT_DESCRIPTION_ORGANIZATIONPLAN' => string (55) "Please use the form below to edit the Organization Plan"
      'MANAGE_DESCRIPTION_ORGANIZATIONPLAN' => string (104) "You can search and locate Organization Plan records here to  …"
      You can search and locate Organization Plan records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_ORGANIZATIONPLAN' => string (53) "Showing details of a single Organization Plan record."
      'ADD_SUCCESS_ORGANIZATIONPLAN' => string (47) "Organization Plan {ROWNAME} added successfully."
      'EDIT_SUCCESS_ORGANIZATIONPLAN' => string (48) "Organization Plan {ROWNAME} edited successfully."
      'DELETE_SUCCESS_ORGANIZATIONPLAN' => string (49) "Organization Plan {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_ORGANIZATIONPLAN' => string (50) "Organization Plan {ROWNAME} verified successfully."
      'ORGANIZATIONPLAN_MODULE_NAME' => string (17) "Organization Plan"
      'CLIENT_DOTPIN' => string (10) "Dot Pin No"
      'CLIENT_NOTES' => string (5) "Notes"
      'USER_ORGTYPE' => string (34) "DOT Compliance Services Provider ?"
      'CARDDETAILS_USERID' => string (7) "User Id"
      'CARDDETAILS_PAYMENTPROFILEID' => string (18) "Payment Profile Id"
      'CARDDETAILS_DEFAULT' => string (7) "Default"
      'ADD_CARDDETAILS' => string (16) "Add Card Details"
      'EDIT_CARDDETAILS' => string (17) "Edit Card Details"
      'MANAGE_CARDDETAILS' => string (19) "Manage Card Details"
      'VIEW_CARDDETAILS' => string (17) "View Card Details"
      'DELETE_CARDDETAILS' => string (50) "Are you sure you wish to delete this Card Details?"
      'INVALID_CARDDETAILS' => string (20) "Invalid Card Details"
      'ADD_DESCRIPTION_CARDDETAILS' => string (54) "Please use the form below to create a new Card Details"
      'EDIT_DESCRIPTION_CARDDETAILS' => string (50) "Please use the form below to edit the Card Details"
      'MANAGE_DESCRIPTION_CARDDETAILS' => string (99) "You can search and locate Card Details records here to view, …"
      You can search and locate Card Details records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_CARDDETAILS' => string (48) "Showing details of a single Card Details record."
      'ADD_SUCCESS_CARDDETAILS' => string (42) "Card Details {ROWNAME} added successfully."
      'EDIT_SUCCESS_CARDDETAILS' => string (43) "Card Details {ROWNAME} edited successfully."
      'DELETE_SUCCESS_CARDDETAILS' => string (44) "Card Details {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_CARDDETAILS' => string (45) "Card Details {ROWNAME} verified successfully."
      'CARDDETAILS_MODULE_NAME' => string (12) "Card Details"
      'ACCOUNT_PROFILE' => string (15) "Account Profile"
      'FORMSCATEGORY_NAME' => string (4) "Name"
      'FORMSCATEGORY_EXPDATEREQUIRED' => string (17) "Exp Date Required"
      'FORMSCATEGORY_FORMCLASS' => string (10) "Form Class"
      'ADD_FORMSCATEGORY' => string (18) "Add Forms Category"
      'EDIT_FORMSCATEGORY' => string (19) "Edit Forms Category"
      'MANAGE_FORMSCATEGORY' => string (21) "Manage Forms Category"
      'VIEW_FORMSCATEGORY' => string (19) "View Forms Category"
      'DELETE_FORMSCATEGORY' => string (52) "Are you sure you wish to delete this Forms Category?"
      'INVALID_FORMSCATEGORY' => string (22) "Invalid Forms Category"
      'ADD_DESCRIPTION_FORMSCATEGORY' => string (56) "Please use the form below to create a new Forms Category"
      'EDIT_DESCRIPTION_FORMSCATEGORY' => string (52) "Please use the form below to edit the Forms Category"
      'MANAGE_DESCRIPTION_FORMSCATEGORY' => string (101) "You can search and locate Forms Category records here to vie …"
      You can search and locate Forms Category records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_FORMSCATEGORY' => string (50) "Showing details of a single Forms Category record."
      'ADD_SUCCESS_FORMSCATEGORY' => string (44) "Forms Category {ROWNAME} added successfully."
      'EDIT_SUCCESS_FORMSCATEGORY' => string (45) "Forms Category {ROWNAME} edited successfully."
      'DELETE_SUCCESS_FORMSCATEGORY' => string (46) "Forms Category {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_FORMSCATEGORY' => string (47) "Forms Category {ROWNAME} verified successfully."
      'FORMSCATEGORY_MODULE_NAME' => string (14) "Forms Category"
      'ACCOUNT' => string (10) "My Account"
      'ACCOUNT_DESCRIPTION' => string (0) ""
      'MANAGE_CARDS' => string (12) "Manage Cards"
      'MANAGE_DESCRIPTION_CARDS' => string (85) "You can search and locate Card records here to view, delete  …"
      You can search and locate Card records here to view, delete or perform other actions.
      'ADD_CARD' => string (9) "Add Cards"
      'ADD_DESCRIPTION_CARD' => string (46) "Please use the form below to create a new card"
      'ADD_BANKACC' => string (16) "Add Bank Account"
      'ADD_DESCRIPTION_BANKACC' => string (54) "Please use the form below to create a new bank account"
      'VEHICLEMAINTENANCE_VEHICLE' => string (7) "vehicle"
      'VEHICLEMAINTENANCE_LASTMAINTENANCEDATE' => string (21) "Last Maintenance Date"
      'VEHICLEMAINTENANCE_CURRENTODOMETERREADING' => string (24) "Current Odometer Reading"
      'VEHICLEMAINTENANCE_MAINTENANCEINTERVAL' => string (20) "Maintenance Interval"
      'VEHICLEMAINTENANCE_MAINTENANCEPERIOD' => string (18) "Maintenance Period"
      'VEHICLEMAINTENANCE_DUEDATE' => string (8) "Due Date"
      'VEHICLEMAINTENANCE_DUEATODOMETERREADING' => string (23) "Due At Odometer Reading"
      'VEHICLEMAINTENANCE_PERFORMEDDATE' => string (14) "Performed Date"
      'VEHICLEMAINTENANCE_MAINTENANCERECORD' => string (18) "Maintenance Record"
      'VEHICLEMAINTENANCE_MAINTENANCENOTES' => string (17) "Maintenance Notes"
      'VEHICLEMAINTENANCE_STATUS' => string (6) "Status"
      'ADD_VEHICLEMAINTENANCE' => string (23) "Add Vehicle Maintenance"
      'EDIT_VEHICLEMAINTENANCE' => string (24) "Edit Vehicle Maintenance"
      'MANAGE_VEHICLEMAINTENANCE' => string (26) "Manage Vehicle Maintenance"
      'VIEW_VEHICLEMAINTENANCE' => string (24) "View Vehicle Maintenance"
      'DELETE_VEHICLEMAINTENANCE' => string (57) "Are you sure you wish to delete this Vehicle Maintenance?"
      'INVALID_VEHICLEMAINTENANCE' => string (27) "Invalid Vehicle Maintenance"
      'ADD_DESCRIPTION_VEHICLEMAINTENANCE' => string (61) "Please use the form below to create a new Vehicle Maintenanc …"
      Please use the form below to create a new Vehicle Maintenance
      'EDIT_DESCRIPTION_VEHICLEMAINTENANCE' => string (57) "Please use the form below to edit the Vehicle Maintenance"
      'MANAGE_DESCRIPTION_VEHICLEMAINTENANCE' => string (106) "You can search and locate Vehicle Maintenance records here t …"
      You can search and locate Vehicle Maintenance records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_VEHICLEMAINTENANCE' => string (55) "Showing details of a single Vehicle Maintenance record."
      'ADD_SUCCESS_VEHICLEMAINTENANCE' => string (49) "Vehicle Maintenance {ROWNAME} added successfully."
      'EDIT_SUCCESS_VEHICLEMAINTENANCE' => string (50) "Vehicle Maintenance {ROWNAME} edited successfully."
      'DELETE_SUCCESS_VEHICLEMAINTENANCE' => string (51) "Vehicle Maintenance {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_VEHICLEMAINTENANCE' => string (52) "Vehicle Maintenance {ROWNAME} verified successfully."
      'VEHICLEMAINTENANCE_MODULE_NAME' => string (19) "Vehicle Maintenance"
      'PAYMENT_METHODS' => string (22) "Manage Payment Methods"
      'PAYMENT_METHODS_CARDS' => string (19) "Manage Credit Cards"
      'PAYMENT_METHODS_BANKACC' => string (20) "Manage Bank Accounts"
      'DRIVERACCIDENTREGISTER_DRIVER' => string (6) "Driver"
      'DRIVERACCIDENTREGISTER_CLIENT' => string (6) "Client"
      'DRIVERACCIDENTREGISTER_ACCIDENTDATE' => string (13) "Accident Date"
      'DRIVERACCIDENTREGISTER_ACCIDENTTIME' => string (13) "Accident Time"
      'DRIVERACCIDENTREGISTER_ACCIDENTSTREET' => string (15) "Accident Street"
      'DRIVERACCIDENTREGISTER_ACCIDENTZIP' => string (12) "Accident Zip"
      'DRIVERACCIDENTREGISTER_ACCIDENTSTATE' => string (14) "Accident State"
      'DRIVERACCIDENTREGISTER_ACCIDENTCITY' => string (13) "Accident City"
      'DRIVERACCIDENTREGISTER_NUMBEROFDEATHS' => string (16) "Number of Deaths"
      'DRIVERACCIDENTREGISTER_NUMBEROFNONFATALINJURIES' => string (28) "Number of Non-Fatal Injuries"
      'DRIVERACCIDENTREGISTER_NUMBEROF' => string (9) "Number of"
      'DRIVERACCIDENTREGISTER_DEATHS' => string (6) "Deaths"
      'DRIVERACCIDENTREGISTER_NONFATALINJURIES' => string (18) "Non-Fatal Injuries"
      'DRIVERACCIDENTREGISTER_ACCIDENTCOPYOFREPORT' => string (33) "Copy of State or Insurance Report"
      'DRIVERACCIDENTREGISTER_ACCIDENTHAZMAT' => string (42) "Where hazardous materials or fuel spilled?"
      'DRIVERACCIDENTREGISTER_DATEREPORTED' => string (13) "Date Reported"
      'DRIVERACCIDENTREGISTER_TERMINAL' => string (8) "Terminal"
      'DRIVERACCIDENTREGISTER_TYPE' => string (4) "Type"
      'DRIVERACCIDENTREGISTER_TOW' => string (3) "Tow"
      'DRIVERACCIDENTREGISTER_DOT' => string (3) "DOT"
      'DRIVERACCIDENTREGISTER_ATFAULT' => string (8) "At Fault"
      'DRIVERACCIDENTREGISTER_EMPLOYEEID' => string (11) "Employee ID"
      'DRIVERACCIDENTREGISTER_SS' => string (2) "SS"
      'DRIVERACCIDENTREGISTER_HIREDATE' => string (9) "Hire Date"
      'DRIVERACCIDENTREGISTER_HOURSONSHIFT' => string (16) "# Hours On Shift"
      'DRIVERACCIDENTREGISTER_TRUCKUNIT' => string (24) "Truck Unit # (Not Plate)"
      'DRIVERACCIDENTREGISTER_CATEGORY' => string (8) "Category"
      'DRIVERACCIDENTREGISTER_ROOTCAUSE' => string (10) "Root Cause"
      'DRIVERACCIDENTREGISTER_ROOTCAUSEBREAKDOWN' => string (20) "Root Cause Breakdown"
      'DRIVERACCIDENTREGISTER_ACCIDENTREPORTNUMBER' => string (22) "Accident Report Number"
      'DRIVERACCIDENTREGISTER_PMACLAIM' => string (7) "Claim #"
      'DRIVERACCIDENTREGISTER_SUMMARYINCIDENT' => string (25) "Brief Summary of Incident"
      'DRIVERACCIDENTREGISTER_CORRECTIVEACTION' => string (20) "Corrective Action(s)"
      'DRIVERACCIDENTREGISTER_SCREVIEWDATE' => string (28) "Safety Committee Review Date"
      'DRIVERACCIDENTREGISTER_SCATFAULTFINDING' => string (33) "Safety Committee At Fault Finding"
      'DRIVERACCIDENTREGISTER_SCCORRECTIVEACTION' => string (35) "Safety Committee Corrective Actions"
      'ADD_DRIVERACCIDENTREGISTER' => string (28) "Add Driver Accident Register"
      'ADD_DRIVERACCIDENTREGISTER_MENU' => string (12) "Add Accident"
      'EDIT_DRIVERACCIDENTREGISTER' => string (29) "Edit Driver Accident Register"
      'MANAGE_DRIVERACCIDENTREGISTER' => string (31) "Manage Driver Accident Register"
      'MANAGE_DRIVERACCIDENTREGISTER_MENU' => string (15) "Manage Accident"
      'VIEW_DRIVERACCIDENTREGISTER' => string (29) "View Driver Accident Register"
      'DELETE_DRIVERACCIDENTREGISTER' => string (62) "Are you sure you wish to delete this Driver Accident Registe …"
      Are you sure you wish to delete this Driver Accident Register?
      'INVALID_DRIVERACCIDENTREGISTER' => string (32) "Invalid Driver Accident Register"
      'ADD_DESCRIPTION_DRIVERACCIDENTREGISTER' => string (66) "Please use the form below to create a new Driver Accident Re …"
      Please use the form below to create a new Driver Accident Register
      'EDIT_DESCRIPTION_DRIVERACCIDENTREGISTER' => string (62) "Please use the form below to edit the Driver Accident Regist …"
      Please use the form below to edit the Driver Accident Register
      'MANAGE_DESCRIPTION_DRIVERACCIDENTREGISTER' => string (111) "You can search and locate Driver Accident Register records h …"
      You can search and locate Driver Accident Register records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_DRIVERACCIDENTREGISTER' => string (60) "Showing details of a single Driver Accident Register record."
      'ADD_SUCCESS_DRIVERACCIDENTREGISTER' => string (54) "Driver Accident Register {ROWNAME} added successfully."
      'EDIT_SUCCESS_DRIVERACCIDENTREGISTER' => string (55) "Driver Accident Register {ROWNAME} edited successfully."
      'DELETE_SUCCESS_DRIVERACCIDENTREGISTER' => string (56) "Driver Accident Register {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_DRIVERACCIDENTREGISTER' => string (57) "Driver Accident Register {ROWNAME} verified successfully."
      'DRIVERACCIDENTREGISTER_MODULE_NAME' => string (24) "Driver Accident Register"
      'ELOGSCONFIG_ELOGCYCLE' => string (11) "E-Log Cycle"
      'ELOGSCONFIG_ELOGDAYCYCLESTART' => string (21) "E-Log Day Cycle Start"
      'ELOGSCONFIG_ELOGRESTARTHOURS' => string (19) "E-Log Restart Hours"
      'ELOGSCONFIG_ELOGMAXDRIVINGHOURS' => string (23) "E-Log Max Driving Hours"
      'ELOGSCONFIG_ELOGMAXONDUTY' => string (17) "E-Log Max On Duty"
      'ELOGSCONFIG_ELOGODOMETERTYPE' => string (19) "E-Log Odometer Type"
      'ELOGSCONFIG_ELOGBREAKMINUTES' => string (19) "E-Log Break Minutes"
      'ELOGSCONFIG_DRIVER' => string (6) "Driver"
      'ELOGSENTRY_ELOGTIMEZONE' => string (14) "E-Log Timezone"
      'ELOGSENTRY_ELOGCYCLE' => string (11) "E-Log Cycle"
      'ELOGSENTRY_CLIENT' => string (6) "Client"
      'ELOGSENTRY_DRIVER' => string (6) "Driver"
      'ELOGSENTRY_CODRIVER' => string (9) "Co Driver"
      'ELOGSENTRY_ELOGENTRYDATE' => string (16) "E-Log Entry Date"
      'ELOGSENTRY_ELOGENTRYTIME' => string (16) "E-Log Entry Time"
      'ELOGSENTRY_ELOGENTRYREMARKS' => string (19) "E-Log Entry Remarks"
      'ELOGSENTRY_ELOGENTRYSTATUS' => string (18) "E-Log Entry Status"
      'ELOGSENTRY_TOTALOFFDUTY' => string (14) "Total Off Duty"
      'ELOGSENTRY_TOTALSLEEPERBERTH' => string (20) "Total Sleeper Berth "
      'ELOGSENTRY_TOTALDRIVING' => string (14) "Total Driving "
      'ELOGSENTRY_TOTALONDUTY' => string (13) "Total On Duty"
      'ELOGSENTRY_TOTALMILESDRIVE' => string (18) "Total Miles Drive "
      'ELOGSENTRY_TOTALMILEAGEVEHICLE' => string (21) "Total Mileage Vehicle"
      'ELOGSENTRY_VEHICLELICENSEPLATE' => string (21) "Vehicle License Plate"
      'ELOGSENTRY_VEHICLEUNITNUMBER' => string (19) "Vehicle Unit Number"
      'ELOGSENTRY_TRIPORIGINSTATE' => string (17) "Trip Origin State"
      'ELOGSENTRY_TRIPORIGINCITY' => string (16) "Trip Origin City"
      'ELOGSENTRY_TRIPFINALDESTINATIONSTATE' => string (28) "Trip Final Destination State"
      'ELOGSENTRY_TRIPFINALDESTINATIONCITY' => string (27) "Trip Final Destination City"
      'ELOGSENTRY_BILLOFLADINGMANIFESTNUMBER' => string (31) "Bill of Lading Manifest Number "
      'ELOGSENTRY_SHIPPER' => string (7) "Shipper"
      'ELOGSENTRY_LOADTYPECOMMODITY' => string (19) "Load Type Commodity"
      'ELOGSENTRY_ELOGDRIVERSIGNATUREDATE' => string (28) "E-Log Driver Signature Date "
      'ELOGSENTRY_ELOGDRIVERSIGNATURETIME' => string (28) "E-Log Driver Signature Time "
      'ELOGSENTRY_ELOGDRIVERSIGNATUREIMAGE' => string (28) "E-Log Driver Signature Image"
      'ELOGSPUNCHES_ELOGID' => string (8) "E-Log Id"
      'ELOGSPUNCHES_ELOGPUNCHDATE' => string (16) "E-Log Punch Date"
      'ELOGSPUNCHES_ELOGPUNCHTIME' => string (17) "E-Log Punch Time"
      E-Log  Punch Time
      'ELOGSPUNCHES_DRIVERSTATUS' => string (13) "Driver Status"
      'ELOGSPUNCHES_ELOGPUNCHSTATE' => string (17) "E-Log Punch State"
      'ELOGSPUNCHES_ELOGPUNCHCITY' => string (16) "E-Log Punch City"
      'ELOGSPUNCHES_ELOGPUNCHZIP' => string (15) "E-Log Punch Zip"
      'ELOGSPUNCHES_ELOGPUNCHLONGITUTE' => string (21) "E-Log Punch Longitute"
      'ELOGSPUNCHES_ELOGPUNCHLATITUDE' => string (20) "E-Log Punch Latitude"
      'ELOGSPUNCHREMARKS_ELOGPUNCHID' => string (14) "E-Log Punch Id"
      'ELOGSPUNCHREMARKS_ELOGREMARKDATE' => string (17) "E-Log Remark Date"
      'ELOGSPUNCHREMARKS_ELOGREMARKTIME' => string (17) "E-Log Remark Time"
      'ELOGSPUNCHREMARKS_ELOGREMARKNOTES' => string (18) "E-Log Remark Notes"
      'ADD_ELOGSCONFIG' => string (17) "Add E-Logs Config"
      'EDIT_ELOGSCONFIG' => string (18) "Edit E-Logs Config"
      'MANAGE_ELOGSCONFIG' => string (20) "Manage E-Logs Config"
      'VIEW_ELOGSCONFIG' => string (18) "View E-Logs Config"
      'DELETE_ELOGSCONFIG' => string (51) "Are you sure you wish to delete this E-Logs Config?"
      'INVALID_ELOGSCONFIG' => string (21) "Invalid E-Logs Config"
      'ADD_DESCRIPTION_ELOGSCONFIG' => string (55) "Please use the form below to create a new E-Logs Config"
      'EDIT_DESCRIPTION_ELOGSCONFIG' => string (51) "Please use the form below to edit the E-Logs Config"
      'MANAGE_DESCRIPTION_ELOGSCONFIG' => string (100) "You can search and locate E-Logs Config records here to view …"
      You can search and locate E-Logs Config records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_ELOGSCONFIG' => string (49) "Showing details of a single E-Logs Config record."
      'ADD_SUCCESS_ELOGSCONFIG' => string (43) "E-Logs Config {ROWNAME} added successfully."
      'EDIT_SUCCESS_ELOGSCONFIG' => string (44) "E-Logs Config {ROWNAME} edited successfully."
      'DELETE_SUCCESS_ELOGSCONFIG' => string (45) "E-Logs Config {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_ELOGSCONFIG' => string (46) "E-Logs Config {ROWNAME} verified successfully."
      'ELOGSCONFIG_MODULE_NAME' => string (13) "E-Logs Config"
      'ADD_ELOGSENTRY' => string (16) "Add E-Logs Entry"
      'EDIT_ELOGSENTRY' => string (17) "Edit E-Logs Entry"
      'MANAGE_ELOGSENTRY' => string (19) "Manage E-Logs Entry"
      'VIEW_ELOGSENTRY' => string (17) "View E-Logs Entry"
      'DELETE_ELOGSENTRY' => string (50) "Are you sure you wish to delete this E-Logs Entry?"
      'INVALID_ELOGSENTRY' => string (20) "Invalid E-Logs Entry"
      'ADD_DESCRIPTION_ELOGSENTRY' => string (54) "Please use the form below to create a new E-Logs Entry"
      'EDIT_DESCRIPTION_ELOGSENTRY' => string (50) "Please use the form below to edit the E-Logs Entry"
      'MANAGE_DESCRIPTION_ELOGSENTRY' => string (99) "You can search and locate E-Logs Entry records here to view, …"
      You can search and locate E-Logs Entry records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_ELOGSENTRY' => string (48) "Showing details of a single E-Logs Entry record."
      'ADD_SUCCESS_ELOGSENTRY' => string (42) "E-Logs Entry {ROWNAME} added successfully."
      'EDIT_SUCCESS_ELOGSENTRY' => string (43) "E-Logs Entry {ROWNAME} edited successfully."
      'DELETE_SUCCESS_ELOGSENTRY' => string (44) "E-Logs Entry {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_ELOGSENTRY' => string (45) "E-Logs Entry {ROWNAME} verified successfully."
      'ELOGSENTRY_MODULE_NAME' => string (12) "E-Logs Entry"
      'ADD_ELOGSPUNCHES' => string (18) "Add E-Logs Punches"
      'EDIT_ELOGSPUNCHES' => string (19) "Edit E-Logs Punches"
      'MANAGE_ELOGSPUNCHES' => string (21) "Manage E-Logs Punches"
      'VIEW_ELOGSPUNCHES' => string (19) "View E-Logs Punches"
      'DELETE_ELOGSPUNCHES' => string (52) "Are you sure you wish to delete this E-Logs Punches?"
      'INVALID_ELOGSPUNCHES' => string (22) "Invalid E-Logs Punches"
      'ADD_DESCRIPTION_ELOGSPUNCHES' => string (56) "Please use the form below to create a new E-Logs Punches"
      'EDIT_DESCRIPTION_ELOGSPUNCHES' => string (52) "Please use the form below to edit the E-Logs Punches"
      'MANAGE_DESCRIPTION_ELOGSPUNCHES' => string (101) "You can search and locate E-Logs Punches records here to vie …"
      You can search and locate E-Logs Punches records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_ELOGSPUNCHES' => string (50) "Showing details of a single E-Logs Punches record."
      'ADD_SUCCESS_ELOGSPUNCHES' => string (44) "E-Logs Punches {ROWNAME} added successfully."
      'EDIT_SUCCESS_ELOGSPUNCHES' => string (45) "E-Logs Punches {ROWNAME} edited successfully."
      'DELETE_SUCCESS_ELOGSPUNCHES' => string (46) "E-Logs Punches {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_ELOGSPUNCHES' => string (47) "E-Logs Punches {ROWNAME} verified successfully."
      'ELOGSPUNCHES_MODULE_NAME' => string (14) "E-Logs Punches"
      'ADD_ELOGSPUNCHREMARKS' => string (24) "Add E-Logs Punch Remarks"
      'EDIT_ELOGSPUNCHREMARKS' => string (25) "Edit E-Logs Punch Remarks"
      'MANAGE_ELOGSPUNCHREMARKS' => string (27) "Manage E-Logs Punch Remarks"
      'VIEW_ELOGSPUNCHREMARKS' => string (25) "View E-Logs Punch Remarks"
      'DELETE_ELOGSPUNCHREMARKS' => string (58) "Are you sure you wish to delete this E-Logs Punch Remarks?"
      'INVALID_ELOGSPUNCHREMARKS' => string (28) "Invalid E-Logs Punch Remarks"
      'ADD_DESCRIPTION_ELOGSPUNCHREMARKS' => string (62) "Please use the form below to create a new E-Logs Punch Remar …"
      Please use the form below to create a new E-Logs Punch Remarks
      'EDIT_DESCRIPTION_ELOGSPUNCHREMARKS' => string (58) "Please use the form below to edit the E-Logs Punch Remarks"
      'MANAGE_DESCRIPTION_ELOGSPUNCHREMARKS' => string (107) "You can search and locate E-Logs Punch Remarks records here  …"
      You can search and locate E-Logs Punch Remarks records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_ELOGSPUNCHREMARKS' => string (56) "Showing details of a single E-Logs Punch Remarks record."
      'ADD_SUCCESS_ELOGSPUNCHREMARKS' => string (50) "E-Logs Punch Remarks {ROWNAME} added successfully."
      'EDIT_SUCCESS_ELOGSPUNCHREMARKS' => string (51) "E-Logs Punch Remarks {ROWNAME} edited successfully."
      'DELETE_SUCCESS_ELOGSPUNCHREMARKS' => string (52) "E-Logs Punch Remarks {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_ELOGSPUNCHREMARKS' => string (53) "E-Logs Punch Remarks {ROWNAME} verified successfully."
      'ELOGSPUNCHREMARKS_MODULE_NAME' => string (20) "E-Logs Punch Remarks"
      'ELOGS_MODULE' => string (6) "E-Logs"
      'CLIENT_TIMEZONE' => string (8) "Timezone"
      'DEFECTS_NAME' => string (4) "Name"
      'DEFECTS_DESCRIPTION' => string (11) "Description"
      'DEFECTS_AFFECTSSAFETY' => string (31) "Defect Prevents Safe Operation?"
      'VEHICLEINSPECTION_CATEGORY' => string (8) "Category"
      'VEHICLEINSPECTION_VEHICLE' => string (7) "Vehicle"
      'VEHICLEINSPECTION_INSPECTIONTYPE' => string (15) "Inspection Type"
      'VEHICLEINSPECTION_CURRENTODOMETERREADING' => string (24) "Current Odometer Reading"
      'VEHICLEINSPECTION_DEFECTSPRESENT' => string (15) "Defects Present"
      'VEHICLEINSPECTION_DRIVER' => string (6) "Driver"
      'VEHICLEINSPECTION_DATE' => string (4) "Date"
      'VEHICLEINSPECTION_TIME' => string (4) "Time"
      'VEHICLEINSPECTION_STATE' => string (5) "State"
      'VEHICLEINSPECTION_CITY' => string (4) "City"
      'VEHICLEINSPECTION_DRIVERSIGNATURE' => string (16) "Driver Signature"
      'VEHICLEINSPECTION_MECHANICNAME' => string (13) "Mechanic Name"
      'VEHICLEINSPECTION_MECHANICSIGNATURE' => string (18) "Mechanic Signature"
      'INSPECTIONDEFECTS_VEHICLEINSPECTION' => string (18) "Vehicle Inspection"
      'INSPECTIONDEFECTS_DEFECT' => string (6) "Defect"
      'INSPECTIONDEFECTS_STATUS' => string (6) "Status"
      'INSPECTIONDEFECTS_NOTES' => string (5) "Notes"
      'ADD_DEFECTS' => string (11) "Add Defects"
      'EDIT_DEFECTS' => string (12) "Edit Defects"
      'MANAGE_DEFECTS' => string (14) "Manage Defects"
      'VIEW_DEFECTS' => string (12) "View Defects"
      'DELETE_DEFECTS' => string (45) "Are you sure you wish to delete this Defects?"
      'INVALID_DEFECTS' => string (15) "Invalid Defects"
      'ADD_DESCRIPTION_DEFECTS' => string (49) "Please use the form below to create a new Defects"
      'EDIT_DESCRIPTION_DEFECTS' => string (45) "Please use the form below to edit the Defects"
      'MANAGE_DESCRIPTION_DEFECTS' => string (94) "You can search and locate Defects records here to view, edit …"
      You can search and locate Defects records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_DEFECTS' => string (43) "Showing details of a single Defects record."
      'ADD_SUCCESS_DEFECTS' => string (37) "Defects {ROWNAME} added successfully."
      'EDIT_SUCCESS_DEFECTS' => string (38) "Defects {ROWNAME} edited successfully."
      'DELETE_SUCCESS_DEFECTS' => string (39) "Defects {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_DEFECTS' => string (40) "Defects {ROWNAME} verified successfully."
      'DEFECTS_MODULE_NAME' => string (7) "Defects"
      'ADD_VEHICLEINSPECTION' => string (22) "Add Vehicle Inspection"
      'EDIT_VEHICLEINSPECTION' => string (23) "Edit Vehicle Inspection"
      'MANAGE_VEHICLEINSPECTION' => string (25) "Manage Vehicle Inspection"
      'VIEW_VEHICLEINSPECTION' => string (23) "View Vehicle Inspection"
      'DELETE_VEHICLEINSPECTION' => string (56) "Are you sure you wish to delete this Vehicle Inspection?"
      'INVALID_VEHICLEINSPECTION' => string (26) "Invalid Vehicle Inspection"
      'ADD_DESCRIPTION_VEHICLEINSPECTION' => string (60) "Please use the form below to create a new Vehicle Inspection"
      'EDIT_DESCRIPTION_VEHICLEINSPECTION' => string (56) "Please use the form below to edit the Vehicle Inspection"
      'MANAGE_DESCRIPTION_VEHICLEINSPECTION' => string (105) "You can search and locate Vehicle Inspection records here to …"
      You can search and locate Vehicle Inspection records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_VEHICLEINSPECTION' => string (54) "Showing details of a single Vehicle Inspection record."
      'ADD_SUCCESS_VEHICLEINSPECTION' => string (48) "Vehicle Inspection {ROWNAME} added successfully."
      'EDIT_SUCCESS_VEHICLEINSPECTION' => string (49) "Vehicle Inspection {ROWNAME} edited successfully."
      'DELETE_SUCCESS_VEHICLEINSPECTION' => string (50) "Vehicle Inspection {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_VEHICLEINSPECTION' => string (51) "Vehicle Inspection {ROWNAME} verified successfully."
      'VEHICLEINSPECTION_MODULE_NAME' => string (18) "Vehicle Inspection"
      'ADD_INSPECTIONDEFECTS' => string (22) "Add Inspection Defects"
      'EDIT_INSPECTIONDEFECTS' => string (23) "Edit Inspection Defects"
      'MANAGE_INSPECTIONDEFECTS' => string (25) "Manage Inspection Defects"
      'VIEW_INSPECTIONDEFECTS' => string (23) "View Inspection Defects"
      'DELETE_INSPECTIONDEFECTS' => string (56) "Are you sure you wish to delete this Inspection Defects?"
      'INVALID_INSPECTIONDEFECTS' => string (26) "Invalid Inspection Defects"
      'ADD_DESCRIPTION_INSPECTIONDEFECTS' => string (60) "Please use the form below to create a new Inspection Defects"
      'EDIT_DESCRIPTION_INSPECTIONDEFECTS' => string (56) "Please use the form below to edit the Inspection Defects"
      'MANAGE_DESCRIPTION_INSPECTIONDEFECTS' => string (105) "You can search and locate Inspection Defects records here to …"
      You can search and locate Inspection Defects records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_INSPECTIONDEFECTS' => string (54) "Showing details of a single Inspection Defects record."
      'ADD_SUCCESS_INSPECTIONDEFECTS' => string (48) "Inspection Defects {ROWNAME} added successfully."
      'EDIT_SUCCESS_INSPECTIONDEFECTS' => string (49) "Inspection Defects {ROWNAME} edited successfully."
      'DELETE_SUCCESS_INSPECTIONDEFECTS' => string (50) "Inspection Defects {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_INSPECTIONDEFECTS' => string (51) "Inspection Defects {ROWNAME} verified successfully."
      'INSPECTIONDEFECTS_MODULE_NAME' => string (18) "Inspection Defects"
      'UPLOADED_TEXT' => string (35) "Click here to replace existing file"
      'NOT_UPLOADED_TEXT' => string (45) "No file uploaded, click here to upload a file"
      'MANAGE_ELOGSENTRY_PUNCH' => string (12) "E-Log Events"
      'VIEW_VIEWTITLEELOGSENTRY' => string (13) "Form & Manner"
      'DRIVERS_EMAILADDRESS' => string (13) "Email Address"
      'DRIVERS_CELLPHONE' => string (10) "Cell Phone"
      'DRIVERS_ELOGSTATUS' => string (12) "E-Log Status"
      'DRIVERS_ELOGPIN' => string (9) "E-Log Pin"
      'DRIVERS_ELOGPINLASTSENT' => string (15) "E-Log Last Sent"
      'DRIVERS_ELOGPASS' => string (14) "E-Log Password"
      'DRIVERS_ELOGPASSCONFIRM' => string (22) "E-Log Password Confirm"
      'DRIVERS_ACTIVATEELOGS' => string (24) "Activate eLog & Send PIN"
      'DRIVERS_CREATEELOGPASS' => string (21) "Create E-Log Password"
      'ACTIVATEELOGS_SUCCESS_DRIVERS' => string (47) "Drivers {ROWNAME} activated eLogs successfully."
      'CREATEELOGPASS_SUCCESS_DRIVERS' => string (62) "E-Log Password for the Drivers {ROWNAME} successfully create …"
      E-Log Password for the Drivers {ROWNAME} successfully created.
      'ELOGSPUNCHREMARKOPTIONS_OPTIONNAME' => string (11) "Option Name"
      'ADD_ELOGSPUNCHREMARKOPTIONS' => string (29) "Add E-Log Punch Remark Option"
      'EDIT_ELOGSPUNCHREMARKOPTIONS' => string (30) "Edit E-Log Punch Remark Option"
      'MANAGE_ELOGSPUNCHREMARKOPTIONS' => string (32) "Manage E-Log Punch Remark Option"
      'VIEW_ELOGSPUNCHREMARKOPTIONS' => string (30) "View E-Log Punch Remark Option"
      'DELETE_ELOGSPUNCHREMARKOPTIONS' => string (63) "Are you sure you wish to delete this E-Log Punch Remark Opti …"
      Are you sure you wish to delete this E-Log Punch Remark Option?
      'INVALID_ELOGSPUNCHREMARKOPTIONS' => string (33) "Invalid E-Log Punch Remark Option"
      'ADD_DESCRIPTION_ELOGSPUNCHREMARKOPTIONS' => string (67) "Please use the form below to create a new E-Log Punch Remark …"
      Please use the form below to create a new E-Log Punch Remark Option
      'EDIT_DESCRIPTION_ELOGSPUNCHREMARKOPTIONS' => string (63) "Please use the form below to edit the E-Log Punch Remark Opt …"
      Please use the form below to edit the E-Log Punch Remark Option
      'MANAGE_DESCRIPTION_ELOGSPUNCHREMARKOPTIONS' => string (94) "You can search and locate Defects records here to view, edit …"
      You can search and locate Defects records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_ELOGSPUNCHREMARKOPTIONS' => string (61) "Showing details of a single E-Log Punch Remark Option record …"
      Showing details of a single E-Log Punch Remark Option record.
      'ADD_SUCCESS_ELOGSPUNCHREMARKOPTIONS' => string (55) "E-Log Punch Remark Option {ROWNAME} added successfully."
      'EDIT_SUCCESS_ELOGSPUNCHREMARKOPTIONS' => string (56) "E-Log Punch Remark Option {ROWNAME} edited successfully."
      'DELETE_SUCCESS_ELOGSPUNCHREMARKOPTIONS' => string (57) "E-Log Punch Remark Option {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_ELOGSPUNCHREMARKOPTIONS' => string (58) "E-Log Punch Remark Option {ROWNAME} verified successfully."
      'ELOGSPUNCHREMARKOPTIONS_MODULE_NAME' => string (26) "E-Log Punch Remark Options"
      'ELOGSPUNCHREMARKS_ELOGREMARKNOTESOTHER' => string (24) "E-Log Remark Other Notes"
      'ELOGCONFIG_TITLE' => string (20) "E-Log Configurations"
      'ACCOUNT_SETTINGS' => string (21) "Single Client Profile"
      'API_MANAGEMENT' => string (14) "API Management"
      'CHAT' => string (4) "Chat"
      'ADD_CHAT' => string (39) "<i class="fa fa-share-square"></i> Send"
      'POLLLOGS_DRIVERID' => string (9) "Driver Id"
      'POLLLOGS_ELOGID' => string (7) "ELog Id"
      'POLLLOGS_DATE' => string (4) "Date"
      'POLLLOGRECORDS_POLLLOGID' => string (11) "Poll Log Id"
      'POLLLOGRECORDS_LATITUDE' => string (8) "Latitude"
      'POLLLOGRECORDS_LOGITUDE' => string (8) "Logitude"
      'POLLLOGRECORDS_TIME' => string (4) "Time"
      'POLLLOGRECORDS_CITY' => string (4) "City"
      'POLLLOGRECORDS_STATE' => string (5) "State"
      'POLLLOGRECORDS_ZIP' => string (3) "Zip"
      'ADD_POLLLOGS' => string (13) "Add Poll Logs"
      'EDIT_POLLLOGS' => string (14) "Edit Poll Logs"
      'MANAGE_POLLLOGS' => string (16) "Manage Poll Logs"
      'VIEW_POLLLOGS' => string (14) "View Poll Logs"
      'DELETE_POLLLOGS' => string (47) "Are you sure you wish to delete this Poll Logs?"
      'INVALID_POLLLOGS' => string (17) "Invalid Poll Logs"
      'ADD_DESCRIPTION_POLLLOGS' => string (51) "Please use the form below to create a new Poll Logs"
      'EDIT_DESCRIPTION_POLLLOGS' => string (47) "Please use the form below to edit the Poll Logs"
      'MANAGE_DESCRIPTION_POLLLOGS' => string (96) "You can search and locate Poll Logs records here to view, ed …"
      You can search and locate Poll Logs records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_POLLLOGS' => string (45) "Showing details of a single Poll Logs record."
      'ADD_SUCCESS_POLLLOGS' => string (39) "Poll Logs {ROWNAME} added successfully."
      'EDIT_SUCCESS_POLLLOGS' => string (40) "Poll Logs {ROWNAME} edited successfully."
      'DELETE_SUCCESS_POLLLOGS' => string (41) "Poll Logs {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_POLLLOGS' => string (42) "Poll Logs {ROWNAME} verified successfully."
      'POLLLOGS_MODULE_NAME' => string (9) "Poll Logs"
      'ADD_POLLLOGRECORDS' => string (20) "Add Poll Log Records"
      'EDIT_POLLLOGRECORDS' => string (21) "Edit Poll Log Records"
      'MANAGE_POLLLOGRECORDS' => string (23) "Manage Poll Log Records"
      'VIEW_POLLLOGRECORDS' => string (21) "View Poll Log Records"
      'DELETE_POLLLOGRECORDS' => string (54) "Are you sure you wish to delete this Poll Log Records?"
      'INVALID_POLLLOGRECORDS' => string (24) "Invalid Poll Log Records"
      'ADD_DESCRIPTION_POLLLOGRECORDS' => string (58) "Please use the form below to create a new Poll Log Records"
      'EDIT_DESCRIPTION_POLLLOGRECORDS' => string (54) "Please use the form below to edit the Poll Log Records"
      'MANAGE_DESCRIPTION_POLLLOGRECORDS' => string (103) "You can search and locate Poll Log Records records here to v …"
      You can search and locate Poll Log Records records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_POLLLOGRECORDS' => string (52) "Showing details of a single Poll Log Records record."
      'ADD_SUCCESS_POLLLOGRECORDS' => string (46) "Poll Log Records {ROWNAME} added successfully."
      'EDIT_SUCCESS_POLLLOGRECORDS' => string (47) "Poll Log Records {ROWNAME} edited successfully."
      'DELETE_SUCCESS_POLLLOGRECORDS' => string (48) "Poll Log Records {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_POLLLOGRECORDS' => string (49) "Poll Log Records {ROWNAME} verified successfully."
      'POLLLOGRECORDS_MODULE_NAME' => string (16) "Poll Log Records"
      'GEOLYNX_MODULE_NAME' => string (7) "GEOLynx"
      'GEOLYNXMAP_MODULE_NAME' => string (11) "GEOLynx Map"
      'VIEW_DESCRIPTION_GEOLYNXMAP' => string (74) "GEOLynx Map Plotting the position of the driver tracking usi …"
      GEOLynx Map Plotting the position of the driver tracking using Polling Log
      'MED_CERT_EXP_REPORT' => string (37) "Medical Certificate Expiration Report"
      'MED_CERT_EXP_REPORT_DESCRIPTION' => string (97) "This report shows Drivers with Medical Certificate Expiring  …"
      This report shows Drivers with Medical Certificate Expiring over a date range or default 30 days.
      'DL_EXP_REPORT' => string (32) "Driver License Expiration Report"
      'DL_EXP_REPORT_DESCRIPTION' => string (85) "This report shows Drivers with License Expiring over a date  …"
      This report shows Drivers with License Expiring over a date range or default 30 days.
      'VEHICLEREPAIRWORKORDER_DATETIME' => string (9) "Date Time"
      'VEHICLEREPAIRWORKORDER_VEHICLE' => string (7) "Vehicle"
      'VEHICLEREPAIRWORKORDER_CURRENTMILEAGE' => string (15) "Current Mileage"
      'VEHICLEREPAIRWORKORDER_REPAIRPERSON' => string (13) "Repair Person"
      'VEHICLEREPAIRWORKORDER_FILEDDVIR' => string (10) "Filed DVIR"
      'VEHICLEREPAIRWORKORDER_DVIR' => string (4) "Dvir"
      'VEHICLEREPAIRWORKORDER_NOTES' => string (5) "Notes"
      'VRWODEFECTS_VRWO' => string (4) "Vrwo"
      'VRWODEFECTS_DEFECT' => string (6) "Defect"
      'VRWODEFECTS_STATUS' => string (6) "Status"
      'VRWODEFECTS_NOTES' => string (5) "Notes"
      'ADD_VEHICLEREPAIRWORKORDER' => string (29) "Add Vehicle Repair Work Order"
      'EDIT_VEHICLEREPAIRWORKORDER' => string (30) "Edit Vehicle Repair Work Order"
      'MANAGE_VEHICLEREPAIRWORKORDER' => string (32) "Manage Vehicle Repair Work Order"
      'VIEW_VEHICLEREPAIRWORKORDER' => string (30) "View Vehicle Repair Work Order"
      'DELETE_VEHICLEREPAIRWORKORDER' => string (63) "Are you sure you wish to delete this Vehicle Repair Work Ord …"
      Are you sure you wish to delete this Vehicle Repair Work Order?
      'INVALID_VEHICLEREPAIRWORKORDER' => string (33) "Invalid Vehicle Repair Work Order"
      'ADD_DESCRIPTION_VEHICLEREPAIRWORKORDER' => string (67) "Please use the form below to create a new Vehicle Repair Wor …"
      Please use the form below to create a new Vehicle Repair Work Order
      'EDIT_DESCRIPTION_VEHICLEREPAIRWORKORDER' => string (63) "Please use the form below to edit the Vehicle Repair Work Or …"
      Please use the form below to edit the Vehicle Repair Work Order
      'MANAGE_DESCRIPTION_VEHICLEREPAIRWORKORDER' => string (112) "You can search and locate Vehicle Repair Work Order records  …"
      You can search and locate Vehicle Repair Work Order records here to view, edit, delete or perform other actions.
      'VIEW_DESCRIPTION_VEHICLEREPAIRWORKORDER' => string (61) "Showing details of a single Vehicle Repair Work Order record …"
      Showing details of a single Vehicle Repair Work Order record.
      'ADD_SUCCESS_VEHICLEREPAIRWORKORDER' => string (55) "Vehicle Repair Work Order {ROWNAME} added successfully."
      'EDIT_SUCCESS_VEHICLEREPAIRWORKORDER' => string (56) "Vehicle Repair Work Order {ROWNAME} edited successfully."
      'DELETE_SUCCESS_VEHICLEREPAIRWORKORDER' => string (57) "Vehicle Repair Work Order {ROWNAME} deleted successfully."
      'VERIFY_SUCCESS_VEHICLEREPAIRWORKORDER' => string (58) "Vehicle Repair Work Order {ROWNAME} verified successfully."
      'VEHICLEREPAIRWORKORDER_MODULE_NAME' => string (25) "Vehicle Repair Work Order"
      'DRIVERS_DA_CLEARINGHOUSE_CONSENT_FORM' => string (30) "D&A CLEARINGHOUSE CONSENT FORM"
      'DRIVERS_UPLOADDACLEARINGHOUSECONSENTFORM' => string (30) "D&A CLEARINGHOUSE CONSENT FORM"
      'DRIVERS_DA_CLEARINGHOUSE_PRE_EMP_QUERY' => string (38) "D&A CLEARINGHOUSE PRE-EMPLOYMENT QUERY"
      'DRIVERS_UPLOADDACLEARINGHOUSEPREEMPQUERY' => string (38) "D&A CLEARINGHOUSE PRE-EMPLOYMENT QUERY"
      'DRIVERS_Medical_Registry_Verification' => string (29) "Medical Registry Verification"
      'messagebar' => string (0) ""
      'organizationName' => string (0) ""
      'jscode' => string (0) ""
      'extraMessage' => string (0) ""
      'extraMessageView' => string (0) ""
      'searchPanel' => string (0) ""
      'graphView' => string (0) ""
      'chatWidget' => string (34) "templates/chatWidget.template.html"
      private templateFile -> array (1)
      'index' => string (29) "templates/index.template.html"
      private cacheFile -> array (1)
      'index' => string (36) "6a992d5529f459a44fee58c733255e86.txt"
      private expiry -> array (1)
      'index' => integer 0
      private templatesDir -> string (10) "templates/"
      private cacheDir -> string (5) "cache"
    • public static generateRows($data, $template) -> mixed|null|string
      @param $data
      @param $template
      
      @return mixed|null|string
      
      Defined in /home/dotlynx/public_html/dotlynx/classes/templateProcessor.class.php line 191
      public __construct($tags = array(), $pageSections = array())
      @param array $tags
      @param array $pageSections
      
      @throws Exception
      
      Defined in /home/dotlynx/public_html/dotlynx/classes/templateProcessor.class.php line 53
      public getCompressedHTML() -> string
      @return string
      
      Defined in /home/dotlynx/public_html/dotlynx/classes/templateProcessor.class.php line 324
      public getHTML() -> string
      @return string
      
      Defined in /home/dotlynx/public_html/dotlynx/classes/templateProcessor.class.php line 289
      public sendEncodingHeader()
      Defined in /home/dotlynx/public_html/dotlynx/classes/templateProcessor.class.php line 314
      private getCrunchedHTML($key) -> mixed
      @param $key
      
      @return mixed
      
      Defined in /home/dotlynx/public_html/dotlynx/classes/templateProcessor.class.php line 304
      private isCacheValid($key) -> bool
      @param $key
      
      @return bool
      
      Defined in /home/dotlynx/public_html/dotlynx/classes/templateProcessor.class.php line 103
      private isTextFile($file) -> bool
      @param $file
      
      @return bool
      
      Defined in /home/dotlynx/public_html/dotlynx/classes/templateProcessor.class.php line 225
      private processFile($file) -> string
      @param $file
      
      @return string
      
      Defined in /home/dotlynx/public_html/dotlynx/classes/templateProcessor.class.php line 246
      private processTemplate($tags, $key)
      @param $tags
      @param $key
      
      Defined in /home/dotlynx/public_html/dotlynx/classes/templateProcessor.class.php line 143
      private readCache($key) -> string
      @param $key
      
      @return string
      @throws Exception
      
      Defined in /home/dotlynx/public_html/dotlynx/classes/templateProcessor.class.php line 277
      private recursiveReplace($tags, $key) -> int
      @param $tags
      @param $key
      
      @return int
      
      Defined in /home/dotlynx/public_html/dotlynx/classes/templateProcessor.class.php line 119
      private writeCache($key)
      @param $key
      
      @throws Exception
      
      Defined in /home/dotlynx/public_html/dotlynx/classes/templateProcessor.class.php line 261
    • private $staticTemplatesDir :: string (10) "templates/"